summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-15 22:13:11 +0200
committerDiego Biurrun <diego@biurrun.de>2014-08-19 06:22:08 -0700
commit6af2930222ee5d8ce19f3b999a78d85a3c457391 (patch)
treefac0e41c230fc1de0c3277d7a5a64ef97168146a /libavcodec/pcm.c
parent14d2006ca6c0e2b54784b93560f09e0e19c0a270 (diff)
pcm: Drop av_unused attribute from variable that is always used
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r--libavcodec/pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 2985156636..e06712e841 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -253,7 +253,7 @@ static av_cold int pcm_decode_init(AVCodecContext *avctx)
#if HAVE_BIGENDIAN
#define DECODE_PLANAR(size, endian, src, dst, n, shift, offset) \
{ \
- int av_unused n2; \
+ int n2; \
n /= avctx->channels; \
for (c = 0; c < avctx->channels; c++) { \
samples = frame->extended_data[c]; \