Chromium Code Reviews

Side by Side Diff: webrtc/media/engine/webrtcvideoengine2.cc

Issue 1865283002: Use microsecond timestamp in cricket::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Use rtc::Optional. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 1496 matching lines...)
1507 cpu_restricted_counter_(0), 1507 cpu_restricted_counter_(0),
1508 number_of_cpu_adapt_changes_(0), 1508 number_of_cpu_adapt_changes_(0),
1509 source_(nullptr), 1509 source_(nullptr),
1510 external_encoder_factory_(external_encoder_factory), 1510 external_encoder_factory_(external_encoder_factory),
1511 stream_(nullptr), 1511 stream_(nullptr),
1512 parameters_(config, options, max_bitrate_bps, codec_settings), 1512 parameters_(config, options, max_bitrate_bps, codec_settings),
1513 rtp_parameters_(CreateRtpParametersWithOneEncoding()), 1513 rtp_parameters_(CreateRtpParametersWithOneEncoding()),
1514 pending_encoder_reconfiguration_(false), 1514 pending_encoder_reconfiguration_(false),
1515 allocated_encoder_(nullptr, webrtc::kVideoCodecUnknown, false), 1515 allocated_encoder_(nullptr, webrtc::kVideoCodecUnknown, false),
1516 sending_(false), 1516 sending_(false),
1517 first_frame_timestamp_ms_(0),
1518 last_frame_timestamp_ms_(0) { 1517 last_frame_timestamp_ms_(0) {
1519 parameters_.config.rtp.max_packet_size = kVideoMtu; 1518 parameters_.config.rtp.max_packet_size = kVideoMtu;
1520 parameters_.conference_mode = send_params.conference_mode; 1519 parameters_.conference_mode = send_params.conference_mode;
1521 1520
1522 sp.GetPrimarySsrcs(&parameters_.config.rtp.ssrcs); 1521 sp.GetPrimarySsrcs(&parameters_.config.rtp.ssrcs);
1523 sp.GetFidSsrcs(parameters_.config.rtp.ssrcs, 1522 sp.GetFidSsrcs(parameters_.config.rtp.ssrcs,
1524 &parameters_.config.rtp.rtx.ssrcs); 1523 &parameters_.config.rtp.rtx.ssrcs);
1525 parameters_.config.rtp.c_name = sp.cname; 1524 parameters_.config.rtp.c_name = sp.cname;
1526 parameters_.config.rtp.extensions = rtp_extensions; 1525 parameters_.config.rtp.extensions = rtp_extensions;
1527 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size 1526 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size
(...skipping 38 matching lines...)
1566 TRACE_EVENT0("webrtc", "WebRtcVideoSendStream::OnFrame"); 1565 TRACE_EVENT0("webrtc", "WebRtcVideoSendStream::OnFrame");
1567 webrtc::VideoFrame video_frame(frame.GetVideoFrameBuffer(), 0, 0, 1566 webrtc::VideoFrame video_frame(frame.GetVideoFrameBuffer(), 0, 0,
1568 frame.GetVideoRotation()); 1567 frame.GetVideoRotation());
1569 rtc::CritScope cs(&lock_); 1568 rtc::CritScope cs(&lock_);
1570 if (stream_ == NULL) { 1569 if (stream_ == NULL) {
1571 // Frame input before send codecs are configured, dropping frame. 1570 // Frame input before send codecs are configured, dropping frame.
1572 return; 1571 return;
1573 } 1572 }
1574 1573
1575 int64_t frame_delta_ms = frame.GetTimeStamp() / rtc::kNumNanosecsPerMillisec; 1574 int64_t frame_delta_ms = frame.GetTimeStamp() / rtc::kNumNanosecsPerMillisec;
1575
1576 // frame->GetTimeStamp() is essentially a delta, align to webrtc time 1576 // frame->GetTimeStamp() is essentially a delta, align to webrtc time
1577 if (first_frame_timestamp_ms_ == 0) { 1577 if (!first_frame_timestamp_ms_) {
1578 first_frame_timestamp_ms_ = rtc::Time() - frame_delta_ms; 1578 first_frame_timestamp_ms_ =
1579 rtc::Optional<int64_t>(rtc::Time() - frame_delta_ms);
1579 } 1580 }
1580 1581
1581 last_frame_timestamp_ms_ = first_frame_timestamp_ms_ + frame_delta_ms; 1582 last_frame_timestamp_ms_ = *first_frame_timestamp_ms_ + frame_delta_ms;
1583
1582 video_frame.set_render_time_ms(last_frame_timestamp_ms_); 1584 video_frame.set_render_time_ms(last_frame_timestamp_ms_);
1583 // Reconfigure codec if necessary. 1585 // Reconfigure codec if necessary.
1584 SetDimensions(video_frame.width(), video_frame.height()); 1586 SetDimensions(video_frame.width(), video_frame.height());
1585 last_rotation_ = video_frame.rotation(); 1587 last_rotation_ = video_frame.rotation();
1586 1588
1587 // Not sending, abort after reconfiguration. Reconfiguration should still 1589 // Not sending, abort after reconfiguration. Reconfiguration should still
1588 // occur to permit sending this input as quickly as possible once we start 1590 // occur to permit sending this input as quickly as possible once we start
1589 // sending (without having to reconfigure then). 1591 // sending (without having to reconfigure then).
1590 if (!sending_) { 1592 if (!sending_) {
1591 return; 1593 return;
1592 } 1594 }
1593 1595
1594 stream_->Input()->IncomingCapturedFrame(video_frame); 1596 stream_->Input()->IncomingCapturedFrame(video_frame);
1595 } 1597 }
1596 1598
1597 void WebRtcVideoChannel2::WebRtcVideoSendStream::SetSource( 1599 void WebRtcVideoChannel2::WebRtcVideoSendStream::SetSource(
1598 rtc::VideoSourceInterface<cricket::VideoFrame>* source) { 1600 rtc::VideoSourceInterface<cricket::VideoFrame>* source) {
1599 TRACE_EVENT0("webrtc", "WebRtcVideoSendStream::SetSource"); 1601 TRACE_EVENT0("webrtc", "WebRtcVideoSendStream::SetSource");
1600 RTC_DCHECK(thread_checker_.CalledOnValidThread()); 1602 RTC_DCHECK(thread_checker_.CalledOnValidThread());
1601 1603
1602 if (!source && !source_) 1604 if (!source && !source_)
1603 return; 1605 return;
1604 DisconnectSource(); 1606 DisconnectSource();
1605 1607
1606 { 1608 {
1607 rtc::CritScope cs(&lock_); 1609 rtc::CritScope cs(&lock_);
1608 1610
1609 // Reset timestamps to realign new incoming frames to a webrtc timestamp. A 1611 // Reset timestamps to realign new incoming frames to a webrtc timestamp. A
1610 // new capturer may have a different timestamp delta than the previous one. 1612 // new capturer may have a different timestamp delta than the previous one.
1611 first_frame_timestamp_ms_ = 0; 1613 first_frame_timestamp_ms_ = rtc::Optional<int64_t>();
1612 1614
1613 if (source == NULL) { 1615 if (source == NULL) {
1614 if (stream_ != NULL) { 1616 if (stream_ != NULL) {
1615 LOG(LS_VERBOSE) << "Disabling capturer, sending black frame."; 1617 LOG(LS_VERBOSE) << "Disabling capturer, sending black frame.";
1616 webrtc::VideoFrame black_frame; 1618 webrtc::VideoFrame black_frame;
1617 1619
1618 CreateBlackFrame(&black_frame, last_dimensions_.width, 1620 CreateBlackFrame(&black_frame, last_dimensions_.width,
1619 last_dimensions_.height, last_rotation_); 1621 last_dimensions_.height, last_rotation_);
1620 1622
1621 // Force this black frame not to be dropped due to timestamp order 1623 // Force this black frame not to be dropped due to timestamp order
(...skipping 945 matching lines...)
2567 rtx_mapping[video_codecs[i].codec.id] != 2569 rtx_mapping[video_codecs[i].codec.id] !=
2568 fec_settings.red_payload_type) { 2570 fec_settings.red_payload_type) {
2569 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; 2571 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id];
2570 } 2572 }
2571 } 2573 }
2572 2574
2573 return video_codecs; 2575 return video_codecs;
2574 } 2576 }
2575 2577
2576 } // namespace cricket 2578 } // namespace cricket
OLDNEW

Powered by Google App Engine