From 7b025193f3a9a1a4ad0951fb26bf8421802bf440 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 18 Apr 2002 18:01:25 +0000 Subject: show extended mp3 info git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5689 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/aviprint.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'libmpdemux/aviprint.c') diff --git a/libmpdemux/aviprint.c b/libmpdemux/aviprint.c index 69f2cfa06d..abd37cd975 100644 --- a/libmpdemux/aviprint.c +++ b/libmpdemux/aviprint.c @@ -52,7 +52,6 @@ void print_strh(AVIStreamHeader *h){ } void print_wave_header(WAVEFORMATEX *h){ - printf("======= WAVE Format =======\n"); printf("Format Tag: %d (0x%X)\n",h->wFormatTag,h->wFormatTag); printf("Channels: %d\n",h->nChannels); @@ -61,6 +60,14 @@ void print_wave_header(WAVEFORMATEX *h){ printf("Block align: %d\n",h->nBlockAlign); printf("bits/sample: %d\n",h->wBitsPerSample); printf("cbSize: %d\n",h->cbSize); + if(h->wFormatTag=0x55 && h->cbSize>=12){ + MPEGLAYER3WAVEFORMAT* h2=h; + printf("mp3.wID=%d\n",h2->wID); + printf("mp3.fdwFlags=0x%X\n",h2->fdwFlags); + printf("mp3.nBlockSize=%d\n",h2->nBlockSize); + printf("mp3.nFramesPerBlock=%d\n",h2->nFramesPerBlock); + printf("mp3.nCodecDelay=%d\n",h2->nCodecDelay); + } } -- cgit v1.2.3