# HG changeset patch # User conrad # Date 1266012102 0 # Node ID 31bdf73a03303d9e48b2a969c2ce399acf0f4a42 # Parent cd2956d08cc1113e875860fbcd0c8c23b576fc33 Special case VP5/6 chroma alignment on x86 as well diff -r cd2956d08cc1 -r 31bdf73a0330 utils.c --- a/utils.c Fri Feb 12 22:01:38 2010 +0000 +++ b/utils.c Fri Feb 12 22:01:42 2010 +0000 @@ -265,7 +265,9 @@ //picture size unneccessarily in some cases. The solution here is not //pretty and better ideas are welcome! #if HAVE_MMX - if(s->codec_id == CODEC_ID_SVQ1) + if(s->codec_id == CODEC_ID_SVQ1 || s->codec_id == CODEC_ID_VP5 || + s->codec_id == CODEC_ID_VP6 || s->codec_id == CODEC_ID_VP6F || + s->codec_id == CODEC_ID_VP6A) stride_align[i]= 16; else #endif