summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-08-15 22:13:10 +0200
committerDiego Biurrun <diego@biurrun.de>2014-08-19 06:22:07 -0700
commit14d2006ca6c0e2b54784b93560f09e0e19c0a270 (patch)
tree490c3ae21e4f3cbd337c689e2e1f688eb62d4dc5 /libavcodec/pcm.c
parentd456baafb68cd80c0f537f1d843076e4dd853558 (diff)
pcm: Drop unused variable from DECODE_PLANAR macro
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r--libavcodec/pcm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 9fadcb7b86..2985156636 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -264,7 +264,6 @@ static av_cold int pcm_decode_init(AVCodecContext *avctx)
#else
#define DECODE_PLANAR(size, endian, src, dst, n, shift, offset) \
{ \
- int av_unused n2; \
n /= avctx->channels; \
for (c = 0; c < avctx->channels; c++) { \
samples = frame->extended_data[c]; \