diff options
author | Alexis Ballier <alexis.ballier@gmail.com> | 2010-02-01 23:10:04 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-02-01 23:10:04 +0000 |
commit | 9125806e349e6b4de23f9218c156f7f510cc2d73 (patch) | |
tree | 32047c1c9caf18d5f1ddb7b63d58eb18ec35ba80 /libavformat/mpegts.h | |
parent | ecbed31c0029ffec61e325a0136efaba1198f97d (diff) | |
download | ffmpeg-9125806e349e6b4de23f9218c156f7f510cc2d73.tar.gz |
Fix warnings about implicit function declaration when compiling rtpdec.c
Patch by Alexis Ballier, alexis D ballier A gmail
Originally committed as revision 21601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.h')
-rw-r--r-- | libavformat/mpegts.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index 688734129f..6be9b73f06 100644 --- a/libavformat/mpegts.h +++ b/libavformat/mpegts.h @@ -56,4 +56,11 @@ #define STREAM_TYPE_AUDIO_AC3 0x81 #define STREAM_TYPE_AUDIO_DTS 0x8a +typedef struct MpegTSContext MpegTSContext; + +MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s); +int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, + const uint8_t *buf, int len); +void ff_mpegts_parse_close(MpegTSContext *ts); + #endif /* AVFORMAT_MPEGTS_H */ |