Commit 61d27c6c authored by michael's avatar michael

better dont read the width/height at all, its random anyway


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4398 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8e57a444
......@@ -1442,8 +1442,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 */
/*st->codec.width =*/ get_be32(pb) >> 16; /* track width */
/*st->codec.height =*/ get_be32(pb) >> 16; /* track height */
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment