summaryrefslogtreecommitdiffstats
path: root/libmpdemux/aviheader.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 23:10:56 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 23:10:56 +0000
commit965f604636d3a3ee161dbdc818d6b323893bf2a1 (patch)
treec0757827be19e6b05364940401b153c8f87d68bf /libmpdemux/aviheader.h
parentd28c27df8d038c42c5da75946e6053daeb8031d9 (diff)
downloadmpv-965f604636d3a3ee161dbdc818d6b323893bf2a1.tar.bz2
mpv-965f604636d3a3ee161dbdc818d6b323893bf2a1.tar.xz
Add read_avi_header() to aviheader.h; avoids forward declarations.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30623 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/aviheader.h')
-rw-r--r--libmpdemux/aviheader.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libmpdemux/aviheader.h b/libmpdemux/aviheader.h
index 4074f6bb03..6740c249ce 100644
--- a/libmpdemux/aviheader.h
+++ b/libmpdemux/aviheader.h
@@ -24,6 +24,7 @@
#include "config.h" /* get correct definition of HAVE_BIGENDIAN */
#include "libavutil/common.h"
#include "mpbswap.h"
+#include "demuxer.h"
#ifndef mmioFOURCC
#define mmioFOURCC( ch0, ch1, ch2, ch3 ) \
@@ -374,4 +375,6 @@ typedef struct {
#define AVI_IDX_OFFSET(x) ((((uint64_t)(x)->dwFlags&0xffff0000)<<16)+(x)->dwChunkOffset)
+void read_avi_header(demuxer_t *demuxer, int index_mode);
+
#endif /* MPLAYER_AVIHEADER_H */