Skip to content
Snippets Groups Projects
Commit c3daf8d8 authored by Baptiste Coudurier's avatar Baptiste Coudurier
Browse files

fix unused computed value

Originally committed as revision 5473 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 543eebd5
No related branches found
No related tags found
No related merge requests found
...@@ -1404,8 +1404,8 @@ static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) ...@@ -1404,8 +1404,8 @@ static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
url_fskip(pb, 36); /* display matrix */ url_fskip(pb, 36); /* display matrix */
/* those are fixed-point */ /* those are fixed-point */
/*st->codec->width =*/ get_be32(pb) >> 16; /* track width */ get_be32(pb); /* track width */
/*st->codec->height =*/ get_be32(pb) >> 16; /* track height */ get_be32(pb); /* track height */
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment