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

Unified Diff: webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h

Issue 2911193002: Implement timing frames. (Closed)
Patch Set: Fix uninitialized variables memcheck errors Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h
diff --git a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h
index a455259bf2b93c42f3d8bb3b78a1947d6543bce7..f660984dc7776b7d6fb5c9e98cbf57836ffd9248 100644
--- a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h
+++ b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h
@@ -97,6 +97,11 @@ class H264EncoderImpl : public H264Encoder {
bool has_reported_init_;
bool has_reported_error_;
+
+ int64_t last_timing_frame_time_ms_;
+ // Timing frames config.
+ int64_t timing_frames_delay_ms_;
+ size_t min_frame_size_to_force_timing_frame_bytes_;
sprang_webrtc 2017/05/31 11:12:55 These two can be const?
ilnik 2017/05/31 15:17:45 Unfortunately, no. They are initialized in runtime
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698