Commit 24e52709 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/hcom: Tell the compiler about set but not read variables

This avoids 3 warnings
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c80715f1
......@@ -38,7 +38,7 @@ static int hcom_probe(const AVProbeData *p)
static int hcom_read_header(AVFormatContext *s)
{
AVStream *st;
unsigned data_size, rsrc_size, huffcount;
av_unused unsigned data_size, rsrc_size, huffcount;
unsigned compresstype, divisor;
unsigned dict_entries;
int ret;
......
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