Commit baaded87 authored by michael's avatar michael

Remove apparently unneeded and buggy align.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12179 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2b5db33e
......@@ -288,16 +288,9 @@ int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
ff_fill_linesize(&picture, s->pix_fmt, w);
for (i=1; i<4; i++)
for (i=0; i<4; i++)
picture.linesize[i] = ALIGN(picture.linesize[i], STRIDE_ALIGN);
/* next ensures that linesize= 2^x uvlinesize, that is needed because
* some MC code assumes it */
if (picture.linesize[1])
picture.linesize[0] = ALIGN(picture.linesize[0], picture.linesize[1]);
else
picture.linesize[0] = ALIGN(picture.linesize[0], STRIDE_ALIGN);
tmpsize = ff_fill_pointer(&picture, NULL, s->pix_fmt, h);
for (i=0; i<3 && picture.data[i+1]; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment