| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |