OSDN Git Service

avutil/frame: fix video buffer allocation
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 17 Mar 2013 01:18:08 +0000 (02:18 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 17 Mar 2013 01:19:25 +0000 (02:19 +0100)
The padding was lost during porting from avcodec
Should fix out of array accesses

Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavutil/frame.c

index 90f7fce..a5ddab9 100644 (file)
@@ -134,7 +134,7 @@ static int get_video_buffer(AVFrame *frame, int align)
         if (i == 1 || i == 2)
             h = -((-h) >> desc->log2_chroma_h);
 
-        frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h);
+        frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h + 16);
         if (!frame->buf[i])
             goto fail;