Raw Video Data
Introduction
During real-time communications, you can pre- and post-process video data and modify it for desired playback effects.
The Native SDK uses the IVideoFrameObserver
class to provide raw data functions. You can pre-process the data before sending it to the encoder and modify the captured video frames. You can also post-process the data after sending it to the decoder and modify the received video frames.
This article describes how to use raw video data with the IVideoFrameObserver
class.
Sample project
Refer to the sample project on GitHub to learn how to use raw video data in your project.
Implementation
Before using the raw data functions, ensure that you have implemented the basic real-time communication functions in your project. For details, see Start a Call or Start Live Interactive Streaming.
Follow these steps to implement the raw data functions in your project:
- Before joining the channel, call
registerVideoFrameObserver
to register a video frame observer. - After successful registration, the SDK sends the raw video data via
onCaptureVideoFrame
,onPreEncodeVideoFrame
, oronRenderVideoFrame
. - After acquiring the raw data, you can process the data based on your scenario and send the processed data to the SDK via the callbacks mentioned in step 2.
When you use the SDK v3.0.1 or later, note that the SDK no longer guarantees that callback functions in IVideoFrameObserver
are reported in the same thread. The SDK only guarantees the sequence of these callbacks.
If you are using OpenGL to perform image enhancement on the raw video data, you need to actively switch the OpenGL context in the callback function in IVideoFrameObserver
to adapt to a multi-threaded scenario; otherwise, the image enhancement cannot work.
API call sequence
The following diagram shows how to implement the raw data functions in your project:
Data transfer
The following diagram shows the data transfer with the IVideoFrameObserver
class:
With onCaptureVideoFrame
, onPreEncodeVideoFrame
, and onRenderVideoFrame
, you can:
- Get raw video frames from
VideoFrame
. - Process the raw frames from
VideoFrame
and return to the SDK or your custom renderer.
Sample code
- Call
registerVideoFrameObserver
to register a video frame observer.
-
Once you obtain the raw video data, you can pre-process or post-process it.
Get the raw video data captured by the camera:
Get the raw video data from the remote user: