Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not

a static function

Originally committed as revision 17364 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Abeni
2009-02-16 09:36:21 +00:00
parent 42402a55b0
commit 0550b58f4e
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ static int rtp_write_header(AVFormatContext *s1)
return -1;
st = s1->streams[0];
payload_type = rtp_get_payload_type(st->codec);
payload_type = ff_rtp_get_payload_type(st->codec);
if (payload_type < 0)
payload_type = RTP_PT_PRIVATE; /* private payload type */
s->payload_type = payload_type;