diff options
author | ThomasVolkert <thomas@homer-conferencing.com> | 2014-08-23 21:25:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-24 03:53:30 +0200 |
commit | 50a4d5cfc6749932347ee38c25b5040aea4b13a0 (patch) | |
tree | 756eeced890ba58c8c5a84532ea40aa2f033b488 /libavformat/rtpenc.h | |
parent | ab1e4312887d8e560d027803871b55b883910714 (diff) | |
download | ffmpeg-50a4d5cfc6749932347ee38c25b5040aea4b13a0.tar.gz |
Add support for H.261 RTP payload format (RFC 4587)
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 913d05a73e..48b6b02d4c 100644 --- a/libavformat/rtpenc.h +++ b/libavformat/rtpenc.h @@ -81,6 +81,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_h261(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_h263_rfc2190(AVFormatContext *s1, const uint8_t *buf1, int size, const uint8_t *mb_info, int mb_info_size); |