Mercurial > libavformat.hg
diff rtpenc.c @ 4502:daca5391106a libavformat
Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
a static function
| author | lucabe |
|---|---|
| date | Mon, 16 Feb 2009 09:36:21 +0000 |
| parents | 3c0d674bd232 |
| children | f48c56ac46c2 |
line wrap: on
line diff
--- a/rtpenc.c Mon Feb 16 01:55:28 2009 +0000 +++ b/rtpenc.c Mon Feb 16 09:36:21 2009 +0000 @@ -49,7 +49,7 @@ 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;
