Mercurial > libavformat.hg
diff mpegts.c @ 5619:072cb3a1d4a7 libavformat
Fix warnings about implicit function declaration when compiling rtpdec.c
Patch by Alexis Ballier, alexis D ballier A gmail
| author | cehoyos |
|---|---|
| date | Mon, 01 Feb 2010 23:10:04 +0000 |
| parents | b0818d132889 |
| children | 0bbfce7dc2dc |
line wrap: on
line diff
--- a/mpegts.c Mon Feb 01 11:39:10 2010 +0000 +++ b/mpegts.c Mon Feb 01 23:10:04 2010 +0000 @@ -1689,7 +1689,7 @@ /**************************************************************/ /* parsing functions - called from other demuxers such as RTP */ -MpegTSContext *mpegts_parse_open(AVFormatContext *s) +MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s) { MpegTSContext *ts; @@ -1705,7 +1705,7 @@ /* return the consumed length if a packet was output, or -1 if no packet is output */ -int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, +int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len) { int len1; @@ -1730,7 +1730,7 @@ return len1 - len; } -void mpegts_parse_close(MpegTSContext *ts) +void ff_mpegts_parse_close(MpegTSContext *ts) { int i;
