Commit 8d756c0d authored by Michael Niedermayer's avatar Michael Niedermayer

fix "warning: variable ‘cflags’ set but not used"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 66792717
...@@ -602,7 +602,7 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom) ...@@ -602,7 +602,7 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
label_mask = 0; label_mask = 0;
for (i = 0; i < num_descr; i++) { for (i = 0; i < num_descr; i++) {
uint32_t label, cflags; uint32_t av_unused label, cflags;
label = avio_rb32(pb); // mChannelLabel label = avio_rb32(pb); // mChannelLabel
cflags = avio_rb32(pb); // mChannelFlags cflags = avio_rb32(pb); // mChannelFlags
avio_rl32(pb); // mCoordinates[0] avio_rl32(pb); // mCoordinates[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