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

Side by Side Diff: webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc

Issue 2995953002: Revert of Add a flags field to video timing extension. (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
OLDNEW
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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 363
364 encoded_image_._encodedWidth = frame_buffer->width(); 364 encoded_image_._encodedWidth = frame_buffer->width();
365 encoded_image_._encodedHeight = frame_buffer->height(); 365 encoded_image_._encodedHeight = frame_buffer->height();
366 encoded_image_._timeStamp = input_frame.timestamp(); 366 encoded_image_._timeStamp = input_frame.timestamp();
367 encoded_image_.ntp_time_ms_ = input_frame.ntp_time_ms(); 367 encoded_image_.ntp_time_ms_ = input_frame.ntp_time_ms();
368 encoded_image_.capture_time_ms_ = input_frame.render_time_ms(); 368 encoded_image_.capture_time_ms_ = input_frame.render_time_ms();
369 encoded_image_.rotation_ = input_frame.rotation(); 369 encoded_image_.rotation_ = input_frame.rotation();
370 encoded_image_.content_type_ = (mode_ == kScreensharing) 370 encoded_image_.content_type_ = (mode_ == kScreensharing)
371 ? VideoContentType::SCREENSHARE 371 ? VideoContentType::SCREENSHARE
372 : VideoContentType::UNSPECIFIED; 372 : VideoContentType::UNSPECIFIED;
373 encoded_image_.timing_.flags = TimingFrameFlags::kInvalid; 373 encoded_image_.timing_.is_timing_frame = false;
374 encoded_image_._frameType = ConvertToVideoFrameType(info.eFrameType); 374 encoded_image_._frameType = ConvertToVideoFrameType(info.eFrameType);
375 375
376 // Split encoded image up into fragments. This also updates |encoded_image_|. 376 // Split encoded image up into fragments. This also updates |encoded_image_|.
377 RTPFragmentationHeader frag_header; 377 RTPFragmentationHeader frag_header;
378 RtpFragmentize(&encoded_image_, &encoded_image_buffer_, *frame_buffer, &info, 378 RtpFragmentize(&encoded_image_, &encoded_image_buffer_, *frame_buffer, &info,
379 &frag_header); 379 &frag_header);
380 380
381 // Encoder can skip frames to save bandwidth in which case 381 // Encoder can skip frames to save bandwidth in which case
382 // |encoded_image_._length| == 0. 382 // |encoded_image_._length| == 0.
383 if (encoded_image_._length > 0) { 383 if (encoded_image_._length > 0) {
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 498
499 int32_t H264EncoderImpl::SetPeriodicKeyFrames(bool enable) { 499 int32_t H264EncoderImpl::SetPeriodicKeyFrames(bool enable) {
500 return WEBRTC_VIDEO_CODEC_OK; 500 return WEBRTC_VIDEO_CODEC_OK;
501 } 501 }
502 502
503 VideoEncoder::ScalingSettings H264EncoderImpl::GetScalingSettings() const { 503 VideoEncoder::ScalingSettings H264EncoderImpl::GetScalingSettings() const {
504 return VideoEncoder::ScalingSettings(true); 504 return VideoEncoder::ScalingSettings(true);
505 } 505 }
506 506
507 } // namespace webrtc 507 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc ('k') | webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698