comparison rtp.h @ 6404:37944ce385a0 libavformat

rtp: Replace hardcoded RTCP packet types with defines Patch by Josh Allmann, joshua dot allmann at gmail
author mstorsjo
date Wed, 25 Aug 2010 09:15:31 +0000
parents 3aa7765383b5
children
comparison
equal deleted inserted replaced
6403:515e6aad6a82 6404:37944ce385a0
80 * the the configuration has changed within a stream (by changing the 80 * the the configuration has changed within a stream (by changing the
81 * ident value sent). 81 * ident value sent).
82 */ 82 */
83 #define RTP_XIPH_IDENT 0xfecdba 83 #define RTP_XIPH_IDENT 0xfecdba
84 84
85 /* RTCP packet types */
86 enum RTCPType {
87 RTCP_SR = 200,
88 RTCP_RR, // 201
89 RTCP_SDES, // 202
90 RTCP_BYE, // 203
91 RTCP_APP // 204
92 };
93
85 #endif /* AVFORMAT_RTP_H */ 94 #endif /* AVFORMAT_RTP_H */