vl: Get rid of pipe_video_surface.
[mesa.git] / src / gallium / include / pipe / p_video_state.h
1 /**************************************************************************
2 *
3 * Copyright 2009 Younes Manton.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef PIPE_VIDEO_STATE_H
29 #define PIPE_VIDEO_STATE_H
30
31 #include <pipe/p_defines.h>
32 #include <pipe/p_format.h>
33 #include <pipe/p_state.h>
34 #include <pipe/p_screen.h>
35 #include <util/u_inlines.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 struct pipe_video_rect
42 {
43 unsigned x, y, w, h;
44 };
45
46 enum pipe_mpeg12_picture_type
47 {
48 PIPE_MPEG12_PICTURE_TYPE_FIELD_TOP,
49 PIPE_MPEG12_PICTURE_TYPE_FIELD_BOTTOM,
50 PIPE_MPEG12_PICTURE_TYPE_FRAME
51 };
52
53 enum pipe_mpeg12_macroblock_type
54 {
55 PIPE_MPEG12_MACROBLOCK_TYPE_INTRA,
56 PIPE_MPEG12_MACROBLOCK_TYPE_FWD,
57 PIPE_MPEG12_MACROBLOCK_TYPE_BKWD,
58 PIPE_MPEG12_MACROBLOCK_TYPE_BI,
59
60 PIPE_MPEG12_MACROBLOCK_NUM_TYPES
61 };
62
63 enum pipe_mpeg12_motion_type
64 {
65 PIPE_MPEG12_MOTION_TYPE_FIELD,
66 PIPE_MPEG12_MOTION_TYPE_FRAME,
67 PIPE_MPEG12_MOTION_TYPE_DUALPRIME,
68 PIPE_MPEG12_MOTION_TYPE_16x8
69 };
70
71 enum pipe_mpeg12_dct_type
72 {
73 PIPE_MPEG12_DCT_TYPE_FIELD,
74 PIPE_MPEG12_DCT_TYPE_FRAME
75 };
76
77 struct pipe_macroblock
78 {
79 enum pipe_video_codec codec;
80 };
81
82 struct pipe_mpeg12_macroblock
83 {
84 struct pipe_macroblock base;
85
86 unsigned mbx;
87 unsigned mby;
88 enum pipe_mpeg12_macroblock_type mb_type;
89 enum pipe_mpeg12_motion_type mo_type;
90 enum pipe_mpeg12_dct_type dct_type;
91 signed pmv[2][2][2];
92 unsigned cbp;
93 struct pipe_buffer *blocks;
94 };
95
96 #if 0
97 struct pipe_picture_desc
98 {
99 enum pipe_video_format format;
100 };
101
102 struct pipe_mpeg12_picture_desc
103 {
104 struct pipe_picture_desc base;
105
106 /* TODO: Use bitfields where possible? */
107 struct pipe_surface *forward_reference;
108 struct pipe_surface *backward_reference;
109 unsigned picture_coding_type;
110 unsigned fcode;
111 unsigned intra_dc_precision;
112 unsigned picture_structure;
113 unsigned top_field_first;
114 unsigned frame_pred_frame_dct;
115 unsigned concealment_motion_vectors;
116 unsigned q_scale_type;
117 unsigned intra_vlc_format;
118 unsigned alternate_scan;
119 unsigned full_pel_forward_vector;
120 unsigned full_pel_backward_vector;
121 struct pipe_buffer *intra_quantizer_matrix;
122 struct pipe_buffer *non_intra_quantizer_matrix;
123 struct pipe_buffer *chroma_intra_quantizer_matrix;
124 struct pipe_buffer *chroma_non_intra_quantizer_matrix;
125 };
126 #endif
127
128 #ifdef __cplusplus
129 }
130 #endif
131
132 #endif /* PIPE_VIDEO_STATE_H */