diff options
author | Dmitry Samonenko <shreddingwork@gmail.com> | 2012-09-22 14:39:03 +0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-23 14:20:13 +0200 |
commit | 697ea4fccf093dec5684cae9a90e1651071474d6 (patch) | |
tree | d86102280419608faca592565542e066c57478fd /libavformat/rtpdec.c | |
parent | b024c41e1e915e810d4760254622bcc5c0612c6d (diff) | |
download | ffmpeg-697ea4fccf093dec5684cae9a90e1651071474d6.tar.gz |
Introducing speex RTP demuxing (RFC 5574)
RTPDynamicProtocolHandler for speex is added. Initial support for
speex depacketization from RTP stream comes with it.
Currently, only codec audio rate can be applied based on sdp:
* Narrowband ( 8K)
* Wideband (16K)
* Ultrawideband (32K)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec.c')
-rw-r--r-- | libavformat/rtpdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index e480115a1a..67c273a7c1 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -78,6 +78,7 @@ void av_register_rtp_dynamic_payload_handlers(void) ff_register_dynamic_payload_handler(&ff_vp8_dynamic_handler); ff_register_dynamic_payload_handler(&ff_qcelp_dynamic_handler); ff_register_dynamic_payload_handler(&ff_realmedia_mp3_dynamic_handler); + ff_register_dynamic_payload_handler(&ff_speex_dynamic_handler); ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfv_handler); ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfa_handler); |