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

Side by Side Diff: webrtc/modules/video_processing/main/source/brightness_detection.h

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
(Empty)
1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 /*
12 * brightness_detection.h
13 */
14 #ifndef MODULES_VIDEO_PROCESSING_MAIN_SOURCE_BRIGHTNESS_DETECTION_H
15 #define MODULES_VIDEO_PROCESSING_MAIN_SOURCE_BRIGHTNESS_DETECTION_H
16 #include "webrtc/modules/video_processing/main/interface/video_processing.h"
17 #include "webrtc/typedefs.h"
18
19 namespace webrtc {
20
21 class VPMBrightnessDetection {
22 public:
23 VPMBrightnessDetection();
24 ~VPMBrightnessDetection();
25
26 void Reset();
27 int32_t ProcessFrame(const VideoFrame& frame,
28 const VideoProcessingModule::FrameStats& stats);
29
30 private:
31 uint32_t frame_cnt_bright_;
32 uint32_t frame_cnt_dark_;
33 };
34
35 } // namespace webrtc
36
37 #endif // MODULES_VIDEO_PROCESSING_MAIN_SOURCE_BRIGHTNESS_DETECTION_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698