diff rtp.h @ 294:6091b76cfc2a libavformat

added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
author bellard
date Wed, 29 Oct 2003 14:25:27 +0000
parents 05318cf2e886
children 820863425158
line wrap: on
line diff
--- a/rtp.h	Wed Oct 29 14:20:56 2003 +0000
+++ b/rtp.h	Wed Oct 29 14:25:27 2003 +0000
@@ -19,14 +19,35 @@
 #ifndef RTP_H
 #define RTP_H
 
+enum RTPPayloadType {
+    RTP_PT_ULAW = 0,
+    RTP_PT_GSM = 3,
+    RTP_PT_G723 = 4,
+    RTP_PT_ALAW = 8,
+    RTP_PT_S16BE_STEREO = 10,
+    RTP_PT_S16BE_MONO = 11,
+    RTP_PT_MPEGAUDIO = 14,
+    RTP_PT_JPEG = 26,
+    RTP_PT_H261 = 31,
+    RTP_PT_MPEGVIDEO = 32,
+    RTP_PT_MPEG2TS = 33,
+    RTP_PT_H263 = 34, /* old H263 encapsulation */
+    RTP_PT_PRIVATE = 96,
+};
+
 #define RTP_MIN_PACKET_LENGTH 12
 #define RTP_MAX_PACKET_LENGTH 1500 /* XXX: suppress this define */
 
 int rtp_init(void);
 int rtp_get_codec_info(AVCodecContext *codec, int payload_type);
 int rtp_get_payload_type(AVCodecContext *codec);
-int rtp_parse_packet(AVFormatContext *s1, AVPacket *pkt, 
-                     const unsigned char *buf, int len);
+
+typedef struct RTPDemuxContext RTPDemuxContext;
+
+RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type);
+int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, 
+                     const uint8_t *buf, int len);
+void rtp_parse_close(RTPDemuxContext *s);
 
 extern AVOutputFormat rtp_mux;
 extern AVInputFormat rtp_demux;