diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-29 18:47:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-29 18:47:27 +0200 |
commit | 4506ed336ff74ea0cafbb01edbb44821815a60a4 (patch) | |
tree | 95815d8e7fa6cd10ee4324e2955309fe22a96496 | |
parent | f694ca7ca7a6a7067f612b30e495b7cf4df61a7d (diff) | |
download | ffmpeg-4506ed336ff74ea0cafbb01edbb44821815a60a4.tar.gz |
avformat/img2_alias_pix: fix 2 unused variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/img2_alias_pix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/img2_alias_pix.c b/libavformat/img2_alias_pix.c index d88db216f9..a3d5cfa0c4 100644 --- a/libavformat/img2_alias_pix.c +++ b/libavformat/img2_alias_pix.c @@ -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; |