[FFmpeg-cvslog] flashv2enc: switch to ff_alloc_packet2()
Michael Niedermayer
git at videolan.org
Thu Mar 22 19:10:25 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 22 04:23:36 2012 +0100| [3f35b66512e4fa740c0cd0cb3a78ae34f5a363a6] | committer: Michael Niedermayer
flashv2enc: 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=3f35b66512e4fa740c0cd0cb3a78ae34f5a363a6
---
libavcodec/flashsv2enc.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c
index 8efdb46..042331c 100644
--- a/libavcodec/flashsv2enc.c
+++ b/libavcodec/flashsv2enc.c
@@ -48,6 +48,7 @@
#include "libavutil/imgutils.h"
#include "avcodec.h"
+#include "internal.h"
#include "put_bits.h"
#include "bytestream.h"
@@ -833,9 +834,7 @@ static int flashsv2_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
*p = *pict;
- if (!pkt->data &&
- (res = av_new_packet(pkt, s->frame_size + FF_MIN_BUFFER_SIZE)) < 0) {
- av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
+ if ((res = ff_alloc_packet2(avctx, pkt, s->frame_size + FF_MIN_BUFFER_SIZE)) < 0) {
return res;
}
More information about the ffmpeg-cvslog
mailing list