Package com.sinch.android.rtc.video
Interface ProcessedVideoFrameListener
-
- All Implemented Interfaces:
public interface ProcessedVideoFrameListenerCompletion callback passed to LocalVideoFrameListener.onFrame.
Must be called exactly once per frame to signal that processing is complete and the frame is ready to be forwarded to WebRTC.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonFrameProcessed()Signals that frame processing is complete. -
-
Method Detail
-
onFrameProcessed
abstract Unit onFrameProcessed()
Signals that frame processing is complete.
Must be called from the same thread as LocalVideoFrameListener.onFrame. The frame passed here may be the original, a modified version, or an entirely new frame.
-
-
-
-