Browse code

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

Luca Abeni authored on 2009/02/17 17:12:51
Showing 3 changed files
... ...
@@ -74,7 +74,7 @@ static const struct
74 74
   {-1, "",           CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}
75 75
 };
76 76
 
77
-int rtp_get_codec_info(AVCodecContext *codec, int payload_type)
77
+int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
78 78
 {
79 79
     int i = 0;
80 80
 
... ...
@@ -33,7 +33,7 @@
33 33
  */
34 34
 int ff_rtp_get_payload_type(AVCodecContext *codec);
35 35
 
36
-int rtp_get_codec_info(AVCodecContext *codec, int payload_type);
36
+int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type);
37 37
 const char *ff_rtp_enc_name(int payload_type);
38 38
 enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type);
39 39
 
... ...
@@ -425,7 +425,7 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
425 425
             st->codec->codec_type = codec_type;
426 426
             if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
427 427
                 /* if standard payload type, we can find the codec right now */
428
-                rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
428
+                ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
429 429
             }
430 430
         }
431 431
         /* put a default control url */