diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 20:17:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 20:17:58 +0200 |
commit | e2094bd03bcbfe157288b2466d12a5d817cedc99 (patch) | |
tree | fc849de13a90f9840d5afdfdd5521afd32cffe37 | |
parent | 830702546780b63dba8324e89397f64242aa3e61 (diff) | |
download | ffmpeg-e2094bd03bcbfe157288b2466d12a5d817cedc99.tar.gz |
mpeghaudiodec: Fix "set but not used" warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/mpegaudiodec.c | 3 |
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; |