mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
pcm: Drop av_unused attribute from variable that is always used
This commit is contained in:
parent
14d2006ca6
commit
6af2930222
@ -253,7 +253,7 @@ static av_cold int pcm_decode_init(AVCodecContext *avctx)
|
|||||||
#if HAVE_BIGENDIAN
|
#if HAVE_BIGENDIAN
|
||||||
#define DECODE_PLANAR(size, endian, src, dst, n, shift, offset) \
|
#define DECODE_PLANAR(size, endian, src, dst, n, shift, offset) \
|
||||||
{ \
|
{ \
|
||||||
int av_unused n2; \
|
int n2; \
|
||||||
n /= avctx->channels; \
|
n /= avctx->channels; \
|
||||||
for (c = 0; c < avctx->channels; c++) { \
|
for (c = 0; c < avctx->channels; c++) { \
|
||||||
samples = frame->extended_data[c]; \
|
samples = frame->extended_data[c]; \
|
||||||
|
Loading…
Reference in New Issue
Block a user