vpx/vp8/encoder/x86/mcomp_x86.h
Ronald S. Bultje 6a4b1e5958 Remove vp8 in local symbols.
For non-static functions, change the prefix to vp9_. For static functions,
remove the prefix. Also fix some comments, remove unused code or unused
function prototypes.

Change-Id: I1f8be05362f66060fe421c3d4c9a906fdf835de5
2012-11-01 10:03:43 -07:00

41 lines
947 B
C

/*
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef MCOMP_X86_H
#define MCOMP_X86_H
#if HAVE_SSE3
#if !CONFIG_RUNTIME_CPU_DETECT
#undef vp9_search_full_search
#define vp9_search_full_search vp9_full_search_sadx3
#undef vp9_search_refining_search
#define vp9_search_refining_search vp9_refining_search_sadx4
#undef vp9_search_diamond_search
#define vp9_search_diamond_search vp9_diamond_search_sadx4
#endif
#endif
#if HAVE_SSE4_1
#if !CONFIG_RUNTIME_CPU_DETECT
#undef vp9_search_full_search
#define vp9_search_full_search vp9_full_search_sadx8
#endif
#endif
#endif