[x264-devel] commit: fix a crash on frame width <= 48 pixels (Loren Merritt )

git version control git at videolan.org
Thu Jun 11 10:30:16 CEST 2009


x264 | branch: master | Loren Merritt <pengvado at akuvian.org> | Thu Jun 11 08:27:46 2009 +0000| [a9526973579d7d48bb2730b64a547ad10b7ef6ef] | committer: Loren Merritt 

fix a crash on frame width <= 48 pixels

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=a9526973579d7d48bb2730b64a547ad10b7ef6ef
---

 common/mc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/common/mc.c b/common/mc.c
index f9818b2..e5d6cc8 100644
--- a/common/mc.c
+++ b/common/mc.c
@@ -314,7 +314,7 @@ void x264_frame_init_lowres( x264_t *h, x264_frame_t *frame )
     // duplicate last row and column so that their interpolation doesn't have to be special-cased
     for( y=0; y<i_height; y++ )
         src[i_width+y*i_stride] = src[i_width-1+y*i_stride];
-    h->mc.memcpy_aligned( src+i_stride*i_height, src+i_stride*(i_height-1), i_width );
+    memcpy( src+i_stride*i_height, src+i_stride*(i_height-1), i_width );
     h->mc.frame_init_lowres_core( src, frame->lowres[0], frame->lowres[1], frame->lowres[2], frame->lowres[3],
                                   i_stride, frame->i_stride_lowres, frame->i_width_lowres, frame->i_lines_lowres );
     x264_frame_expand_border_lowres( frame );



More information about the x264-devel mailing list