diff options
author | Luca Abeni <lucabe72@email.it> | 2009-02-17 08:09:34 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2009-02-17 08:09:34 +0000 |
commit | e5f483c60455a06f99b2fbc6df402bdf8fc98782 (patch) | |
tree | 7b935bbbfbf4a55b6c41f2f33da4d95e92c98298 /libavformat/rtp.h | |
parent | 3f9867b1503dd3a8a22d71ee7825a4d1540198ed (diff) | |
download | ffmpeg-e5f483c60455a06f99b2fbc6df402bdf8fc98782.tar.gz |
Move to rtp.h the prototypes of all the functions defined in rtp.c
Originally committed as revision 17389 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.h')
-rw-r--r-- | libavformat/rtp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h index 3d8b79acb3..bcc5349456 100644 --- a/libavformat/rtp.h +++ b/libavformat/rtp.h @@ -33,6 +33,10 @@ */ int ff_rtp_get_payload_type(AVCodecContext *codec); +int rtp_get_codec_info(AVCodecContext *codec, int payload_type); +const char *ff_rtp_enc_name(int payload_type); +enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type); + #define RTP_PT_PRIVATE 96 #define RTP_VERSION 2 #define RTP_MAX_SDES 256 /**< maximum text length for SDES */ |