shithub: libvpx

Download patch

ref: 0102f1d5ecda28a23d14bf9cdfdd49792e70b27b
parent: d2dad31e79e3895b15a857bd4ef59e1d3b5a7009
author: Guillaume Martres <[email protected]>
date: Tue Dec 10 13:17:00 EST 2013

avoid crash when using --best on cpus with SSE3 (but not SSE4) support

Change-Id: Ie100114a01b8b4da7248603c40676792cd06b32a

--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -1726,7 +1726,7 @@
     check_here = r * mv_stride + in_what + col_min;
     c = col_min;
 
-    while ((c + 2) < col_max) {
+    while ((c + 2) < col_max && fn_ptr->sdx3f != NULL) {
       int i;
 
       fn_ptr->sdx3f(what, what_stride, check_here, in_what_stride, sad_array);