From e9fce261a65dabea2a8d67039c3ae093e0f288c8 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 20 Mar 2009 01:11:08 +0000 Subject: Assign the x-pf-asf payload string to be decoded by rtp_asf.c, and add a SDP line handler that parses the streamID in the SDP so that ASF stream data can be matched to their respective streams in the RTSP demuxer. See "[PATCH] RTSP-MS 12/15: ASF payload support" thread on mailinglist. Originally committed as revision 18061 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtp_asf.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libavformat/rtp_asf.h') diff --git a/libavformat/rtp_asf.h b/libavformat/rtp_asf.h index 08632a1901..289889485a 100644 --- a/libavformat/rtp_asf.h +++ b/libavformat/rtp_asf.h @@ -23,6 +23,7 @@ #define AVFORMAT_RTP_ASF_H #include "avformat.h" +#include "rtpdec.h" /** * Parse a Windows Media Server-specific SDP line @@ -32,4 +33,11 @@ */ void ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p); +/** + * Handlers for the x-asf-pf payloads (the payload ID for RTP/ASF). + * Defined and implemented in rtp_asf.c, registered in rtpdec.c. + */ +extern RTPDynamicProtocolHandler ff_ms_rtp_asf_pfv_handler, + ff_ms_rtp_asf_pfa_handler; + #endif /* AVFORMAT_RTP_ASF_H */ -- cgit v1.2.3