OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 |
(...skipping 26 matching lines...) Expand all Loading... |
37 uint32_t frame_rate) override; | 37 uint32_t frame_rate) override; |
38 void SetTargetFramerate(int frame_rate) override; | 38 void SetTargetFramerate(int frame_rate) override; |
39 uint32_t GetDecimatedFrameRate() override; | 39 uint32_t GetDecimatedFrameRate() override; |
40 uint32_t GetDecimatedWidth() const override; | 40 uint32_t GetDecimatedWidth() const override; |
41 uint32_t GetDecimatedHeight() const override; | 41 uint32_t GetDecimatedHeight() const override; |
42 void EnableDenosing(bool enable) override; | 42 void EnableDenosing(bool enable) override; |
43 const VideoFrame* PreprocessFrame(const VideoFrame& frame) override; | 43 const VideoFrame* PreprocessFrame(const VideoFrame& frame) override; |
44 VideoContentMetrics* GetContentMetrics() const override; | 44 VideoContentMetrics* GetContentMetrics() const override; |
45 | 45 |
46 private: | 46 private: |
47 mutable rtc::CriticalSection mutex_; | 47 rtc::CriticalSection mutex_; |
48 VPMDeflickering deflickering_ GUARDED_BY(mutex_); | 48 VPMDeflickering deflickering_ GUARDED_BY(mutex_); |
49 VPMBrightnessDetection brightness_detection_; | 49 VPMBrightnessDetection brightness_detection_; |
50 VPMFramePreprocessor frame_pre_processor_; | 50 VPMFramePreprocessor frame_pre_processor_; |
51 }; | 51 }; |
52 | 52 |
53 } // namespace webrtc | 53 } // namespace webrtc |
54 | 54 |
55 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_PROCESSING_IMPL_H_ | 55 #endif // WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_PROCESSING_IMPL_H_ |
OLD | NEW |