Raw Video Data
Introduction
During real-time communications, you can pre- and post-process the video data and modify it for desired playback effects.
The Native SDK uses the IVideoFrameObserver
class to provide raw video 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.
Sample project
Agora provides the following open-source sample projects on GitHub that implement the raw video data function:
- iOS: RawMediaData
- macOS: RawMediaData
You can download them to try out this function and view the source code.
Implementation
Follow these steps to implement the raw video data function in your project:
- Before joining the channel, call
registerVideoFrameObserver
to register the video frame observer, and implement theIVideoFrameObserver
class. - After registering the observer, the SDK returns the raw video data in the
onCaptureVideoFrame
,onPreEncodeVideoFrame
, oronRenderVideoFrame
callbacks for each video frame. - Process the raw video data, and then send the processed data back to the SDK through the callbacks mentioned in step 2.
The Agora SDK provides only C++ methods and callbacks for implementing the raw video data function. Therefore, to implement the preceding steps, you need to call C++ APIs on iOS or macOS and pay attention to the following:
.mm
file..mm
file:
#import <AgoraRtcKit/IAgoraMediaEngine.h> #import <AgoraRtcKit/IAgoraRtcEngine.h>
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 function in your project:
Sample code
In addition to the API call sequence diagram, you can refer to the following code samples to implement the raw video data function in your project.
-
Initialize
AgoraRtcEngineKit
, and enable the video module. -
Register the video frame observer.
In the
.mm
file, call the C++ APIs to implementregisterVideoRawDataObserver
. -
Join a channel.
-
Get the raw video data, and process the data.
In the
.mm
file, call the C++ APIs to implement the callbacks that get the raw data. -
Unregister the video frame observer.
Call the C++ APIs in the
.mm
file to implementderegisterVideoRawDataObserver
.
API reference
getNativeHandle
registerVideoFrameObserver
onCaptureVideoFrame
onRenderVideoFrame
onPreEncodeVideoFrame
Considerations
- The raw video data function is implemented by the C++ APIs of the SDK, and you need to mix the Objective-C and C++ in a
.mm
file. See AgoraMediaDataPlugin.mm for reference. - Ensure that you call
getNativeHandle
to get the C++ handle each time before callingregisterVideoFrameObserver
. - The raw video data function is resource intensive and may affect performance.
See also
Refer to Raw Audio Data if you want to implement the raw audio data function in your project.