| 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 "testing/gtest/include/gtest/gtest.h" | 14 #include "webrtc/test/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/system_wrappers/include/metrics_default.h" | 22 #include "webrtc/system_wrappers/include/metrics_default.h" |
| 23 | 23 |
| 24 using ::testing::_; | 24 using ::testing::_; |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 metrics::NumEvents("WebRTC.Video.Screenshare.Layer1.Qp", kTl1Qp)); | 545 metrics::NumEvents("WebRTC.Video.Screenshare.Layer1.Qp", kTl1Qp)); |
| 546 EXPECT_EQ(1, | 546 EXPECT_EQ(1, |
| 547 metrics::NumEvents("WebRTC.Video.Screenshare.Layer0.TargetBitrate", | 547 metrics::NumEvents("WebRTC.Video.Screenshare.Layer0.TargetBitrate", |
| 548 kDefaultTl0BitrateKbps)); | 548 kDefaultTl0BitrateKbps)); |
| 549 EXPECT_EQ(1, | 549 EXPECT_EQ(1, |
| 550 metrics::NumEvents("WebRTC.Video.Screenshare.Layer1.TargetBitrate", | 550 metrics::NumEvents("WebRTC.Video.Screenshare.Layer1.TargetBitrate", |
| 551 kDefaultTl1BitrateKbps)); | 551 kDefaultTl1BitrateKbps)); |
| 552 } | 552 } |
| 553 | 553 |
| 554 } // namespace webrtc | 554 } // namespace webrtc |
| OLD | NEW |