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

Side by Side Diff: webrtc/modules/video_coding/frame_buffer2_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
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 "webrtc/modules/video_coding/frame_buffer2.h" 11 #include "webrtc/modules/video_coding/frame_buffer2.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <cstring> 14 #include <cstring>
15 #include <limits> 15 #include <limits>
16 #include <vector> 16 #include <vector>
17 17
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "webrtc/test/gmock.h"
19 #include "testing/gtest/include/gtest/gtest.h" 19 #include "webrtc/test/gtest.h"
20 #include "webrtc/base/platform_thread.h" 20 #include "webrtc/base/platform_thread.h"
21 #include "webrtc/base/random.h" 21 #include "webrtc/base/random.h"
22 #include "webrtc/modules/video_coding/frame_object.h" 22 #include "webrtc/modules/video_coding/frame_object.h"
23 #include "webrtc/modules/video_coding/jitter_estimator.h" 23 #include "webrtc/modules/video_coding/jitter_estimator.h"
24 #include "webrtc/modules/video_coding/sequence_number_util.h" 24 #include "webrtc/modules/video_coding/sequence_number_util.h"
25 #include "webrtc/modules/video_coding/timing.h" 25 #include "webrtc/modules/video_coding/timing.h"
26 #include "webrtc/system_wrappers/include/clock.h" 26 #include "webrtc/system_wrappers/include/clock.h"
27 27
28 namespace webrtc { 28 namespace webrtc {
29 namespace video_coding { 29 namespace video_coding {
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 EXPECT_EQ(pid, InsertFrame(pid + 1, 1, ts, true, pid)); 398 EXPECT_EQ(pid, InsertFrame(pid + 1, 1, ts, true, pid));
399 EXPECT_EQ(pid, InsertFrame(pid + 2, 0, ts, false, pid + 1)); 399 EXPECT_EQ(pid, InsertFrame(pid + 2, 0, ts, false, pid + 1));
400 EXPECT_EQ(pid, InsertFrame(pid + 2, 1, ts, true, pid + 1)); 400 EXPECT_EQ(pid, InsertFrame(pid + 2, 1, ts, true, pid + 1));
401 EXPECT_EQ(pid, InsertFrame(pid + 3, 0, ts, false, pid + 2)); 401 EXPECT_EQ(pid, InsertFrame(pid + 3, 0, ts, false, pid + 2));
402 EXPECT_EQ(pid + 3, InsertFrame(pid + 1, 0, ts, false, pid)); 402 EXPECT_EQ(pid + 3, InsertFrame(pid + 1, 0, ts, false, pid));
403 EXPECT_EQ(pid + 3, InsertFrame(pid + 3, 1, ts, true, pid + 2)); 403 EXPECT_EQ(pid + 3, InsertFrame(pid + 3, 1, ts, true, pid + 2));
404 } 404 }
405 405
406 } // namespace video_coding 406 } // namespace video_coding
407 } // namespace webrtc 407 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/decoding_state_unittest.cc ('k') | webrtc/modules/video_coding/histogram_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698