OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <memory> | 11 #include <memory> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "vpx/vpx_encoder.h" | 15 #include "vpx/vpx_encoder.h" |
16 #include "vpx/vp8cx.h" | 16 #include "vpx/vp8cx.h" |
17 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 17 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
18 #include "webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h" | 18 #include "webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h" |
19 #include "webrtc/modules/video_coding/utility/mock/mock_frame_dropper.h" | 19 #include "webrtc/modules/video_coding/utility/mock/mock_frame_dropper.h" |
20 #include "webrtc/system_wrappers/include/clock.h" | 20 #include "webrtc/system_wrappers/include/clock.h" |
21 #include "webrtc/system_wrappers/include/metrics.h" | 21 #include "webrtc/system_wrappers/include/metrics.h" |
22 #include "webrtc/test/histogram.h" | 22 #include "webrtc/test/histogram.h" |
23 | 23 |
24 using ::testing::_; | 24 using ::testing::_; |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 test::LastHistogramSample("WebRTC.Video.Screenshare.Layer1.Qp")); | 520 test::LastHistogramSample("WebRTC.Video.Screenshare.Layer1.Qp")); |
521 EXPECT_EQ(kDefaultTl0BitrateKbps, | 521 EXPECT_EQ(kDefaultTl0BitrateKbps, |
522 test::LastHistogramSample( | 522 test::LastHistogramSample( |
523 "WebRTC.Video.Screenshare.Layer0.TargetBitrate")); | 523 "WebRTC.Video.Screenshare.Layer0.TargetBitrate")); |
524 EXPECT_EQ(kDefaultTl1BitrateKbps, | 524 EXPECT_EQ(kDefaultTl1BitrateKbps, |
525 test::LastHistogramSample( | 525 test::LastHistogramSample( |
526 "WebRTC.Video.Screenshare.Layer1.TargetBitrate")); | 526 "WebRTC.Video.Screenshare.Layer1.TargetBitrate")); |
527 } | 527 } |
528 | 528 |
529 } // namespace webrtc | 529 } // namespace webrtc |
OLD | NEW |