mirror of https://github.com/mpv-player/mpv
dumping unknown extradata too
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5759 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7b924b85ea
commit
57d7c640dc
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue