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

Side by Side Diff: webrtc/modules/video_processing/video_processing_impl.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
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
11 #ifndef WEBRTC_MODULE_VIDEO_PROCESSING_IMPL_H 11 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_PROCESSING_IMPL_H_
12 #define WEBRTC_MODULE_VIDEO_PROCESSING_IMPL_H 12 #define WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_PROCESSING_IMPL_H_
13 13
14 #include "webrtc/base/criticalsection.h" 14 #include "webrtc/base/criticalsection.h"
15 #include "webrtc/modules/video_processing/main/interface/video_processing.h" 15 #include "webrtc/modules/video_processing/include/video_processing.h"
16 #include "webrtc/modules/video_processing/main/source/brighten.h" 16 #include "webrtc/modules/video_processing/brighten.h"
17 #include "webrtc/modules/video_processing/main/source/brightness_detection.h" 17 #include "webrtc/modules/video_processing/brightness_detection.h"
18 #include "webrtc/modules/video_processing/main/source/deflickering.h" 18 #include "webrtc/modules/video_processing/deflickering.h"
19 #include "webrtc/modules/video_processing/main/source/frame_preprocessor.h" 19 #include "webrtc/modules/video_processing/frame_preprocessor.h"
20 20
21 namespace webrtc { 21 namespace webrtc {
22 class CriticalSectionWrapper; 22 class CriticalSectionWrapper;
23 23
24 class VideoProcessingModuleImpl : public VideoProcessingModule { 24 class VideoProcessingModuleImpl : public VideoProcessingModule {
25 public: 25 public:
26 VideoProcessingModuleImpl(); 26 VideoProcessingModuleImpl();
27 ~VideoProcessingModuleImpl() override; 27 ~VideoProcessingModuleImpl() override;
28 28
29 void Reset() override; 29 void Reset() override;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 private: 66 private:
67 mutable rtc::CriticalSection mutex_; 67 mutable rtc::CriticalSection mutex_;
68 VPMDeflickering deflickering_ GUARDED_BY(mutex_); 68 VPMDeflickering deflickering_ GUARDED_BY(mutex_);
69 VPMBrightnessDetection brightness_detection_; 69 VPMBrightnessDetection brightness_detection_;
70 VPMFramePreprocessor frame_pre_processor_; 70 VPMFramePreprocessor frame_pre_processor_;
71 }; 71 };
72 72
73 } // namespace 73 } // namespace
74 74
75 #endif 75 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_PROCESSING_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/video_processing.gypi ('k') | webrtc/modules/video_processing/video_processing_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698