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#if !CONFIG_RUNTIME_CPU_DETECT
13
14#ifndef SUBPIXEL_MIPS_H
15#define SUBPIXEL_MIPS_H
16
17extern prototype_subpixel_predict(vp8_sixtap_predict16x16_mips);
18extern prototype_subpixel_predict(vp8_sixtap_predict8x8_mips);
19extern prototype_subpixel_predict(vp8_sixtap_predict8x4_mips);
20extern prototype_subpixel_predict(vp8_sixtap_predict_mips);
21extern void dsputil_static_init(void);
22
23#undef  vp8_subpix_sixtap16x16
24#define vp8_subpix_sixtap16x16 vp8_sixtap_predict16x16_mips
25
26#undef  vp8_subpix_sixtap8x8
27#define vp8_subpix_sixtap8x8 vp8_sixtap_predict8x8_mips
28
29#undef  vp8_subpix_sixtap8x4
30#define vp8_subpix_sixtap8x4 vp8_sixtap_predict8x4_mips
31
32#undef  vp8_subpix_sixtap4x4
33#define vp8_subpix_sixtap4x4 vp8_sixtap_predict_mips
34
35#endif
36#endif