Mercurial > libavformat.hg
changeset 4519:f4b9967e0131 libavformat
Remame rtp_get_codec_info() to ff_rtp_get_codec_info(), as it is not
a static function
author | lucabe |
---|---|
date | Tue, 17 Feb 2009 08:12:51 +0000 |
parents | 35d76826b641 |
children | c9ef08e6e4a9 |
files | rtp.c rtp.h rtsp.c |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/rtp.c Tue Feb 17 08:09:34 2009 +0000 +++ b/rtp.c Tue Feb 17 08:12:51 2009 +0000 @@ -74,7 +74,7 @@ {-1, "", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1} }; -int rtp_get_codec_info(AVCodecContext *codec, int payload_type) +int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type) { int i = 0;
--- a/rtp.h Tue Feb 17 08:09:34 2009 +0000 +++ b/rtp.h Tue Feb 17 08:12:51 2009 +0000 @@ -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);
--- a/rtsp.c Tue Feb 17 08:09:34 2009 +0000 +++ b/rtsp.c Tue Feb 17 08:12:51 2009 +0000 @@ -425,7 +425,7 @@ st->codec->codec_type = codec_type; if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) { /* if standard payload type, we can find the codec right now */ - rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type); + ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type); } } /* put a default control url */