[FFmpeg-cvslog] targaenc: switch to ff_alloc_packet2().
Michael Niedermayer
git at videolan.org
Thu Mar 22 19:10:36 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 22 15:00:49 2012 +0100| [c038fb411bec255368a19cbdc1b54946845425eb] | committer: Michael Niedermayer
targaenc: switch to ff_alloc_packet2().
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c038fb411bec255368a19cbdc1b54946845425eb
---
libavcodec/targaenc.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c
index b03e643..b4ad932 100644
--- a/libavcodec/targaenc.c
+++ b/libavcodec/targaenc.c
@@ -86,8 +86,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return AVERROR(EINVAL);
}
picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
- if ((ret = ff_alloc_packet(pkt, picsize + 45)) < 0) {
- av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
+ if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0) {
return ret;
}
More information about the ffmpeg-cvslog
mailing list