Mercurial > mplayer.hg
changeset 17983:f5491f58af9b
Remove verbosity parameter added to print_*_header call in last revision again.
Apart from failing to compile it does not make sense for this tool.
author | diego |
---|---|
date | Mon, 27 Mar 2006 22:51:24 +0000 |
parents | c28298d1cbf7 |
children | 6fb29dd3b335 |
files | TOOLS/asfinfo.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/asfinfo.c Mon Mar 27 21:37:18 2006 +0000 +++ b/TOOLS/asfinfo.c Mon Mar 27 22:51:24 2006 +0000 @@ -105,7 +105,7 @@ return NULL; } -void print_wave_header(WAVEFORMATEX *h,MSGL_INFO){ +void print_wave_header(WAVEFORMATEX *h){ printf("======= WAVE Format =======\n"); @@ -135,7 +135,7 @@ } -void print_video_header(BITMAPINFOHEADER *h,MSGL_INFO){ +void print_video_header(BITMAPINFOHEADER *h){ printf("======= VIDEO Format ======\n"); printf(" biSize %d\n", h->biSize); printf(" biWidth %d\n", h->biWidth); @@ -176,10 +176,10 @@ fread(buffer,streamh.type_size,1,f); switch(*((unsigned int*)&streamh.type)){ case 0xF8699E40: // guid_audio_stream - print_wave_header((WAVEFORMATEX*)buffer,MSGL_INFO); + print_wave_header((WAVEFORMATEX*)buffer); break; case 0xBC19EFC0: // guid_video_stream - print_video_header((BITMAPINFOHEADER*)&buffer[4+4+1+2],MSGL_INFO); + print_video_header((BITMAPINFOHEADER*)&buffer[4+4+1+2]); break; } // stream-specific data: