shithub: libvpx

Download patch

ref: 07ba411914139f3ab68a3b0f5618e5505557d159
parent: af12c23e8ee6931c364f417d510b48de6e1d8530
author: John Koleszar <jkoleszar@google.com>
date: Tue Oct 11 04:43:30 EDT 2011

Reset FPU state after calc_plane_error()

Fixes a MMX/SSE2 mismatch when building with --enable-internal-stats.

Change-Id: I0c50a1f246f6916b7a5fc6f36864ceb362f25520

--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2400,6 +2400,7 @@
         recon += recon_stride;
     }
 
+    vp8_clear_system_state();
     return total_sse;
 }