Commit 89cd95b1 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

sonic: fix warning about incompatible pointer types

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ae03b214
......@@ -860,7 +860,7 @@ static int sonic_decode_frame(AVCodecContext *avctx,
SonicContext *s = avctx->priv_data;
GetBitContext gb;
int i, quant, ch, j, ret;
short *samples;
int16_t *samples;
if (buf_size == 0) return 0;
......@@ -869,7 +869,7 @@ static int sonic_decode_frame(AVCodecContext *avctx,
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret;
}
samples = s->frame.data[0];
samples = (int16_t *)s->frame.data[0];
// av_log(NULL, AV_LOG_INFO, "buf_size: %d\n", buf_size);
......
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