diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 04:22:17 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 19:03:18 +0100 |
commit | aa9700c9887179249b7817e73245f521c3f6c5da (patch) | |
tree | 68fbd1b4a4c59f946be1c88df72efb54165cab2c | |
parent | 9d44b0549f114c2a19bd9d5e447350f9bfcde3d5 (diff) | |
download | ffmpeg-aa9700c9887179249b7817e73245f521c3f6c5da.tar.gz |
dpxenc: switch to ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dpxenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dpxenc.c b/libavcodec/dpxenc.c index 05a7134378..b9c3c30821 100644 --- a/libavcodec/dpxenc.c +++ b/libavcodec/dpxenc.c @@ -117,8 +117,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, size = avctx->height * avctx->width * 4; else size = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height); - if ((ret = ff_alloc_packet(pkt, size + HEADER_SIZE)) < 0) { - av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n"); + if ((ret = ff_alloc_packet2(avctx, pkt, size + HEADER_SIZE)) < 0) { return ret; } buf = pkt->data; |