OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 } else { | 217 } else { |
218 ReportError(); | 218 ReportError(); |
219 return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; | 219 return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
220 } | 220 } |
221 init_params.iPicWidth = codec_settings_.width; | 221 init_params.iPicWidth = codec_settings_.width; |
222 init_params.iPicHeight = codec_settings_.height; | 222 init_params.iPicHeight = codec_settings_.height; |
223 // |init_params| uses bit/s, |codec_settings_| uses kbit/s. | 223 // |init_params| uses bit/s, |codec_settings_| uses kbit/s. |
224 init_params.iTargetBitrate = codec_settings_.targetBitrate * 1000; | 224 init_params.iTargetBitrate = codec_settings_.targetBitrate * 1000; |
225 init_params.iMaxBitrate = codec_settings_.maxBitrate * 1000; | 225 init_params.iMaxBitrate = codec_settings_.maxBitrate * 1000; |
226 // Rate Control mode | 226 // Rate Control mode |
227 init_params.iRCMode = RC_BITRATE_MODE; | 227 init_params.iRCMode = RC_TIMESTAMP_MODE; |
228 init_params.fMaxFrameRate = static_cast<float>(codec_settings_.maxFramerate); | 228 init_params.fMaxFrameRate = static_cast<float>(codec_settings_.maxFramerate); |
229 | 229 |
230 // The following parameters are extension parameters (they're in SEncParamExt, | 230 // The following parameters are extension parameters (they're in SEncParamExt, |
231 // not in SEncParamBase). | 231 // not in SEncParamBase). |
232 init_params.bEnableFrameSkip = | 232 init_params.bEnableFrameSkip = |
233 codec_settings_.codecSpecific.H264.frameDroppingOn; | 233 codec_settings_.codecSpecific.H264.frameDroppingOn; |
234 // |uiIntraPeriod| - multiple of GOP size | 234 // |uiIntraPeriod| - multiple of GOP size |
235 // |keyFrameInterval| - number of frames | 235 // |keyFrameInterval| - number of frames |
236 init_params.uiIntraPeriod = | 236 init_params.uiIntraPeriod = |
237 codec_settings_.codecSpecific.H264.keyFrameInterval; | 237 codec_settings_.codecSpecific.H264.keyFrameInterval; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 } | 336 } |
337 if (frame.width() != codec_settings_.width || | 337 if (frame.width() != codec_settings_.width || |
338 frame.height() != codec_settings_.height) { | 338 frame.height() != codec_settings_.height) { |
339 LOG(LS_WARNING) << "Encoder initialized for " << codec_settings_.width | 339 LOG(LS_WARNING) << "Encoder initialized for " << codec_settings_.width |
340 << "x" << codec_settings_.height << " but trying to encode " | 340 << "x" << codec_settings_.height << " but trying to encode " |
341 << frame.width() << "x" << frame.height() << " frame."; | 341 << frame.width() << "x" << frame.height() << " frame."; |
342 ReportError(); | 342 ReportError(); |
343 return WEBRTC_VIDEO_CODEC_ERR_SIZE; | 343 return WEBRTC_VIDEO_CODEC_ERR_SIZE; |
344 } | 344 } |
345 | 345 |
346 bool force_key_frame = false; | 346 RTC_DCHECK(frame_types != nullptr); |
347 if (frame_types != nullptr) { | 347 // We only support a single stream. |
348 // We only support a single stream. | 348 RTC_DCHECK_EQ(1u, frame_types->size()); |
349 RTC_DCHECK_EQ(frame_types->size(), static_cast<size_t>(1)); | 349 // Force key frame? |
350 // Skip frame? | 350 if ((*frame_types)[0] == kVideoFrameKey) { |
351 if ((*frame_types)[0] == kEmptyFrame) { | |
352 return WEBRTC_VIDEO_CODEC_OK; | |
353 } | |
354 // Force key frame? | |
355 force_key_frame = (*frame_types)[0] == kVideoFrameKey; | |
356 } | |
357 if (force_key_frame) { | |
358 // API doc says ForceIntraFrame(false) does nothing, but calling this | 351 // API doc says ForceIntraFrame(false) does nothing, but calling this |
359 // function forces a key frame regardless of the |bIDR| argument's value. | 352 // function forces a key frame regardless of the |bIDR| argument's value. |
360 // (If every frame is a key frame we get lag/delays.) | |
361 openh264_encoder_->ForceIntraFrame(true); | 353 openh264_encoder_->ForceIntraFrame(true); |
362 } | 354 } |
363 | 355 |
364 // EncodeFrame input. | 356 // EncodeFrame input. |
365 SSourcePicture picture; | 357 SSourcePicture picture; |
366 memset(&picture, 0, sizeof(SSourcePicture)); | 358 memset(&picture, 0, sizeof(SSourcePicture)); |
367 picture.iPicWidth = frame.width(); | 359 picture.iPicWidth = frame.width(); |
368 picture.iPicHeight = frame.height(); | 360 picture.iPicHeight = frame.height(); |
369 picture.iColorFormat = EVideoFormatType::videoFormatI420; | 361 picture.iColorFormat = EVideoFormatType::videoFormatI420; |
370 picture.uiTimeStamp = frame.ntp_time_ms(); | 362 picture.uiTimeStamp = frame.ntp_time_ms(); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 } | 434 } |
443 | 435 |
444 int32_t H264EncoderImpl::SetPeriodicKeyFrames(bool enable) { | 436 int32_t H264EncoderImpl::SetPeriodicKeyFrames(bool enable) { |
445 return WEBRTC_VIDEO_CODEC_OK; | 437 return WEBRTC_VIDEO_CODEC_OK; |
446 } | 438 } |
447 | 439 |
448 void H264EncoderImpl::OnDroppedFrame() { | 440 void H264EncoderImpl::OnDroppedFrame() { |
449 } | 441 } |
450 | 442 |
451 } // namespace webrtc | 443 } // namespace webrtc |
OLD | NEW |