| 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 /* | 11 /* |
| 12 * frame_preprocessor.h | 12 * frame_preprocessor.h |
| 13 */ | 13 */ |
| 14 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_FRAME_PREPROCESSOR_H | 14 #ifndef WEBRTC_MODULES_VIDEO_PROCESSING_FRAME_PREPROCESSOR_H_ |
| 15 #define WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_FRAME_PREPROCESSOR_H | 15 #define WEBRTC_MODULES_VIDEO_PROCESSING_FRAME_PREPROCESSOR_H_ |
| 16 | 16 |
| 17 #include "webrtc/modules/video_processing/main/interface/video_processing.h" | 17 #include "webrtc/modules/video_processing/include/video_processing.h" |
| 18 #include "webrtc/modules/video_processing/main/source/content_analysis.h" | 18 #include "webrtc/modules/video_processing/content_analysis.h" |
| 19 #include "webrtc/modules/video_processing/main/source/spatial_resampler.h" | 19 #include "webrtc/modules/video_processing/spatial_resampler.h" |
| 20 #include "webrtc/modules/video_processing/main/source/video_decimator.h" | 20 #include "webrtc/modules/video_processing/video_decimator.h" |
| 21 #include "webrtc/typedefs.h" | 21 #include "webrtc/typedefs.h" |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 | 24 |
| 25 class VPMFramePreprocessor { | 25 class VPMFramePreprocessor { |
| 26 public: | 26 public: |
| 27 VPMFramePreprocessor(); | 27 VPMFramePreprocessor(); |
| 28 ~VPMFramePreprocessor(); | 28 ~VPMFramePreprocessor(); |
| 29 | 29 |
| 30 void Reset(); | 30 void Reset(); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 VPMSpatialResampler* spatial_resampler_; | 69 VPMSpatialResampler* spatial_resampler_; |
| 70 VPMContentAnalysis* ca_; | 70 VPMContentAnalysis* ca_; |
| 71 VPMVideoDecimator* vd_; | 71 VPMVideoDecimator* vd_; |
| 72 bool enable_ca_; | 72 bool enable_ca_; |
| 73 int frame_cnt_; | 73 int frame_cnt_; |
| 74 | 74 |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace webrtc | 77 } // namespace webrtc |
| 78 | 78 |
| 79 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_MAIN_SOURCE_FRAME_PREPROCESSOR_H | 79 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_FRAME_PREPROCESSOR_H_ |
| OLD | NEW |