summaryrefslogtreecommitdiff
path: root/libavformat/dv.h
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2004-10-13 00:03:00 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2004-10-13 00:03:00 +0000
commit664f583665dae8351fed064367ea9bfb37624811 (patch)
treefa2a642d7387ce7ea009e3cf964bc75e32688c1d /libavformat/dv.h
parentb3bfb29980ba16d8b8553d7f52f00fe477b79251 (diff)
* 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.h1
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);