Commit cdb0d7e4 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/brstm: Remove unused variable

Fixes "libavformat/brstm.c:128:35: warning: variable info_size set but not used"
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 944a1aa3
......@@ -125,7 +125,7 @@ static int read_header(AVFormatContext *s)
if (avio_rl32(s->pb) != MKTAG('H','E','A','D'))
return AVERROR_INVALIDDATA;
} else {
uint32_t info_offset = 0, info_size;
uint32_t info_offset = 0;
uint16_t section_count, header_size, i;
header_size = read16(s); // 6
......@@ -142,7 +142,7 @@ static int read_header(AVFormatContext *s)
switch (flag) {
case 0x4000:
info_offset = read32(s);
info_size = read32(s);
/*info_size =*/ read32(s);
break;
case 0x4001:
avio_skip(s->pb, 4); // seek offset
......
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