[FFmpeg-cvslog] libx264: do not set pic quality if no frame is output
Baptiste Coudurier
git at videolan.org
Tue Aug 9 00:24:46 CEST 2011
ffmpeg | branch: master | Baptiste Coudurier <baptiste.coudurier at gmail.com> | Sat Jan 29 17:05:42 2011 -0800| [5caa2de19ece830e32c95731bc92a423d55cff0c] | committer: Anton Khirnov
libx264: do not set pic quality if no frame is output
Avoids uninitialized reads.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5caa2de19ece830e32c95731bc92a423d55cff0c
---
libavcodec/libx264.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 17cae71..bcf8b1f 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -144,7 +144,8 @@ static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
}
x4->out_pic.key_frame = pic_out.b_keyframe;
- x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
+ if (bufsize)
+ x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
return bufsize;
}
More information about the ffmpeg-cvslog
mailing list