Commit 22b125f9 authored by Michael Niedermayer's avatar Michael Niedermayer

g729dec: fix 'warning: assignment from incompatible pointer type'

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 934abf6f
......@@ -420,7 +420,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret;
}
out_frame= ctx->frame.data[0];
out_frame = (int16_t*) ctx->frame.data[0];
if (buf_size == 10) {
packet_type = FORMAT_G729_8K;
......
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