summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-30 20:17:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-03-30 20:17:58 +0200
commite2094bd03bcbfe157288b2466d12a5d817cedc99 (patch)
treefc849de13a90f9840d5afdfdd5521afd32cffe37 /libavcodec/mpegaudiodec.c
parent830702546780b63dba8324e89397f64242aa3e61 (diff)
mpeghaudiodec: Fix "set but not used" warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r--libavcodec/mpegaudiodec.c3
1 files changed, 2 insertions, 1 deletions
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;