Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: webrtc/modules/video_coding/codecs/vp8/screenshare_layers_unittest.cc

Issue 1796413002: Add check_deps rules in DEPS files. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed nit Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/DEPS ('k') | webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698