From b47582f43a82d9e1717046b5db46070b2ba4c839 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 11 Feb 2017 16:35:22 +0100 Subject: [PATCH] lavc/atrac3: Constify a pointer declaration. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silences an "assignment discards ‘const’ qualifier" warning. --- libavcodec/atrac3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index f0a948e0d7..88ee9babcc 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -652,7 +652,7 @@ static int decode_frame(AVCodecContext *avctx, const uint8_t *databuf, /* Decode sound unit pairs (channels are expected to be even). * Multichannel joint stereo interleaves pairs (6ch: 2ch + 2ch + 2ch) */ - uint8_t *js_databuf; + const uint8_t *js_databuf; int js_pair, js_block_align; js_block_align = (avctx->block_align / avctx->channels) * 2; /* block pair */