OSDN Git Service

avutil/frame: increase padding for frames
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 28 Dec 2013 18:05:39 +0000 (19:05 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 28 Dec 2013 18:10:45 +0000 (19:10 +0100)
This matches what avcodec uses

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

index 1b44400..75a1c28 100644 (file)
@@ -159,7 +159,7 @@ static int get_video_buffer(AVFrame *frame, int align)
         if (i == 1 || i == 2)
             h = FF_CEIL_RSHIFT(h, desc->log2_chroma_h);
 
-        frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h + 16);
+        frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h + 16 + 16/*STRIDE_ALIGN*/ - 1);
         if (!frame->buf[i])
             goto fail;