diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-02 23:25:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-09-05 13:55:04 +0200 |
commit | 2143948381c8118bdc2f50bd4079520b9885bd54 (patch) | |
tree | 94091b8539434e98cb8b96b07221b15bb535b5bb /libavcodec/h264_cabac.c | |
parent | 213e606752d16f51337e94431962fb5d7749c07e (diff) | |
download | ffmpeg-2143948381c8118bdc2f50bd4079520b9885bd54.tar.gz |
Drop unnecessary av_unused attributes.
Diffstat (limited to 'libavcodec/h264_cabac.c')
-rw-r--r-- | libavcodec/h264_cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c index f1ab97a144..a55a8f3985 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -1604,7 +1604,7 @@ decode_cabac_residual_internal(H264Context *h, int16_t *block, int index[64]; - int av_unused last; + int last; int coeff_count = 0; int node_ctx = 0; |