r256 - experimental/ffmpeg/debian/patches

Samuel Hocevar sho at alioth.debian.org
Thu Mar 29 11:39:26 CET 2007


Author: sho
Date: 2007-03-29 10:39:25 +0000 (Thu, 29 Mar 2007)
New Revision: 256

Modified:
   experimental/ffmpeg/debian/patches/054_h264_mmx_chroma_mc_crash.diff
Log:
  * Improved H264 chroma overflow patch.


Modified: experimental/ffmpeg/debian/patches/054_h264_mmx_chroma_mc_crash.diff
===================================================================
--- experimental/ffmpeg/debian/patches/054_h264_mmx_chroma_mc_crash.diff	2007-03-28 20:29:29 UTC (rev 255)
+++ experimental/ffmpeg/debian/patches/054_h264_mmx_chroma_mc_crash.diff	2007-03-29 10:39:25 UTC (rev 256)
@@ -8,8 +8,8 @@
         || full_my < 0-extra_height
 -       || full_mx + 16/*FIXME*/ > pic_width + extra_width
 -       || full_my + 16/*FIXME*/ > pic_height + extra_height){
-+       || full_mx + 16/*FIXME*/ >= pic_width + extra_width
-+       || full_my + 16/*FIXME*/ >= pic_height + extra_height){
++       || full_mx + 18/*FIXME*/ > pic_width + extra_width
++       || full_my + 18/*FIXME*/ > pic_height + extra_height){
          ff_emulated_edge_mc(s->edge_emu_buffer, src_y - 2 - 2*h->mb_linesize, h->mb_linesize, 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
              src_y= s->edge_emu_buffer + 2 + 2*h->mb_linesize;
          emu=1;




More information about the Pkg-multimedia-commits mailing list