mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/avuienc: Use ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a0044becca
commit
4a8ec0218e
@ -62,7 +62,7 @@ static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
||||
skip = 16;
|
||||
}
|
||||
size = 2 * avctx->width * (avctx->height + skip) + 8 * interlaced;
|
||||
if ((ret = ff_alloc_packet(pkt, size)) < 0)
|
||||
if ((ret = ff_alloc_packet2(avctx, pkt, size, size)) < 0)
|
||||
return ret;
|
||||
dst = pkt->data;
|
||||
if (!interlaced) {
|
||||
|
Loading…
Reference in New Issue
Block a user