1 /****************************************************************************** 2 * 3 * Copyright (C) 2015 The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ***************************************************************************** 18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore 19 */ 20 21 #ifndef IMPEG2_MEM_FUNC_H_ 22 #define IMPEG2_MEM_FUNC_H_ 23 24 typedef void pf_memset0_one_16bit_buf_t (WORD16 *buf); 25 typedef void pf_memset_8bit_t (UWORD8 *dst, WORD32 dc_val, WORD32 dst_wd); 26 27 pf_memset0_one_16bit_buf_t impeg2_memset0_16bit_8x8_linear_block; 28 pf_memset0_one_16bit_buf_t impeg2_memset0_16bit_8x8_linear_block_a9q; 29 30 pf_memset0_one_16bit_buf_t impeg2_memset0_16bit_8x8_linear_block_sse42; 31 32 pf_memset0_one_16bit_buf_t impeg2_memset0_16bit_8x8_linear_block_av8; 33 34 pf_memset_8bit_t impeg2_memset_8bit_8x8_block; 35 pf_memset_8bit_t impeg2_memset_8bit_8x8_block_a9q; 36 37 pf_memset_8bit_t impeg2_memset_8bit_8x8_block_sse42; 38 39 pf_memset_8bit_t impeg2_memset_8bit_8x8_block_av8; 40 41 #endif /* IMPEG2_MEM_FUNC_H_ */ 42