dumping unknown extradata too

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5759 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-04-21 10:27:29 +00:00
parent 7b924b85ea
commit 57d7c640dc
1 changed files with 8 additions and 0 deletions

View File

@ -68,6 +68,14 @@ void print_wave_header(WAVEFORMATEX *h){
printf("mp3.nFramesPerBlock=%d\n",h2->nFramesPerBlock);
printf("mp3.nCodecDelay=%d\n",h2->nCodecDelay);
}
else if (h->cbSize > 0)
{
int i;
printf("Unknown extra header dump: ");
for (i = 0; i < h->cbSize; i++)
printf("[%x] ", *(h+i));
printf("\n");
}
}