diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2004-10-13 00:03:00 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2004-10-13 00:03:00 +0000 |
commit | 664f583665dae8351fed064367ea9bfb37624811 (patch) | |
tree | fa2a642d7387ce7ea009e3cf964bc75e32688c1d /libavformat/dv.h | |
parent | b3bfb29980ba16d8b8553d7f52f00fe477b79251 (diff) | |
download | ffmpeg-664f583665dae8351fed064367ea9bfb37624811.tar.gz |
* static allocation for audio packets. This will make it a little bit
faster and easier to follow.
* misc. fixes for problems with seeking
Originally committed as revision 3590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.h')
-rw-r--r-- | libavformat/dv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/dv.h b/libavformat/dv.h index 03239deafe..ff1e53ff10 100644 --- a/libavformat/dv.h +++ b/libavformat/dv.h @@ -27,6 +27,7 @@ typedef struct DVDemuxContext DVDemuxContext; DVDemuxContext* dv_init_demux(AVFormatContext* s); int dv_get_packet(DVDemuxContext*, AVPacket *); int dv_produce_packet(DVDemuxContext*, AVPacket*, uint8_t*, int); +void dv_flush_audio_packets(DVDemuxContext*); typedef struct DVMuxContext DVMuxContext; DVMuxContext* dv_init_mux(AVFormatContext* s); |