Package tvi.webrtc
Interface VideoDecoder.Callback
- Enclosing interface:
- VideoDecoder
public static interface VideoDecoder.Callback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDecodedFrame
(VideoFrame frame, Integer decodeTimeMs, Integer qp) Call to return a decoded frame.
-
Method Details
-
onDecodedFrame
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
-