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 IDCT_MIPS_H
15#define IDCT_MIPS_H
16
17extern prototype_idct(vp8_short_idct4x4llm_mips);
18extern prototype_second_order(vp8_short_inv_walsh4x4_mips);
19extern prototype_idct_scalar_add(vp8_dc_only_idct_add_mips);
20extern prototype_second_order(vp8_short_inv_walsh4x4_1_mips);
21
22#undef  vp8_idct_idct16
23#define vp8_idct_idct16 vp8_short_idct4x4llm_mips
24
25#undef  vp8_idct_iwalsh16
26#define vp8_idct_iwalsh16 vp8_short_inv_walsh4x4_mips
27
28#undef  vp8_idct_idct1_scalar_add
29#define vp8_idct_idct1_scalar_add vp8_dc_only_idct_add_mips
30
31#undef  vp8_idct_iwalsh1
32#define vp8_idct_iwalsh1 vp8_short_inv_walsh4x4_1_mips
33
34#endif
35#endif