summaryrefslogtreecommitdiffstats
path: root/libmpdemux/aviheader.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
commite27d606714997a74b94842a55c1f8bef3bbc6c75 (patch)
tree533b6a70ed12f1a6e08e95204be0ccc3d80f065c /libmpdemux/aviheader.h
parent3dc7792ae3b3176d115fbc20deeea5f587620860 (diff)
downloadmpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.bz2
mpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.xz
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
for the system, names starting with _ are reserved at file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25635 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/aviheader.h')
-rw-r--r--libmpdemux/aviheader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmpdemux/aviheader.h b/libmpdemux/aviheader.h
index 7a2f96c124..581e1c9b39 100644
--- a/libmpdemux/aviheader.h
+++ b/libmpdemux/aviheader.h
@@ -120,19 +120,19 @@ typedef struct
} AVIINDEXENTRY;
-typedef struct _avisuperindex_entry {
+typedef struct avisuperindex_entry {
uint64_t qwOffset; // absolute file offset
uint32_t dwSize; // size of index chunk at this offset
uint32_t dwDuration; // time span in stream ticks
} avisuperindex_entry;
-typedef struct _avistdindex_entry {
+typedef struct avistdindex_entry {
uint32_t dwOffset; // qwBaseOffset + this is absolute file offset
uint32_t dwSize; // bit 31 is set if this is NOT a keyframe
} avistdindex_entry;
// Standard index
-typedef struct __attribute__((packed)) _avistdindex_chunk {
+typedef struct __attribute__((packed)) avistdindex_chunk {
char fcc[4]; // ix##
uint32_t dwSize; // size of this chunk
uint16_t wLongsPerEntry; // must be sizeof(aIndex[0])/sizeof(DWORD)
@@ -147,7 +147,7 @@ typedef struct __attribute__((packed)) _avistdindex_chunk {
// Base Index Form 'indx'
-typedef struct _avisuperindex_chunk {
+typedef struct avisuperindex_chunk {
char fcc[4];
uint32_t dwSize; // size of this chunk
uint16_t wLongsPerEntry; // size of each entry in aIndex array (must be 4*4 for us)