lavc/atrac3: Constify a pointer declaration.

Silences an "assignment discards ‘const’ qualifier" warning.
This commit is contained in:
Carl Eugen Hoyos 2017-02-11 16:35:22 +01:00
parent ed491db3e5
commit b47582f43a
1 changed files with 1 additions and 1 deletions

View File

@ -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 */