diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-02 06:11:46 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-03 16:38:32 +0200 |
commit | bb3c50b46d50b8bf4f45d7ae8f24607aaf23acea (patch) | |
tree | 8a178bb76bb9781d1793d19a173f4c91279cb0eb | |
parent | 87a13986bc08627dc847f4475bc91ee7c78618de (diff) | |
download | ffmpeg-bb3c50b46d50b8bf4f45d7ae8f24607aaf23acea.tar.gz |
avcodec/tiff: Suppress unused variable warnings
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/tiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 846d817cdc..fd4116aec4 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -422,7 +422,7 @@ static void av_always_inline horizontal_fill(TiffContext *s, uint8_t shift = is_dng ? 0 : 16 - bpp; GetBitContext gb; - int ret = init_get_bits8(&gb, src, width); + av_unused int ret = init_get_bits8(&gb, src, width); av_assert1(ret >= 0); for (int i = 0; i < s->width; i++) { dst16[i] = get_bits(&gb, bpp) << shift; @@ -457,7 +457,7 @@ static void unpack_gray(TiffContext *s, AVFrame *p, GetBitContext gb; uint16_t *dst = (uint16_t *)(p->data[0] + lnum * p->linesize[0]); - int ret = init_get_bits8(&gb, src, width); + av_unused int ret = init_get_bits8(&gb, src, width); av_assert1(ret >= 0); for (int i = 0; i < s->width; i++) { |