OSDN Git Service

Fix a typo
[android-x86/hardware-intel-common-vaapi.git] / src / i965_avc_ildb.h
1 /*
2  * Copyright © 2010 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *    Xiang Haihao <haihao.xiang@intel.com>
26  *
27  */
28
29 #ifndef __I965_AVC_ILDB_H__
30 #define __I965_AVC_ILDB_H__
31
32 #define SURFACE_EDGE_CONTROL_DATA       0
33 #define SURFACE_SRC_Y                   1
34 #define SURFACE_SRC_UV                  2
35 #define SURFACE_DEST_Y                  3
36 #define SURFACE_DEST_UV                 4
37
38 #define NUM_AVC_ILDB_SURFACES           5
39
40 #define EDGE_CONTROL_DATA_IN_DWS        16
41 #define EDGE_CONTROL_DATA_IN_BTYES      64
42
43 struct i965_avc_ildb_context {
44     struct {
45         dri_bo *bo;
46     } curbe;
47
48     struct {
49         dri_bo *ss_bo;
50         dri_bo *s_bo;
51         unsigned long offset;
52         int surface_type;
53         int width;
54         int height;
55         int depth;
56         int pitch;
57         int format;
58         int vert_line_stride;
59         int vert_line_stride_ofs;
60         int is_target;
61     } surface[NUM_AVC_ILDB_SURFACES];
62
63     struct {
64         dri_bo *bo;
65     } binding_table;
66
67     struct {
68         dri_bo *bo;
69     } idrt;
70
71     struct {
72         dri_bo *bo;
73     } vfe_state;
74
75     struct {
76         unsigned int vfe_start;
77         unsigned int cs_start;
78
79         unsigned int num_vfe_entries;
80         unsigned int num_cs_entries;
81
82         unsigned int size_vfe_entry;
83         unsigned int size_cs_entry;
84     } urb;
85
86     int picture_type;
87     int mbs_per_picture;
88 };
89
90 void i965_avc_ildb(VADriverContextP, struct decode_state *, void *h264_context);
91 void i965_avc_ildb_decode_init(VADriverContextP, void *h264_context);
92 Bool i965_avc_ildb_ternimate(struct i965_avc_ildb_context *);
93
94 #endif /* __I965_AVC_ILDB_H__ */
95