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 |
11 #include <stdio.h> | 11 #include <stdio.h> |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <memory> | 14 #include <memory> |
15 | 15 |
16 #include "webrtc/api/statscollector.h" | 16 #include "webrtc/pc/statscollector.h" |
17 | 17 |
18 #include "webrtc/api/mediastream.h" | |
19 #include "webrtc/api/mediastreaminterface.h" | 18 #include "webrtc/api/mediastreaminterface.h" |
20 #include "webrtc/api/mediastreamtrack.h" | |
21 #include "webrtc/api/peerconnection.h" | |
22 #include "webrtc/api/peerconnectionfactory.h" | |
23 #include "webrtc/api/test/fakedatachannelprovider.h" | |
24 #include "webrtc/api/test/fakevideotracksource.h" | |
25 #include "webrtc/api/test/mock_peerconnection.h" | |
26 #include "webrtc/api/test/mock_webrtcsession.h" | |
27 #include "webrtc/api/videotrack.h" | |
28 #include "webrtc/base/base64.h" | 19 #include "webrtc/base/base64.h" |
29 #include "webrtc/base/fakesslidentity.h" | 20 #include "webrtc/base/fakesslidentity.h" |
30 #include "webrtc/base/gunit.h" | 21 #include "webrtc/base/gunit.h" |
31 #include "webrtc/base/network.h" | 22 #include "webrtc/base/network.h" |
32 #include "webrtc/base/stringencode.h" | 23 #include "webrtc/base/stringencode.h" |
33 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 24 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
34 #include "webrtc/media/base/fakemediaengine.h" | 25 #include "webrtc/media/base/fakemediaengine.h" |
35 #include "webrtc/media/base/test/mock_mediachannel.h" | 26 #include "webrtc/media/base/test/mock_mediachannel.h" |
36 #include "webrtc/p2p/base/faketransportcontroller.h" | 27 #include "webrtc/p2p/base/faketransportcontroller.h" |
37 #include "webrtc/pc/channelmanager.h" | 28 #include "webrtc/pc/channelmanager.h" |
| 29 #include "webrtc/pc/mediastream.h" |
| 30 #include "webrtc/pc/mediastreamtrack.h" |
| 31 #include "webrtc/pc/peerconnection.h" |
| 32 #include "webrtc/pc/peerconnectionfactory.h" |
| 33 #include "webrtc/pc/test/fakedatachannelprovider.h" |
| 34 #include "webrtc/pc/test/fakevideotracksource.h" |
| 35 #include "webrtc/pc/test/mock_peerconnection.h" |
| 36 #include "webrtc/pc/test/mock_webrtcsession.h" |
| 37 #include "webrtc/pc/videotrack.h" |
38 #include "webrtc/test/gmock.h" | 38 #include "webrtc/test/gmock.h" |
39 #include "webrtc/test/gtest.h" | 39 #include "webrtc/test/gtest.h" |
40 | 40 |
41 using testing::_; | 41 using testing::_; |
42 using testing::DoAll; | 42 using testing::DoAll; |
43 using testing::Field; | 43 using testing::Field; |
44 using testing::Invoke; | 44 using testing::Invoke; |
45 using testing::Return; | 45 using testing::Return; |
46 using testing::ReturnNull; | 46 using testing::ReturnNull; |
47 using testing::ReturnRef; | 47 using testing::ReturnRef; |
(...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2026 EXPECT_CALL(*media_channel, GetStats(_)) | 2026 EXPECT_CALL(*media_channel, GetStats(_)) |
2027 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); | 2027 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); |
2028 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); | 2028 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); |
2029 stats.GetStats(NULL, &reports); | 2029 stats.GetStats(NULL, &reports); |
2030 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), | 2030 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), |
2031 ExtractSsrcStatsValue(reports, | 2031 ExtractSsrcStatsValue(reports, |
2032 StatsReport::kStatsValueNameFramesDecoded)); | 2032 StatsReport::kStatsValueNameFramesDecoded)); |
2033 } | 2033 } |
2034 | 2034 |
2035 } // namespace webrtc | 2035 } // namespace webrtc |
OLD | NEW |