diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-03-27 22:51:24 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-03-27 22:51:24 +0000 |
commit | 8283bdde1b555b34fc5778643021ff4e6731bc1e (patch) | |
tree | 9f1b7b9124c53d5fa833b5e9816defbb44766e15 | |
parent | 9c2deb145234a6fc8e70a88fd71c559d74b9df81 (diff) |
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.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17984 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | TOOLS/asfinfo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/asfinfo.c b/TOOLS/asfinfo.c index 56e5e0111b..ab29aa865f 100644 --- a/TOOLS/asfinfo.c +++ b/TOOLS/asfinfo.c @@ -105,7 +105,7 @@ char* chunk_type(unsigned char* guid){ 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_wave_header(WAVEFORMATEX *h,MSGL_INFO){ } -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 @@ while(fread(&objh,sizeof(objh),1,f)>0){ 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: |