IMetadataObserver
The metadata observer.
You can call registerMediaMetadataObserver to register or unregister the IMetadataObserver object.
getMaxMetadataSize
Occurs when the SDK requests the maximum size of the metadata.
virtual int getMaxMetadataSize() { return DEFAULT_METADATA_SIZE_IN_BYTE; }
After successfully complete the registration by calling registerMediaMetadataObserver, the SDK triggers this callback once every video frame is sent. You need to specify the maximum size of the metadata in the return value of this callback.
Returns
The maximum size of the buffer of the metadata that you want to use. The highest value is 1024 bytes. Ensure that you set the return value.
onMetadataReceived
Occurs when the local user receives the metadata.
virtual void onMetadataReceived(const Metadata &metadata) = 0;
Parameters
- metadata
- The metadata received. See Metadata.
onReadyToSendMetadata
Occurs when the SDK is ready to send metadata.
virtual bool onReadyToSendMetadata(Metadata &metadata, VIDEO_SOURCE_TYPE source_type) = 0;
This callback is triggered when the SDK is ready to send metadata.
Attention: Ensure that the size of the metadata does not exceed the value set in the getMaxMetadataSize callback.
Parameters
- source_type
- Video data type. See VIDEO_SOURCE_TYPE.
- metadata
- The metadata that the user wants to send. See Metadata.
Returns
true
: Send the video frame.false
: Do not send the video frame.