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

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

Issue 1410663004: modules/video_processing: refactor interface->include + more. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 5 years, 1 month 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
(Empty)
1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_TEST_UNIT_TEST_VIDEO_PROCESSING_UNI TTEST_H
12 #define WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_TEST_UNIT_TEST_VIDEO_PROCESSING_UNI TTEST_H
13
14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "webrtc/modules/video_processing/main/interface/video_processing.h"
16 #include "webrtc/system_wrappers/include/trace.h"
17 #include "webrtc/test/testsupport/fileutils.h"
18
19 namespace webrtc {
20
21 class VideoProcessingModuleTest : public ::testing::Test {
22 protected:
23 VideoProcessingModuleTest();
24 virtual void SetUp();
25 virtual void TearDown();
26 static void SetUpTestCase() {
27 Trace::CreateTrace();
28 std::string trace_file = webrtc::test::OutputPath() + "VPMTrace.txt";
29 ASSERT_EQ(0, Trace::SetTraceFile(trace_file.c_str()));
30 }
31 static void TearDownTestCase() {
32 Trace::ReturnTrace();
33 }
34 VideoProcessingModule* vpm_;
35 FILE* source_file_;
36 VideoFrame video_frame_;
37 const int width_;
38 const int half_width_;
39 const int height_;
40 const int size_y_;
41 const int size_uv_;
42 const size_t frame_length_;
43 };
44
45 } // namespace webrtc
46
47 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_TEST_UNIT_TEST_VIDEO_PROCESSING_U NITTEST_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698