mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
libgsm: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1308b2df44
commit
67b8c88cfe
@ -100,8 +100,7 @@ static int libgsm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
|||||||
gsm_signal *samples = (gsm_signal *)frame->data[0];
|
gsm_signal *samples = (gsm_signal *)frame->data[0];
|
||||||
struct gsm_state *state = avctx->priv_data;
|
struct gsm_state *state = avctx->priv_data;
|
||||||
|
|
||||||
if ((ret = ff_alloc_packet(avpkt, avctx->block_align))) {
|
if ((ret = ff_alloc_packet2(avctx, vpkt, avctx->block_align))) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user