From e2094bd03bcbfe157288b2466d12a5d817cedc99 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 30 Mar 2012 20:17:58 +0200 Subject: [PATCH] mpeghaudiodec: Fix "set but not used" warnings Signed-off-by: Michael Niedermayer --- libavcodec/mpegaudiodec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index c619269d3a..5c389c9553 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -1700,7 +1700,8 @@ static int decode_frame_adu(AVCodecContext *avctx, void *data, int buf_size = avpkt->size; MPADecodeContext *s = avctx->priv_data; uint32_t header; - int len, out_size; + int len; + int av_unused out_size; len = buf_size;