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

Side by Side Diff: webrtc/video/vie_encoder_unittest.cc

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « webrtc/video/video_send_stream_tests.cc ('k') | webrtc/video/vie_remb_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 <utility> 11 #include <utility>
12 12
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "webrtc/test/gtest.h"
14 #include "webrtc/base/logging.h" 14 #include "webrtc/base/logging.h"
15 #include "webrtc/test/encoder_settings.h" 15 #include "webrtc/test/encoder_settings.h"
16 #include "webrtc/test/fake_encoder.h" 16 #include "webrtc/test/fake_encoder.h"
17 #include "webrtc/test/frame_generator.h" 17 #include "webrtc/test/frame_generator.h"
18 #include "webrtc/video/send_statistics_proxy.h" 18 #include "webrtc/video/send_statistics_proxy.h"
19 #include "webrtc/video/vie_encoder.h" 19 #include "webrtc/video/vie_encoder.h"
20 20
21 namespace webrtc { 21 namespace webrtc {
22 22
23 class ViEEncoderTest : public ::testing::Test { 23 class ViEEncoderTest : public ::testing::Test {
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 // Capture a frame and wait for it to synchronize with the encoder thread. 294 // Capture a frame and wait for it to synchronize with the encoder thread.
295 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr)); 295 video_source_.IncomingCapturedFrame(CreateFrame(2, nullptr));
296 sink_.WaitForEncodedFrame(2); 296 sink_.WaitForEncodedFrame(2);
297 EXPECT_EQ(2, sink_.number_of_reconfigurations()); 297 EXPECT_EQ(2, sink_.number_of_reconfigurations());
298 EXPECT_EQ(9999, sink_.last_min_transmit_bitrate()); 298 EXPECT_EQ(9999, sink_.last_min_transmit_bitrate());
299 299
300 vie_encoder_->Stop(); 300 vie_encoder_->Stop();
301 } 301 }
302 302
303 } // namespace webrtc 303 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/video/video_send_stream_tests.cc ('k') | webrtc/video/vie_remb_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698