| Index: webrtc/modules/video_processing/deflickering.h
|
| diff --git a/webrtc/modules/video_processing/deflickering.h b/webrtc/modules/video_processing/deflickering.h
|
| index e1dfa8f09027cf23ce92b2ef61cb5c9dbca2d79c..3ff2723aba850f91e250f84e1332d32236727791 100644
|
| --- a/webrtc/modules/video_processing/deflickering.h
|
| +++ b/webrtc/modules/video_processing/deflickering.h
|
| @@ -38,13 +38,13 @@ class VPMDeflickering {
|
| enum { kNumQuants = kNumProbs + 2 };
|
| enum { kMaxOnlyLength = 5 };
|
|
|
| - uint32_t mean_buffer_length_;
|
| - uint8_t detection_state_; // 0: No flickering
|
| - // 1: Flickering detected
|
| - // 2: In flickering
|
| - int32_t mean_buffer_[kMeanBufferLength];
|
| - uint32_t timestamp_buffer_[kMeanBufferLength];
|
| - uint32_t frame_rate_;
|
| + uint32_t mean_buffer_length_;
|
| + uint8_t detection_state_; // 0: No flickering
|
| + // 1: Flickering detected
|
| + // 2: In flickering
|
| + int32_t mean_buffer_[kMeanBufferLength];
|
| + uint32_t timestamp_buffer_[kMeanBufferLength];
|
| + uint32_t frame_rate_;
|
| static const uint16_t prob_uw16_[kNumProbs];
|
| static const uint16_t weight_uw16_[kNumQuants - kMaxOnlyLength];
|
| uint8_t quant_hist_uw8_[kFrameHistory_size][kNumQuants];
|
|
|