OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 2000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2011 StatsReports reports; // returned values. | 2011 StatsReports reports; // returned values. |
2012 cricket::VideoReceiverInfo video_receiver_info; | 2012 cricket::VideoReceiverInfo video_receiver_info; |
2013 cricket::VideoMediaInfo stats_read; | 2013 cricket::VideoMediaInfo stats_read; |
2014 | 2014 |
2015 AddIncomingVideoTrackStats(); | 2015 AddIncomingVideoTrackStats(); |
2016 stats.AddStream(stream_); | 2016 stats.AddStream(stream_); |
2017 | 2017 |
2018 // Construct a stats value to read. | 2018 // Construct a stats value to read. |
2019 video_receiver_info.add_ssrc(1234); | 2019 video_receiver_info.add_ssrc(1234); |
2020 video_receiver_info.frames_decoded = 10; | 2020 video_receiver_info.frames_decoded = 10; |
| 2021 video_receiver_info.qp_sum = rtc::Optional<uint64_t>(11); |
2021 stats_read.receivers.push_back(video_receiver_info); | 2022 stats_read.receivers.push_back(video_receiver_info); |
2022 | 2023 |
2023 EXPECT_CALL(session_, video_channel()).WillRepeatedly(Return(&video_channel)); | 2024 EXPECT_CALL(session_, video_channel()).WillRepeatedly(Return(&video_channel)); |
2024 EXPECT_CALL(session_, voice_channel()).WillRepeatedly(ReturnNull()); | 2025 EXPECT_CALL(session_, voice_channel()).WillRepeatedly(ReturnNull()); |
2025 EXPECT_CALL(*media_channel, GetStats(_)) | 2026 EXPECT_CALL(*media_channel, GetStats(_)) |
2026 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); | 2027 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); |
2027 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); | 2028 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); |
2028 stats.GetStats(NULL, &reports); | 2029 stats.GetStats(NULL, &reports); |
2029 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), | 2030 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), |
2030 ExtractSsrcStatsValue(reports, | 2031 ExtractSsrcStatsValue(reports, |
2031 StatsReport::kStatsValueNameFramesDecoded)); | 2032 StatsReport::kStatsValueNameFramesDecoded)); |
| 2033 EXPECT_EQ(rtc::ToString(*video_receiver_info.qp_sum), |
| 2034 ExtractSsrcStatsValue(reports, StatsReport::kStatsValueNameQpSum)); |
2032 } | 2035 } |
2033 | 2036 |
2034 } // namespace webrtc | 2037 } // namespace webrtc |
OLD | NEW |