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
pull/126/head
Luca Abeni 16 years ago
parent e5f483c604
commit bf6d981806
  1. 2
      libavformat/rtp.c
  2. 2
      libavformat/rtp.h
  3. 2
      libavformat/rtsp.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;

@ -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);

@ -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 */

Loading…
Cancel
Save