mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
sunrastenc: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b911d7dc60
commit
2ea893fa23
@ -184,7 +184,7 @@ static int sunrast_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
||||
SUNRASTContext *s = avctx->priv_data;
|
||||
int ret;
|
||||
|
||||
if ((ret = ff_alloc_packet(avpkt, s->size)) < 0)
|
||||
if ((ret = ff_alloc_packet2(avctx, avpkt, s->size)) < 0)
|
||||
return ret;
|
||||
|
||||
bytestream2_init_writer(&s->p, avpkt->data, avpkt->size);
|
||||
|
Loading…
Reference in New Issue
Block a user