avformat/img2_alias_pix: fix 2 unused variable warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-04-29 18:47:27 +02:00
parent f694ca7ca7
commit 4506ed336f

View File

@ -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;