diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-03 12:52:29 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-03 12:59:05 +0100 |
commit | 5e1166b31be45b37cbbd14eecfa1b260190ac651 (patch) | |
tree | 76a1a00533c14841937bb52bbdbde9f78c2a0c9d /libavcodec/wmaprodec.c | |
parent | 94bed8e582eed1268ddc0d2b88cad21d8c638774 (diff) | |
download | ffmpeg-5e1166b31be45b37cbbd14eecfa1b260190ac651.tar.gz |
Mark some variables with av_unused
Most of these variables are only used in av_dlog statements, some
are required but not used by other macros.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index ab2cd5c596..4ba8c455ab 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -1320,7 +1320,7 @@ static int decode_frame(WMAProDecodeCtx *s) /** no idea what these are for, might be the number of samples that need to be skipped at the beginning or end of a stream */ if (get_bits1(gb)) { - int skip; + int av_unused skip; /** usually true for the first frame */ if (get_bits1(gb)) { |