diff options
author | Martin Storsjö <martin@martin.st> | 2013-01-17 14:34:59 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-20 18:17:17 +0200 |
commit | 2326558d5277ec87ba6d607a01ec6acfc51c694c (patch) | |
tree | 3417a2e59c2d6f4b67e4b959dd03011e7658d9b0 /libavformat/rtpdec_formats.h | |
parent | d5bb8cc2dd91687c87a05f386694e16b2860a7f7 (diff) | |
download | ffmpeg-2326558d5277ec87ba6d607a01ec6acfc51c694c.tar.gz |
rtpdec: Split mpegts parsing to a normal depacketizer
This gets rid of a number of special cases from the common rtpdec
code.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec_formats.h')
-rw-r--r-- | libavformat/rtpdec_formats.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec_formats.h b/libavformat/rtpdec_formats.h index e449ddfac3..6c07791319 100644 --- a/libavformat/rtpdec_formats.h +++ b/libavformat/rtpdec_formats.h @@ -50,6 +50,7 @@ extern RTPDynamicProtocolHandler ff_jpeg_dynamic_handler; extern RTPDynamicProtocolHandler ff_mp4a_latm_dynamic_handler; extern RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler; extern RTPDynamicProtocolHandler ff_mpeg4_generic_dynamic_handler; +extern RTPDynamicProtocolHandler ff_mpegts_dynamic_handler; extern RTPDynamicProtocolHandler ff_ms_rtp_asf_pfa_handler; extern RTPDynamicProtocolHandler ff_ms_rtp_asf_pfv_handler; extern RTPDynamicProtocolHandler ff_qcelp_dynamic_handler; |