sd_ass: initialize structs for external tracks properly
[mplayer.git] / libmpdemux / aviprint.h
blob86123b77258c421d30610bafb1f76697c368c169
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_AVIPRINT_H
20 #define MPLAYER_AVIPRINT_H
22 #include "ms_hdr.h"
23 #include "aviheader.h"
25 void print_avih_flags(MainAVIHeader *h, int verbose_level);
26 void print_avih(MainAVIHeader *h, int verbose_level);
27 void print_strh(AVIStreamHeader *h, int verbose_level);
28 void print_wave_header(WAVEFORMATEX *h, int verbose_level);
29 void print_video_header(BITMAPINFOHEADER *h, int verbose_level);
30 void print_vprp(VideoPropHeader *vprp, int verbose_level);
31 void print_index(AVIINDEXENTRY *idx, int idx_size, int verbose_level);
32 void print_avistdindex_chunk(avistdindex_chunk *h, int verbose_level);
33 void print_avisuperindex_chunk(avisuperindex_chunk *h, int verbose_level);
35 #endif /* MPLAYER_AVIPRINT_H */