0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

small fixes...

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6909 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-08-05 00:11:44 +00:00
parent 7cafdd1d46
commit 803362ea91

View File

@ -74,8 +74,8 @@ void *video_stream_info(FILE *f, int len)
for (i=0; i<len; i++)
fread(&data[i], 1, 1, f);
strncpy(codec, &data[43], len-43);
printf(" [codec: %s]\n", &codec);
// strncpy(codec, &data[43], len-43);
// printf(" [codec: %s]\n", &codec);
fseek(f,orig_pos,SEEK_SET);
}
@ -307,6 +307,7 @@ void lschunks(FILE *f,int level,unsigned int endpos){
case 0x7A737473: // stsz Sample size table
case 0x746f6e70: // pnot
case 0x54434950: // PICT
case 0x70797466:
break;
default: lschunks(f,level+1,pos+atom_size);
}