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

Side by Side Diff: webrtc/modules/video_processing/test/video_processing_unittest.h

Issue 1508793002: Clang format of video_processing folder. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: pbos review Created 5 years 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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
(...skipping 12 matching lines...) Expand all
23 class VideoProcessingTest : public ::testing::Test { 23 class VideoProcessingTest : public ::testing::Test {
24 protected: 24 protected:
25 VideoProcessingTest(); 25 VideoProcessingTest();
26 virtual void SetUp(); 26 virtual void SetUp();
27 virtual void TearDown(); 27 virtual void TearDown();
28 static void SetUpTestCase() { 28 static void SetUpTestCase() {
29 Trace::CreateTrace(); 29 Trace::CreateTrace();
30 std::string trace_file = webrtc::test::OutputPath() + "VPMTrace.txt"; 30 std::string trace_file = webrtc::test::OutputPath() + "VPMTrace.txt";
31 ASSERT_EQ(0, Trace::SetTraceFile(trace_file.c_str())); 31 ASSERT_EQ(0, Trace::SetTraceFile(trace_file.c_str()));
32 } 32 }
33 static void TearDownTestCase() { 33 static void TearDownTestCase() { Trace::ReturnTrace(); }
34 Trace::ReturnTrace();
35 }
36 VideoProcessing* vp_; 34 VideoProcessing* vp_;
37 FILE* source_file_; 35 FILE* source_file_;
38 VideoFrame video_frame_; 36 VideoFrame video_frame_;
39 const int width_; 37 const int width_;
40 const int half_width_; 38 const int half_width_;
41 const int height_; 39 const int height_;
42 const int size_y_; 40 const int size_y_;
43 const int size_uv_; 41 const int size_uv_;
44 const size_t frame_length_; 42 const size_t frame_length_;
45 }; 43 };
46 44
47 } // namespace webrtc 45 } // namespace webrtc
48 46
49 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_TEST_VIDEO_PROCESSING_UNITTEST_H_ 47 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_TEST_VIDEO_PROCESSING_UNITTEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698