1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
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
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 
12 #ifndef VP9_ENCODER_X86_VP9_MCOMP_X86_H_
13 #define VP9_ENCODER_X86_VP9_MCOMP_X86_H_
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 #if HAVE_SSE3
20 #if !CONFIG_RUNTIME_CPU_DETECT
21 
22 #undef  vp9_search_full_search
23 #define vp9_search_full_search vp9_full_search_sadx3
24 
25 #undef  vp9_search_refining_search
26 #define vp9_search_refining_search vp9_refining_search_sadx4
27 
28 #undef  vp9_search_diamond_search
29 #define vp9_search_diamond_search vp9_diamond_search_sadx4
30 
31 #endif
32 #endif
33 
34 #if HAVE_SSE4_1
35 #if !CONFIG_RUNTIME_CPU_DETECT
36 
37 #undef  vp9_search_full_search
38 #define vp9_search_full_search vp9_full_search_sadx8
39 
40 #endif
41 #endif
42 
43 #ifdef __cplusplus
44 }  // extern "C"
45 #endif
46 
47 #endif  // VP9_ENCODER_X86_VP9_MCOMP_X86_H_
48 
49