AudioHandlerOnAudioStreamPacket Method |
Version 130.1.90Namespace: CefSharp.HandlerAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax protected virtual void OnAudioStreamPacket(
IWebBrowser chromiumWebBrowser,
IBrowser browser,
IntPtr data,
int noOfFrames,
long pts
)
protected:
virtual void OnAudioStreamPacket(
IWebBrowser^ chromiumWebBrowser,
IBrowser^ browser,
IntPtr data,
int noOfFrames,
long long pts
)
Parameters
- chromiumWebBrowser IWebBrowser
- browser IBrowser
- the browser object
- data IntPtr
- is an array representing the raw PCM data as a floating point type, i.e. 4-byte value(s).
- noOfFrames Int32
- is the number of frames in the PCM packet
- pts Int64
- is the presentation timestamp (in milliseconds since the Unix Epoch)
and represents the time at which the decompressed packet should be presented to the user
See Also