diff options
-rw-r--r-- | libavformat/rtp.c | 2 | ||||
-rw-r--r-- | libavformat/rtp.h | 2 | ||||
-rw-r--r-- | libavformat/rtsp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c index 94fc273128..6b33cee8af 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -74,7 +74,7 @@ static const struct {-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; 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); diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 636adce656..ac8a9e18b9 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -425,7 +425,7 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, 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 */ |