• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /******************************************************************************
2 *
3 * Copyright (C) 2012 Ittiam Systems Pvt Ltd, Bangalore
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 /**
19 *******************************************************************************
20 * @file
21 *  ihevc_tables_x86_intr.h
22 *
23 * @brief
24 *  Declarations for the fucntions defined in  ihevc_intra_pred_filters
25 *
26 * @author
27 *  Mamatha
28 *
29 *
30 * @remarks
31 *  None
32 *
33 *******************************************************************************
34 */
35 
36 #ifndef IHEVC_TABLES_X86_INTR_H_
37 #define IHEVC_TABLES_X86_INTR_H_
38 
39 
40 //Luma intra pred
41 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY1[16];
42 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY2[16];
43 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY3[16];
44 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASK4[16];
45 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASK5[16];
46 //Chroma intra pred
47 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY7[16];
48 
49 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY8[16];
50 
51 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY9[16];
52 
53 extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY11[16];
54 
55 extern MEM_ALIGN16 const UWORD8 inv_angle_shuffle[7][32];
56 // DEBLOCK TABLES
57 extern MEM_ALIGN16 const WORD8 coef_d[16];
58 extern MEM_ALIGN16 const WORD8 coef_de1[16];
59 extern MEM_ALIGN16 const WORD8 coef_dep1[16];
60 extern MEM_ALIGN16 const WORD32 shuffle_d[4];
61 extern const WORD32 shuffle0[2];
62 extern MEM_ALIGN16 const WORD32 shuffle1[4];
63 extern MEM_ALIGN16 const WORD32 shuffle2[4];
64 extern MEM_ALIGN16 const WORD32 shuffle3[4];
65 
66 extern MEM_ALIGN16 const WORD8 delta0[16];
67 extern MEM_ALIGN16 const WORD8 delta1[16];
68 extern MEM_ALIGN16 const WORD32 shuffle_uv[4];
69 
70 #endif /*IHEVC_TABLES_X86_INTR_H_*/
71