| 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 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H | 11 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H |
| 12 #define WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H | 12 #define WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H |
| 13 | 13 |
| 14 #include "webrtc/typedefs.h" | 14 #include "webrtc/typedefs.h" |
| 15 | 15 |
| 16 #include "webrtc/modules/interface/module_common_types.h" | 16 #include "webrtc/modules/include/module_common_types.h" |
| 17 #include "webrtc/modules/video_processing/main/interface/video_processing_define
s.h" | 17 #include "webrtc/modules/video_processing/main/interface/video_processing_define
s.h" |
| 18 | 18 |
| 19 #include "webrtc/common_video/libyuv/include/scaler.h" | 19 #include "webrtc/common_video/libyuv/include/scaler.h" |
| 20 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 20 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 class VPMSpatialResampler { | 24 class VPMSpatialResampler { |
| 25 public: | 25 public: |
| 26 virtual ~VPMSpatialResampler() {}; | 26 virtual ~VPMSpatialResampler() {}; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 52 | 52 |
| 53 VideoFrameResampling resampling_mode_; | 53 VideoFrameResampling resampling_mode_; |
| 54 int32_t target_width_; | 54 int32_t target_width_; |
| 55 int32_t target_height_; | 55 int32_t target_height_; |
| 56 Scaler scaler_; | 56 Scaler scaler_; |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace webrtc | 59 } // namespace webrtc |
| 60 | 60 |
| 61 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H | 61 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_SPATIAL_RESAMPLER_H |
| OLD | NEW |