summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-06-13 22:49:05 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-06-13 22:49:05 +0000
commitc3daf8d833096d3b8ac32c5ab1234771f4de550d (patch)
tree1f36bdc81d5dd0c8a8d0947d1749ee81f8c0f830 /libavformat/mov.c
parent543eebd56884b3b95567a5cceac5d9798c7af0a9 (diff)
fix unused computed value
Originally committed as revision 5473 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index ac21d5a547..e55a6d33a1 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -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;
}