Mercurial > libavformat.hg
changeset 800:e979dcad0d2f libavformat
better dont read the width/height at all, its random anyway
author | michael |
---|---|
date | Mon, 27 Jun 2005 07:09:48 +0000 |
parents | c69cd990c32f |
children | bca2334ff177 |
files | mov.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Mon Jun 27 00:55:29 2005 +0000 +++ b/mov.c Mon Jun 27 07:09:48 2005 +0000 @@ -1442,8 +1442,8 @@ 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; }