Add QP sum stats for received streams.
This is not implemented yet in any of the decoders. BUG=webrtc:6541 Review-Url: https://codereview.webrtc.org/2649133005 Cr-Commit-Position: refs/heads/master@{#16475}
This commit is contained in:
@ -37,11 +37,13 @@ class VCMDecodedFrameCallback : public DecodedImageCallback {
|
||||
void SetUserReceiveCallback(VCMReceiveCallback* receiveCallback);
|
||||
VCMReceiveCallback* UserReceiveCallback();
|
||||
|
||||
virtual int32_t Decoded(VideoFrame& decodedImage); // NOLINT
|
||||
virtual int32_t Decoded(VideoFrame& decodedImage, // NOLINT
|
||||
int64_t decode_time_ms);
|
||||
virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId);
|
||||
virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId);
|
||||
int32_t Decoded(VideoFrame& decodedImage) override;
|
||||
int32_t Decoded(VideoFrame& decodedImage, int64_t decode_time_ms) override;
|
||||
void Decoded(VideoFrame& decodedImage,
|
||||
rtc::Optional<int32_t> decode_time_ms,
|
||||
rtc::Optional<uint8_t> qp) override;
|
||||
int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) override;
|
||||
int32_t ReceivedDecodedFrame(const uint64_t pictureId) override;
|
||||
|
||||
uint64_t LastReceivedPictureID() const;
|
||||
void OnDecoderImplementationName(const char* implementation_name);
|
||||
|
||||
Reference in New Issue
Block a user