From 07558ad5824afb524d12f889998f2230318c59ea Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 28 Jul 2015 13:35:47 +0200 Subject: [PATCH] avcodec/libdcadec: exss is used only under ifdef, thus mark it as potentially unused avoids a compiler warning Signed-off-by: Michael Niedermayer --- libavcodec/libdcadec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libdcadec.c b/libavcodec/libdcadec.c index 9422e88949..a0e34f9528 100644 --- a/libavcodec/libdcadec.c +++ b/libavcodec/libdcadec.c @@ -42,7 +42,7 @@ static int dcadec_decode_frame(AVCodecContext *avctx, void *data, { DCADecContext *s = avctx->priv_data; AVFrame *frame = data; - struct dcadec_exss_info *exss; + av_unused struct dcadec_exss_info *exss; int ret, i, k; int **samples, nsamples, channel_mask, sample_rate, bits_per_sample, profile; uint32_t mrk;