diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 15:00:50 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 19:03:22 +0100 |
commit | 7959eb0d1267b9d0bcf8db663b963401fec466c5 (patch) | |
tree | 336080985b96739f29616e9678411bab7038fb55 /libavcodec | |
parent | a3f36b09e75f01e7a1a506e635401cbc5a5f65c9 (diff) | |
download | ffmpeg-7959eb0d1267b9d0bcf8db663b963401fec466c5.tar.gz |
y41penc: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/y41penc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c index 577712543e..05bac7d685 100644 --- a/libavcodec/y41penc.c +++ b/libavcodec/y41penc.c @@ -48,8 +48,7 @@ static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt, uint8_t *y, *u, *v; int i, j, ret; - if ((ret = ff_alloc_packet(pkt, avctx->width * avctx->height * 1.5)) < 0) { - av_log(avctx, AV_LOG_ERROR, "Out buffer is too small.\n"); + if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 1.5)) < 0) { return ret; } |