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 RECON_MIPS_H 15 #define RECON_MIPS_H 16 17 extern prototype_copy_block(vp8_copy_mem8x8_mips); 18 extern prototype_copy_block(vp8_copy_mem8x4_mips); 19 extern prototype_copy_block(vp8_copy_mem16x16_mips); 20 21 #ifndef MUST_BE_ALIGNED 22 #define MUST_BE_ALIGNED 23 #endif 24 25 #undef vp8_recon_copy8x8 26 #define vp8_recon_copy8x8 vp8_copy_mem8x8_mips 27 28 #undef vp8_recon_copy8x4 29 #define vp8_recon_copy8x4 vp8_copy_mem8x4_mips 30 31 #undef vp8_recon_copy16x16 32 #define vp8_recon_copy16x16 vp8_copy_mem16x16_mips 33 34 #endif 35 #endif