diff options
author | Martin Storsjö <martin@martin.st> | 2009-04-08 07:16:14 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2009-04-08 07:16:14 +0000 |
commit | 08e696c0b28e58797b4b77310e07a93ab3267369 (patch) | |
tree | 054415f25763b7323aad26488f7a5dbcd66321af /libavformat/rtpenc.h | |
parent | 17ad7b24c890a9816bd3e7b737c44ba7505aea67 (diff) | |
download | ffmpeg-08e696c0b28e58797b4b77310e07a93ab3267369.tar.gz |
Add support for AMR audio in the RTP muxer
patch by Martin Storsjö (martin AT martin DOT st)
Originally committed as revision 18375 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpenc.h')
-rw-r--r-- | libavformat/rtpenc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpenc.h b/libavformat/rtpenc.h index 35c548ffa8..57101601cd 100644 --- a/libavformat/rtpenc.h +++ b/libavformat/rtpenc.h @@ -59,6 +59,7 @@ void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m); void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size); void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size); void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size); +void ff_rtp_send_amr(AVFormatContext *s1, const uint8_t *buff, int size); void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size); #endif /* AVFORMAT_RTPENC_H */ |