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
41extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY1[16];
42extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY2[16];
43extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY3[16];
44extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASK4[16];
45extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASK5[16];
46//Chroma intra pred
47extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY7[16];
48
49extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY8[16];
50
51extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY9[16];
52
53extern MEM_ALIGN16 const UWORD8 IHEVCE_SHUFFLEMASKY11[16];
54
55extern MEM_ALIGN16 const UWORD8 inv_angle_shuffle[7][32];
56// DEBLOCK TABLES
57extern MEM_ALIGN16 const WORD8 coef_d[16];
58extern MEM_ALIGN16 const WORD8 coef_de1[16];
59extern MEM_ALIGN16 const WORD8 coef_dep1[16];
60extern MEM_ALIGN16 const WORD32 shuffle_d[4];
61extern const WORD32 shuffle0[2];
62extern MEM_ALIGN16 const WORD32 shuffle1[4];
63extern MEM_ALIGN16 const WORD32 shuffle2[4];
64extern MEM_ALIGN16 const WORD32 shuffle3[4];
65
66extern MEM_ALIGN16 const WORD8 delta0[16];
67extern MEM_ALIGN16 const WORD8 delta1[16];
68extern MEM_ALIGN16 const WORD32 shuffle_uv[4];
69
70#endif /*IHEVC_TABLES_X86_INTR_H_*/
71