summaryrefslogtreecommitdiff
path: root/libavformat/rtp.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rtp.h')
-rw-r--r--libavformat/rtp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h
index 333ed33d8b..f550ad73d2 100644
--- a/libavformat/rtp.h
+++ b/libavformat/rtp.h
@@ -82,4 +82,13 @@ enum CodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type);
*/
#define RTP_XIPH_IDENT 0xfecdba
+/* RTCP packet types */
+enum RTCPType {
+ RTCP_SR = 200,
+ RTCP_RR, // 201
+ RTCP_SDES, // 202
+ RTCP_BYE, // 203
+ RTCP_APP // 204
+};
+
#endif /* AVFORMAT_RTP_H */