提交 1ce8377c 编写于 作者: M Michael Niedermayer

wmalossless: Fix incompatoble pointer type warnings

Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 c130428a
......@@ -1424,8 +1424,8 @@ static int decode_packet(AVCodecContext *avctx,
s->samples_16 = (int16_t *) data;
s->samples_16_end = (int16_t *) ((int8_t*)data + *data_size);
} else {
s->samples_32 = (int *) data;
s->samples_32_end = (int *) ((int8_t*)data + *data_size);
s->samples_32 = (void *) data;
s->samples_32_end = (void *) ((int8_t*)data + *data_size);
}
*data_size = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册