diff options
author | Martin Storsjö <martin@martin.st> | 2009-04-07 06:41:55 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2009-04-07 06:41:55 +0000 |
commit | 9edfaf3c6c726600559ad9df07f3d3331e157f6e (patch) | |
tree | 71ab1a78d73856c6bd84381136b779c965f38485 /libavformat/rtpenc.h | |
parent | 215037887d1043f6cf1c82b26bfe8db1a594af02 (diff) | |
download | ffmpeg-9edfaf3c6c726600559ad9df07f3d3331e157f6e.tar.gz |
Add support for H.263 video in the RTP muxer
patch by Martin Storsjö (martin AT martin DOT st)
Originally committed as revision 18347 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 3cec82c9f9..35c548ffa8 100644 --- a/libavformat/rtpenc.h +++ b/libavformat/rtpenc.h @@ -57,6 +57,7 @@ typedef struct RTPMuxContext RTPMuxContext; 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_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size); |