diff options
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions.h | 1 | ||||
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions_private.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/third_party/npapi/bindings/npapi_extensions.h b/third_party/npapi/bindings/npapi_extensions.h index 4bfac2c..fca509e 100644 --- a/third_party/npapi/bindings/npapi_extensions.h +++ b/third_party/npapi/bindings/npapi_extensions.h @@ -398,6 +398,7 @@ typedef struct _NPDeviceContextAudioConfig { int32 outputChannelMap; int32 inputChannelMap; int32 sampleFrameCount; + uint32 startThread; uint32 flags; NPAudioCallback callback; void *userData; diff --git a/third_party/npapi/bindings/npapi_extensions_private.h b/third_party/npapi/bindings/npapi_extensions_private.h index ea84024..b333d21 100644 --- a/third_party/npapi/bindings/npapi_extensions_private.h +++ b/third_party/npapi/bindings/npapi_extensions_private.h @@ -10,9 +10,12 @@ // Some reserved GetStateContext/SetStateContext selectors. typedef enum { - NPExtensionsReservedStateSharedMemory = 66536 + NPExtensionsReservedStateSharedMemory = 66536, // Used by the Device2D and Audio devices to return a pointer to the // structure used to implement the shared memory buffer for the device. + NPExtensionsReservedStateSyncChannel = 66537 + // Used by the Audio device to return a pointer to the + // structure used to implement the synchronization channel for the device. } NPExtensionsReservedStates; #endif /* _NP_EXTENSIONS_PRIVATE_H_ */ |