| OLD | NEW | 
|---|
| 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  Loading... | 
| 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  Loading... | 
| 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_ | 
| OLD | NEW | 
|---|