| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 
| 3  * | 3  * | 
| 4  *  Use of this source code is governed by a BSD-style license | 4  *  Use of this source code is governed by a BSD-style license | 
| 5  *  that can be found in the LICENSE file in the root of the source | 5  *  that can be found in the LICENSE file in the root of the source | 
| 6  *  tree. An additional intellectual property rights grant can be found | 6  *  tree. An additional intellectual property rights grant can be found | 
| 7  *  in the file PATENTS.  All contributing project authors may | 7  *  in the file PATENTS.  All contributing project authors may | 
| 8  *  be found in the AUTHORS file in the root of the source tree. | 8  *  be found in the AUTHORS file in the root of the source tree. | 
| 9  */ | 9  */ | 
| 10 | 10 | 
| 11 | 11 #include "vpx_config.h" | 
| 12 #include "vp8/encoder/variance.h" | 12 #include "vp8/encoder/variance.h" | 
| 13 #include "vp8/common/pragmas.h" | 13 #include "vp8/common/pragmas.h" | 
| 14 #include "vpx_ports/mem.h" | 14 #include "vpx_ports/mem.h" | 
| 15 | 15 | 
| 16 extern unsigned int vp8_get16x16var_sse2 | 16 extern unsigned int vp8_get16x16var_sse2 | 
| 17 ( | 17 ( | 
| 18     const unsigned char *src_ptr, | 18     const unsigned char *src_ptr, | 
| 19     int source_stride, | 19     int source_stride, | 
| 20     const unsigned char *ref_ptr, | 20     const unsigned char *ref_ptr, | 
| 21     int recon_stride, | 21     int recon_stride, | 
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 156         vp8_filter_block2d_bil_var_ssse3( | 156         vp8_filter_block2d_bil_var_ssse3( | 
| 157             src_ptr, src_pixels_per_line, | 157             src_ptr, src_pixels_per_line, | 
| 158             dst_ptr, dst_pixels_per_line, 8, | 158             dst_ptr, dst_pixels_per_line, 8, | 
| 159             xoffset, yoffset, | 159             xoffset, yoffset, | 
| 160             &xsum0, &xxsum0); | 160             &xsum0, &xxsum0); | 
| 161     } | 161     } | 
| 162 | 162 | 
| 163     *sse = xxsum0; | 163     *sse = xxsum0; | 
| 164     return (xxsum0 - ((xsum0 * xsum0) >> 7)); | 164     return (xxsum0 - ((xsum0 * xsum0) >> 7)); | 
| 165 } | 165 } | 
| OLD | NEW | 
|---|