OSDN Git Service

Remame rtp_get_codec_info() to ff_rtp_get_codec_info(), as it is not
authorLuca Abeni <lucabe72@email.it>
Tue, 17 Feb 2009 08:12:51 +0000 (08:12 +0000)
committerLuca Abeni <lucabe72@email.it>
Tue, 17 Feb 2009 08:12:51 +0000 (08:12 +0000)
a static function

Originally committed as revision 17390 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtp.c
libavformat/rtp.h
libavformat/rtsp.c

index 94fc273..6b33cee 100644 (file)
@@ -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;
 
index bcc5349..f340f41 100644 (file)
@@ -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);
 
index 636adce..ac8a9e1 100644 (file)
@@ -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 */