[FFmpeg-cvslog] r210enc: switch to ff_alloc_packet2().
Michael Niedermayer
git at videolan.org
Thu Mar 22 19:10:35 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 22 15:00:49 2012 +0100| [c32438c42a623817f5f5f620486a827140b43554] | committer: Michael Niedermayer
r210enc: 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=c32438c42a623817f5f5f620486a827140b43554
---
libavcodec/r210enc.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/libavcodec/r210enc.c b/libavcodec/r210enc.c
index 87bb64b..331b072 100644
--- a/libavcodec/r210enc.c
+++ b/libavcodec/r210enc.c
@@ -43,8 +43,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
uint8_t *src_line;
uint8_t *dst;
- if ((ret = ff_alloc_packet(pkt, 4 * aligned_width * avctx->height)) < 0) {
- av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
+ if ((ret = ff_alloc_packet2(avctx, pkt, 4 * aligned_width * avctx->height)) < 0) {
return ret;
}
More information about the ffmpeg-cvslog
mailing list