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

Side by Side Diff: webrtc/video/audio_receive_stream.cc

Issue 1247293002: Add support for transport wide sequence numbers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase, again Created 5 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
« no previous file with comments | « webrtc/test/frame_generator_capturer.cc ('k') | webrtc/video/call_perf_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 for (const auto& ext : config.rtp.extensions) { 54 for (const auto& ext : config.rtp.extensions) {
55 // One-byte-extension local identifiers are in the range 1-14 inclusive. 55 // One-byte-extension local identifiers are in the range 1-14 inclusive.
56 DCHECK_GE(ext.id, 1); 56 DCHECK_GE(ext.id, 1);
57 DCHECK_LE(ext.id, 14); 57 DCHECK_LE(ext.id, 14);
58 if (ext.name == RtpExtension::kAudioLevel) { 58 if (ext.name == RtpExtension::kAudioLevel) {
59 CHECK(rtp_header_parser_->RegisterRtpHeaderExtension( 59 CHECK(rtp_header_parser_->RegisterRtpHeaderExtension(
60 kRtpExtensionAudioLevel, ext.id)); 60 kRtpExtensionAudioLevel, ext.id));
61 } else if (ext.name == RtpExtension::kAbsSendTime) { 61 } else if (ext.name == RtpExtension::kAbsSendTime) {
62 CHECK(rtp_header_parser_->RegisterRtpHeaderExtension( 62 CHECK(rtp_header_parser_->RegisterRtpHeaderExtension(
63 kRtpExtensionAbsoluteSendTime, ext.id)); 63 kRtpExtensionAbsoluteSendTime, ext.id));
64 } else if (ext.name == RtpExtension::kTransportSequenceNumber) {
65 CHECK(rtp_header_parser_->RegisterRtpHeaderExtension(
66 kRtpExtensionTransportSequenceNumber, ext.id));
64 } else { 67 } else {
65 RTC_NOTREACHED() << "Unsupported RTP extension."; 68 RTC_NOTREACHED() << "Unsupported RTP extension.";
66 } 69 }
67 } 70 }
68 } 71 }
69 72
70 webrtc::AudioReceiveStream::Stats AudioReceiveStream::GetStats() const { 73 webrtc::AudioReceiveStream::Stats AudioReceiveStream::GetStats() const {
71 return webrtc::AudioReceiveStream::Stats(); 74 return webrtc::AudioReceiveStream::Stats();
72 } 75 }
73 76
(...skipping 23 matching lines...) Expand all
97 header.extension.hasAbsoluteSendTime) { 100 header.extension.hasAbsoluteSendTime) {
98 int64_t arrival_time_ms = TickTime::MillisecondTimestamp(); 101 int64_t arrival_time_ms = TickTime::MillisecondTimestamp();
99 size_t payload_size = length - header.headerLength; 102 size_t payload_size = length - header.headerLength;
100 remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_size, 103 remote_bitrate_estimator_->IncomingPacket(arrival_time_ms, payload_size,
101 header, false); 104 header, false);
102 } 105 }
103 return true; 106 return true;
104 } 107 }
105 } // namespace internal 108 } // namespace internal
106 } // namespace webrtc 109 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/test/frame_generator_capturer.cc ('k') | webrtc/video/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698