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:
sakal
2017-02-07 07:15:17 -08:00
committed by Commit bot
parent 7de8d64f89
commit ff0e72fd16
23 changed files with 130 additions and 36 deletions

View File

@ -57,6 +57,10 @@ class MockDecodedImageCallback : public DecodedImageCallback {
MOCK_METHOD2(Decoded,
int32_t(VideoFrame& decodedImage, // NOLINT
int64_t decode_time_ms));
MOCK_METHOD3(Decoded,
void(VideoFrame& decodedImage, // NOLINT
rtc::Optional<int32_t> decode_time_ms,
rtc::Optional<uint8_t> qp));
MOCK_METHOD1(ReceivedDecodedReferenceFrame,
int32_t(const uint64_t pictureId));
MOCK_METHOD1(ReceivedDecodedFrame, int32_t(const uint64_t pictureId));