From 107026ea8188302233a5112840e70a7cdec356cd Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 2 Aug 2015 20:36:24 +0200 Subject: avcodec/aliaspixenc: Use ff_alloc_packet2() Signed-off-by: Michael Niedermayer --- libavcodec/aliaspixenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/aliaspixenc.c b/libavcodec/aliaspixenc.c index 6ceb658487..a9ba00cd29 100644 --- a/libavcodec/aliaspixenc.c +++ b/libavcodec/aliaspixenc.c @@ -61,7 +61,7 @@ FF_ENABLE_DEPRECATION_WARNINGS } length = ALIAS_HEADER_SIZE + 4 * width * height; // max possible - if ((ret = ff_alloc_packet(pkt, length)) < 0) { + if ((ret = ff_alloc_packet2(avctx, pkt, length, ALIAS_HEADER_SIZE + height*2)) < 0) { av_log(avctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n", length); return ret; } -- cgit v1.2.3