From 2beb910d79734ef482ec1655f2ceffd7ef0375fd Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sun, 5 Dec 2010 19:38:55 +0000 Subject: rtpdec: Allow dynamic payload handlers to handle static payload types, too Originally committed as revision 25890 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpdec.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavformat/rtpdec.h') diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 41c18c1efd..390071e91e 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -116,6 +116,9 @@ struct RTPDynamicProtocolHandler_s { const char enc_name[50]; /* XXX: still why 50 ? ;-) */ enum AVMediaType codec_type; enum CodecID codec_id; + int static_payload_id; /* 0 means no payload id is set. 0 is a valid + * payload ID (PCMU), too, but that format doesn't + * require any custom depacketization code. */ // may be null int (*parse_sdp_a_line) (AVFormatContext *s, -- cgit v1.2.3