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

Side by Side Diff: webrtc/modules/video_processing/frame_preprocessor.cc

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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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_processing/main/source/frame_preprocessor.h" 11 #include "webrtc/modules/video_processing/frame_preprocessor.h"
12 12
13 namespace webrtc { 13 namespace webrtc {
14 14
15 VPMFramePreprocessor::VPMFramePreprocessor() 15 VPMFramePreprocessor::VPMFramePreprocessor()
16 : content_metrics_(NULL), 16 : content_metrics_(NULL),
17 resampled_frame_(), 17 resampled_frame_(),
18 enable_ca_(false), 18 enable_ca_(false),
19 frame_cnt_(0) { 19 frame_cnt_(0) {
20 spatial_resampler_ = new VPMSimpleSpatialResampler(); 20 spatial_resampler_ = new VPMSimpleSpatialResampler();
21 ca_ = new VPMContentAnalysis(true); 21 ca_ = new VPMContentAnalysis(true);
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 ++frame_cnt_; 127 ++frame_cnt_;
128 } 128 }
129 return VPM_OK; 129 return VPM_OK;
130 } 130 }
131 131
132 VideoContentMetrics* VPMFramePreprocessor::ContentMetrics() const { 132 VideoContentMetrics* VPMFramePreprocessor::ContentMetrics() const {
133 return content_metrics_; 133 return content_metrics_;
134 } 134 }
135 135
136 } // namespace 136 } // namespace
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/frame_preprocessor.h ('k') | webrtc/modules/video_processing/include/video_processing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698