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

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

Issue 1362303002: Reland "Wire up send-side bandwidth estimation." (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 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,
115 }; 116 };
116 117
117 enum KeyFrameRequestMethod 118 enum KeyFrameRequestMethod
118 { 119 {
119 kKeyFrameReqFirRtp = 1, 120 kKeyFrameReqFirRtp = 1,
120 kKeyFrameReqPliRtcp = 2, 121 kKeyFrameReqPliRtcp = 2,
121 kKeyFrameReqFirRtcp = 3 122 kKeyFrameReqFirRtcp = 3
122 }; 123 };
123 124
124 enum RtpRtcpPacketType 125 enum RtpRtcpPacketType
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 class TransportSequenceNumberAllocator { 422 class TransportSequenceNumberAllocator {
422 public: 423 public:
423 TransportSequenceNumberAllocator() {} 424 TransportSequenceNumberAllocator() {}
424 virtual ~TransportSequenceNumberAllocator() {} 425 virtual ~TransportSequenceNumberAllocator() {}
425 426
426 virtual uint16_t AllocateSequenceNumber() = 0; 427 virtual uint16_t AllocateSequenceNumber() = 0;
427 }; 428 };
428 429
429 } // namespace webrtc 430 } // namespace webrtc
430 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ 431 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698