diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-28 13:35:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-28 13:35:47 +0200 |
commit | 07558ad5824afb524d12f889998f2230318c59ea (patch) | |
tree | ca002fe73b2565e90f49f65272e2d87c8f315234 /libavcodec/libdcadec.c | |
parent | c3fdf536f6c07ca229dcc74aebcbdf0764618406 (diff) | |
download | ffmpeg-07558ad5824afb524d12f889998f2230318c59ea.tar.gz |
avcodec/libdcadec: exss is used only under ifdef, thus mark it as potentially unused
avoids a compiler warning
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/libdcadec.c')
-rw-r--r-- | libavcodec/libdcadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |