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

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

Issue 1945763002: Use RC_TIMESTAMP_MODE for OpenH264. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc
diff --git a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc
index 18eccb25a5d4c1950935b54a060b03ce8006250b..a6325a90704dca90b86ced8b94e9d198d9aa90b8 100644
--- a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc
+++ b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc
@@ -224,7 +224,7 @@ int32_t H264EncoderImpl::InitEncode(const VideoCodec* codec_settings,
init_params.iTargetBitrate = codec_settings_.targetBitrate * 1000;
init_params.iMaxBitrate = codec_settings_.maxBitrate * 1000;
// Rate Control mode
- init_params.iRCMode = RC_BITRATE_MODE;
+ init_params.iRCMode = RC_TIMESTAMP_MODE;
init_params.fMaxFrameRate = static_cast<float>(codec_settings_.maxFramerate);
// The following parameters are extension parameters (they're in SEncParamExt,
@@ -343,21 +343,13 @@ int32_t H264EncoderImpl::Encode(
return WEBRTC_VIDEO_CODEC_ERR_SIZE;
}
- bool force_key_frame = false;
- if (frame_types != nullptr) {
- // We only support a single stream.
- RTC_DCHECK_EQ(frame_types->size(), static_cast<size_t>(1));
- // Skip frame?
- if ((*frame_types)[0] == kEmptyFrame) {
- return WEBRTC_VIDEO_CODEC_OK;
- }
- // Force key frame?
- force_key_frame = (*frame_types)[0] == kVideoFrameKey;
- }
- if (force_key_frame) {
+ RTC_DCHECK(frame_types != nullptr);
+ // We only support a single stream.
+ RTC_DCHECK_EQ(1u, frame_types->size());
+ // Force key frame?
+ if ((*frame_types)[0] == kVideoFrameKey) {
// API doc says ForceIntraFrame(false) does nothing, but calling this
// function forces a key frame regardless of the |bIDR| argument's value.
- // (If every frame is a key frame we get lag/delays.)
openh264_encoder_->ForceIntraFrame(true);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698