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

Side by Side Diff: webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h

Issue 1362923002: Revert of Wire up send-side bandwidth estimation. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Manual merge of revert Created 5 years, 3 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 kRtcpTmmbr = 0x0100, 104 kRtcpTmmbr = 0x0100,
105 kRtcpTmmbn = 0x0200, 105 kRtcpTmmbn = 0x0200,
106 kRtcpSrReq = 0x0400, 106 kRtcpSrReq = 0x0400,
107 kRtcpXrVoipMetric = 0x0800, 107 kRtcpXrVoipMetric = 0x0800,
108 kRtcpApp = 0x1000, 108 kRtcpApp = 0x1000,
109 kRtcpSli = 0x4000, 109 kRtcpSli = 0x4000,
110 kRtcpRpsi = 0x8000, 110 kRtcpRpsi = 0x8000,
111 kRtcpRemb = 0x10000, 111 kRtcpRemb = 0x10000,
112 kRtcpTransmissionTimeOffset = 0x20000, 112 kRtcpTransmissionTimeOffset = 0x20000,
113 kRtcpXrReceiverReferenceTime = 0x40000, 113 kRtcpXrReceiverReferenceTime = 0x40000,
114 kRtcpXrDlrrReportBlock = 0x80000, 114 kRtcpXrDlrrReportBlock = 0x80000
115 kRtcpTransportFeedback = 0x100000,
116 }; 115 };
117 116
118 enum KeyFrameRequestMethod 117 enum KeyFrameRequestMethod
119 { 118 {
120 kKeyFrameReqFirRtp = 1, 119 kKeyFrameReqFirRtp = 1,
121 kKeyFrameReqPliRtcp = 2, 120 kKeyFrameReqPliRtcp = 2,
122 kKeyFrameReqFirRtcp = 3 121 kKeyFrameReqFirRtcp = 3
123 }; 122 };
124 123
125 enum RtpRtcpPacketType 124 enum RtpRtcpPacketType
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 class TransportSequenceNumberAllocator { 421 class TransportSequenceNumberAllocator {
423 public: 422 public:
424 TransportSequenceNumberAllocator() {} 423 TransportSequenceNumberAllocator() {}
425 virtual ~TransportSequenceNumberAllocator() {} 424 virtual ~TransportSequenceNumberAllocator() {}
426 425
427 virtual uint16_t AllocateSequenceNumber() = 0; 426 virtual uint16_t AllocateSequenceNumber() = 0;
428 }; 427 };
429 428
430 } // namespace webrtc 429 } // namespace webrtc
431 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ 430 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698