summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_formats.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-07 16:15:26 +0200
committerMartin Storsjö <martin@martin.st>2012-02-14 20:05:31 +0200
commit08bddfcde5ebf47eec6b108e0909c70da6529331 (patch)
tree7c8cf1fde05dda441d2fcecbd799f915ac3c1520 /libavformat/rtpdec_formats.h
parent18d1d5886bb78e4d0e11a2a0193fda765e05805d (diff)
rtpdec: Support H263 in RFC 2190 format
This is different from the "modern" RTP payload formats for H263 as defined by RFC 4629, 2429 and 3555. According to the newer RFCs, this old one is to be considered deprecated and only be used for interoperating with legacy systems. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec_formats.h')
-rw-r--r--libavformat/rtpdec_formats.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec_formats.h b/libavformat/rtpdec_formats.h
index 3074565db7..7f18ca4104 100644
--- a/libavformat/rtpdec_formats.h
+++ b/libavformat/rtpdec_formats.h
@@ -39,6 +39,7 @@ extern RTPDynamicProtocolHandler ff_g726_32_dynamic_handler;
extern RTPDynamicProtocolHandler ff_g726_40_dynamic_handler;
extern RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler;
extern RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler;
+extern RTPDynamicProtocolHandler ff_h263_rfc2190_dynamic_handler;
extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
extern RTPDynamicProtocolHandler ff_mp4a_latm_dynamic_handler;
extern RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler;