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

Side by Side Diff: webrtc/modules/video_processing/spatial_resampler.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/spatial_resampler.h" 11 #include "webrtc/modules/video_processing/spatial_resampler.h"
12 12
13 13
14 namespace webrtc { 14 namespace webrtc {
15 15
16 VPMSimpleSpatialResampler::VPMSimpleSpatialResampler() 16 VPMSimpleSpatialResampler::VPMSimpleSpatialResampler()
17 : resampling_mode_(kFastRescaling), 17 : resampling_mode_(kFastRescaling),
18 target_width_(0), 18 target_width_(0),
19 target_height_(0), 19 target_height_(0),
20 scaler_() {} 20 scaler_() {}
21 21
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 bool VPMSimpleSpatialResampler::ApplyResample(int32_t width, 89 bool VPMSimpleSpatialResampler::ApplyResample(int32_t width,
90 int32_t height) { 90 int32_t height) {
91 if ((width == target_width_ && height == target_height_) || 91 if ((width == target_width_ && height == target_height_) ||
92 resampling_mode_ == kNoRescaling) 92 resampling_mode_ == kNoRescaling)
93 return false; 93 return false;
94 else 94 else
95 return true; 95 return true;
96 } 96 }
97 97
98 } // namespace webrtc 98 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/spatial_resampler.h ('k') | webrtc/modules/video_processing/test/brightness_detection_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698