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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-02-16 23:03:58 +01:00
parent 934abf6ff8
commit 22b125f912

View File

@ -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;