Removed unused vp8_recon_intra4x4mb function
[libvpx.git] / vp8 / encoder / x86 / mcomp_x86.h
blob3b7b29c21c92d162980d4c17903081f41d263de9
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
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 */
12 #ifndef MCOMP_X86_H
13 #define MCOMP_X86_H
15 #if HAVE_SSE3
16 #if !CONFIG_RUNTIME_CPU_DETECT
18 #undef vp8_search_full_search
19 #define vp8_search_full_search vp8_full_search_sadx3
21 #undef vp8_search_diamond_search
22 #define vp8_search_diamond_search vp8_diamond_search_sadx4
24 #endif
25 #endif
27 #if HAVE_SSE4_1
28 #if !CONFIG_RUNTIME_CPU_DETECT
30 #undef vp8_search_full_search
31 #define vp8_search_full_search vp8_full_search_sadx8
33 #endif
34 #endif
36 #endif