Mercurial > mplayer.hg
changeset 601:2d3a4339bb5a
warnings killed
author | szabii |
---|---|
date | Mon, 23 Apr 2001 22:51:13 +0000 |
parents | ef932c18cb14 |
children | 1d71e691c059 |
files | asfheader.c aviheader.c |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/asfheader.c Mon Apr 23 22:33:06 2001 +0000 +++ b/asfheader.c Mon Apr 23 22:51:13 2001 +0000 @@ -100,6 +100,9 @@ return 1; } +extern void print_wave_header(WAVEFORMATEX *h); +extern void print_video_header(BITMAPINFOHEADER *h); + int read_asf_header(demuxer_t *demuxer){ unsigned char buffer[512];
--- a/aviheader.c Mon Apr 23 22:33:06 2001 +0000 +++ b/aviheader.c Mon Apr 23 22:51:13 2001 +0000 @@ -19,6 +19,11 @@ static MainAVIHeader avih; +extern void print_avih(MainAVIHeader *h); +extern void print_strh(AVIStreamHeader *h); +extern void print_wave_header(WAVEFORMATEX *h); +extern void print_index(AVIINDEXENTRY *idx,int idx_size); + void read_avi_header(demuxer_t *demuxer,int index_mode){ sh_audio_t *sh_audio=NULL; sh_video_t *sh_video=NULL;