fix unused computed value

Originally committed as revision 5473 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-06-13 22:49:05 +00:00
parent 543eebd568
commit c3daf8d833
1 changed files with 2 additions and 2 deletions

View File

@ -1404,8 +1404,8 @@ static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
url_fskip(pb, 36); /* display matrix */
/* those are fixed-point */
/*st->codec->width =*/ get_be32(pb) >> 16; /* track width */
/*st->codec->height =*/ get_be32(pb) >> 16; /* track height */
get_be32(pb); /* track width */
get_be32(pb); /* track height */
return 0;
}