From 18263698abeb6fc7e4f470c5ac94892af417451e Mon Sep 17 00:00:00 2001 From: Derek Buitenhuis Date: Mon, 20 Aug 2012 14:07:41 -0400 Subject: [PATCH] utvideoenc: Port to ff_alloc_packet2 Signed-off-by: Derek Buitenhuis Signed-off-by: Michael Niedermayer --- libavcodec/utvideoenc.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/libavcodec/utvideoenc.c b/libavcodec/utvideoenc.c index 1e7c12b768..f3ba7399cd 100644 --- a/libavcodec/utvideoenc.c +++ b/libavcodec/utvideoenc.c @@ -623,15 +623,11 @@ static int utvideo_encode_frame(AVCodecContext *avctx, AVPacket *pkt, int i, ret = 0; /* Allocate a new packet if needed, and set it to the pointer dst */ - ret = ff_alloc_packet(pkt, (256 + 4 * c->slices + width * height) * - c->planes + 4); + ret = ff_alloc_packet2(avctx, pkt, (256 + 4 * c->slices + width * height) * + c->planes + 4); - if (ret < 0) { - av_log(avctx, AV_LOG_ERROR, - "Error allocating the output packet, or the provided packet " - "was too small.\n"); + if (ret < 0) return ret; - } dst = pkt->data;