blob: 22e2efea040eb6509ee895c6eb5442b04bb04895 [file] [log] [blame]
Hamsalekha S8d3d3032015-03-13 21:24:58 +05301/******************************************************************************
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/**
22 *******************************************************************************
23 * @file
24 * ih264d_function_selector.h
25 *
26 * @brief
27 * Structure definitions used in the decoder
28 *
29 * @author
30 * Harish
31 *
32 * @par List of Functions:
33 *
34 * @remarks
35 * None
36 *
37 *******************************************************************************
38 */
39
40#ifndef _IH264D_FUNCTION_SELECTOR_H_
41#define _IH264D_FUNCTION_SELECTOR_H_
42
43#define D_ARCH_NA 1
44#define D_ARCH_ARM_NONEON 2
45#define D_ARCH_ARM_A9Q 3
46#define D_ARCH_ARM_A9A 4
47#define D_ARCH_ARM_A9 5
48#define D_ARCH_ARM_A7 6
49#define D_ARCH_ARM_A5 7
50#define D_ARCH_ARM_A15 8
51#define D_ARCH_ARM_NEONINTR 9
52#define D_ARCH_ARMV8_GENERIC 10
53#define D_ARCH_X86_GENERIC 11
54#define D_ARCH_X86_SSSE3 12
55#define D_ARCH_X86_SSE42 13
56#define D_ARCH_X86_AVX2 14
57#define D_ARCH_MIPS_GENERIC 15
58#define D_ARCH_MIPS_32 16
59
60void ih264d_init_arch(dec_struct_t *ps_codec);
61
62void ih264d_init_function_ptr(dec_struct_t *ps_codec);
63
64void ih264d_init_function_ptr_generic(dec_struct_t *ps_codec);
65void ih264d_init_function_ptr_ssse3(dec_struct_t *ps_codec);
66void ih264d_init_function_ptr_sse42(dec_struct_t *ps_codec);
67
Hamsalekha S8d3d3032015-03-13 21:24:58 +053068void ih264d_init_function_ptr_a9q(dec_struct_t *ps_codec);
69void ih264d_init_function_ptr_av8(dec_struct_t *ps_codec);
70
71#endif /* _IH264D_FUNCTION_SELECTOR_H_ */