diff options
author | Miroslav Slugeň <Thunder.m@seznam.cz> | 2011-11-07 12:13:55 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-11-30 17:39:32 +0200 |
commit | 06d7325ab1fcc009f0183be3a0b0504f6d99edfb (patch) | |
tree | f339bba1eba422d112fdf69e2361fea9558c24dc /libavformat/rtpdec_formats.h | |
parent | 258366066479391aa998e3c8e87f70bec559db72 (diff) | |
download | ffmpeg-06d7325ab1fcc009f0183be3a0b0504f6d99edfb.tar.gz |
rtpdec: Add support for G726 audio
This requires using a separate init function, since there
isn't necessarily any fmtp lines for this codec, so
parse_sdp_a_line won't be called. Incorporating it with the
alloc function wouldn't do either, since it is called before
the full rtpmap line is parsed (where the sample rate is
extracted).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec_formats.h')
-rw-r--r-- | libavformat/rtpdec_formats.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/rtpdec_formats.h b/libavformat/rtpdec_formats.h index 708c2996d6..3074565db7 100644 --- a/libavformat/rtpdec_formats.h +++ b/libavformat/rtpdec_formats.h @@ -33,6 +33,10 @@ int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p); extern RTPDynamicProtocolHandler ff_amr_nb_dynamic_handler; extern RTPDynamicProtocolHandler ff_amr_wb_dynamic_handler; +extern RTPDynamicProtocolHandler ff_g726_16_dynamic_handler; +extern RTPDynamicProtocolHandler ff_g726_24_dynamic_handler; +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_h264_dynamic_handler; |