diff options
author | Luca Abeni <lucabe72@email.it> | 2009-02-17 08:12:51 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2009-02-17 08:12:51 +0000 |
commit | bf6d9818063e3a5c85e4bdce14310c6f9cc3f4de (patch) | |
tree | d6fe6b2b4532e33a2bccbbce827bd932878e8a6d /libavformat/rtp.h | |
parent | e5f483c60455a06f99b2fbc6df402bdf8fc98782 (diff) | |
download | ffmpeg-bf6d9818063e3a5c85e4bdce14310c6f9cc3f4de.tar.gz |
Remame rtp_get_codec_info() to ff_rtp_get_codec_info(), as it is not
a static function
Originally committed as revision 17390 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.h')
-rw-r--r-- | libavformat/rtp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h index bcc5349456..f340f413c0 100644 --- a/libavformat/rtp.h +++ b/libavformat/rtp.h @@ -33,7 +33,7 @@ */ int ff_rtp_get_payload_type(AVCodecContext *codec); -int rtp_get_codec_info(AVCodecContext *codec, int payload_type); +int ff_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); |