summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2017-02-11 16:35:22 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2017-02-11 16:35:22 +0100
commitb47582f43a82d9e1717046b5db46070b2ba4c839 (patch)
tree2a0f932df61d758098de73e9f124e70ac7cb6ecd
parented491db3e506c0e1ee6b9281ce898c4a79298e0f (diff)
lavc/atrac3: Constify a pointer declaration.
Silences an "assignment discards ‘const’ qualifier" warning.
-rw-r--r--libavcodec/atrac3.c2
1 files changed, 1 insertions, 1 deletions
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 */