]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtp.h
Cosmetics: Re-indent after last commit.
[ffmpeg] / libavformat / rtp.h
index 26f7cbb37167d9e1b6b3f669c62138f25e047426..f550ad73d21b6d86d9810857bccdb6bfa4a3f1ab 100644 (file)
@@ -57,7 +57,16 @@ int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type);
  * the encoding name is returned
  */
 const char *ff_rtp_enc_name(int payload_type);
-enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type);
+
+/**
+ * Return the codec id for the given encoding name and codec type.
+ *
+ * @param buf A pointer to the string containing the encoding name
+ * @param codec_type The codec type
+ * @return In case of unknown encoding name, CODEC_ID_NONE is returned;
+ * otherwise, the codec id is returned
+ */
+enum CodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type);
 
 #define RTP_PT_PRIVATE 96
 #define RTP_VERSION 2
@@ -67,4 +76,19 @@ enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type);
 #define RTCP_TX_RATIO_NUM 5
 #define RTCP_TX_RATIO_DEN 1000
 
+/* An arbitrary id value for RTP Xiph streams - only relevant to indicate
+ * the the configuration has changed within a stream (by changing the
+ * ident value sent).
+ */
+#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 */