Commit 4506ed33 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/img2_alias_pix: fix 2 unused variable warnings

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f694ca7c
......@@ -28,8 +28,8 @@ static int brender_read_probe(AVProbeData *p)
const uint8_t *end = b + p->buf_size;
int width = bytestream_get_be16(&b);
int height = bytestream_get_be16(&b);
int ox = bytestream_get_be16(&b);
int oy = bytestream_get_be16(&b);
av_unused int ox = bytestream_get_be16(&b);
av_unused int oy = bytestream_get_be16(&b);
int bpp = bytestream_get_be16(&b);
int x, y;
......
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