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 DEQUANTIZE_MIPS_H 13 #define DEQUANTIZE_MIPS_H 14 15 extern prototype_dequant_idct_add(vp8_dequant_idct_add_mips); 16 extern prototype_dequant_dc_idct_add(vp8_dequant_dc_idct_add_mips); 17 extern prototype_dequant_dc_idct_add_y_block(vp8_dequant_dc_idct_add_y_block_mips); 18 extern prototype_dequant_idct_add_y_block(vp8_dequant_idct_add_y_block_mips); 19 extern prototype_dequant_idct_add_uv_block(vp8_dequant_idct_add_uv_block_mips); 20 21 #if !CONFIG_RUNTIME_CPU_DETECT 22 #undef vp8_dequant_idct_add 23 #define vp8_dequant_idct_add vp8_dequant_idct_add_mips 24 25 #undef vp8_dequant_dc_idct_add 26 #define vp8_dequant_dc_idct_add vp8_dequant_dc_idct_add_mips 27 28 #undef vp8_dequant_dc_idct_add_y_block 29 #define vp8_dequant_dc_idct_add_y_block vp8_dequant_dc_idct_add_y_block_mips 30 31 #undef vp8_dequant_idct_add_y_block 32 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_mips 33 34 #undef vp8_dequant_idct_add_uv_block 35 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_mips 36 37 #endif 38 #endif