Commit 0f740fea authored by Paul B Mahol's avatar Paul B Mahol

tta: use interger instead of pointer to iterate output samples for 24-bit case

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent e2f89f78
......@@ -381,7 +381,7 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data,
case 3: {
// shift samples for 24-bit sample format
int32_t *samples = (int32_t *)frame->data[0];
for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++)
for (i = 0; i < framelen * s->channels; i++)
*samples++ <<= 8;
// reset decode buffer
s->decode_buffer = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment