From: Loren Merritt Date: Thu, 11 Jun 2009 08:27:46 +0000 (+0000) Subject: fix a crash on frame width <= 48 pixels X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b67ef31c400d107e52a7592ef19a3f62b6267920;p=libx264 fix a crash on frame width <= 48 pixels --- diff --git a/common/mc.c b/common/mc.c index f9818b2a..e5d6cc83 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; ymc.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 );