mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
g729dec: fix 'warning: assignment from incompatible pointer type'
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
934abf6ff8
commit
22b125f912
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user