[FFmpeg-cvslog] pamenc: switch to ff_alloc_packet2().
Michael Niedermayer
git at videolan.org
Thu Mar 22 19:10:32 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 22 15:00:48 2012 +0100| [29971e4f9c588d068312ea8dc607be9a817669c9] | committer: Michael Niedermayer
pamenc: 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=29971e4f9c588d068312ea8dc607be9a817669c9
---
libavcodec/pamenc.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/libavcodec/pamenc.c b/libavcodec/pamenc.c
index 7a3499e..27d135f 100644
--- a/libavcodec/pamenc.c
+++ b/libavcodec/pamenc.c
@@ -88,8 +88,7 @@ static int pam_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return -1;
}
- if ((ret = ff_alloc_packet(pkt, n*h + 200)) < 0) {
- av_log(avctx, AV_LOG_ERROR, "encoded frame too large\n");
+ if ((ret = ff_alloc_packet2(avctx, pkt, n*h + 200)) < 0) {
return ret;
}
More information about the ffmpeg-cvslog
mailing list