Package tvi.webrtc
Interface VideoDecoder.Callback
-
- Enclosing interface:
- VideoDecoder
public static interface VideoDecoder.Callback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onDecodedFrame(VideoFrame frame, java.lang.Integer decodeTimeMs, java.lang.Integer qp)
Call to return a decoded frame.
-
-
-
Method Detail
-
onDecodedFrame
void onDecodedFrame(VideoFrame frame, java.lang.Integer decodeTimeMs, java.lang.Integer qp)
Call to return a decoded frame. Can be called on any thread.- Parameters:
frame
- Decoded framedecodeTimeMs
- Time it took to decode the frame in milliseconds or null if not availableqp
- QP value of the decoded frame or null if not available
-
-