-
Notifications
You must be signed in to change notification settings - Fork 80
/
rgba.c
287 lines (246 loc) · 7.91 KB
/
rgba.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*
* Copyright (c) 2013-2014 Jens Kuske <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <string.h>
#include <cedrus/cedrus.h>
#include <sys/ioctl.h>
#include "vdpau_private.h"
#include "rgba.h"
#include "rgba_pixman.h"
#include "rgba_g2d.h"
static void dirty_add_rect(VdpRect *dirty, const VdpRect *rect)
{
dirty->x0 = min(dirty->x0, rect->x0);
dirty->y0 = min(dirty->y0, rect->y0);
dirty->x1 = max(dirty->x1, rect->x1);
dirty->y1 = max(dirty->y1, rect->y1);
}
static int dirty_in_rect(const VdpRect *dirty, const VdpRect *rect)
{
return (dirty->x0 >= rect->x0) && (dirty->y0 >= rect->y0) &&
(dirty->x1 <= rect->x1) && (dirty->y1 <= rect->y1);
}
VdpStatus rgba_create(rgba_surface_t *rgba,
device_ctx_t *device,
uint32_t width,
uint32_t height,
VdpRGBAFormat format)
{
if (format != VDP_RGBA_FORMAT_B8G8R8A8 && format != VDP_RGBA_FORMAT_R8G8B8A8)
return VDP_STATUS_INVALID_RGBA_FORMAT;
if (width < 1 || width > 8192 || height < 1 || height > 8192)
return VDP_STATUS_INVALID_SIZE;
rgba->device = device;
rgba->width = width;
rgba->height = height;
rgba->format = format;
if (device->osd_enabled)
{
rgba->data = cedrus_mem_alloc(device->cedrus, width * height * 4);
if (!rgba->data)
return VDP_STATUS_RESOURCES;
if(!device->g2d_enabled)
vdp_pixman_ref(rgba);
rgba->dirty.x0 = width;
rgba->dirty.y0 = height;
rgba->dirty.x1 = 0;
rgba->dirty.y1 = 0;
rgba_fill(rgba, NULL, 0x00000000);
}
return VDP_STATUS_OK;
}
void rgba_destroy(rgba_surface_t *rgba)
{
if (rgba->device->osd_enabled)
{
if(!rgba->device->g2d_enabled)
vdp_pixman_unref(rgba);
cedrus_mem_free(rgba->data);
}
}
VdpStatus rgba_put_bits_native(rgba_surface_t *rgba,
void const *const *source_data,
uint32_t const *source_pitches,
VdpRect const *destination_rect)
{
if (!rgba->device->osd_enabled)
return VDP_STATUS_OK;
VdpRect d_rect = {0, 0, rgba->width, rgba->height};
if (destination_rect)
d_rect = *destination_rect;
if ((rgba->flags & RGBA_FLAG_NEEDS_CLEAR) && !dirty_in_rect(&rgba->dirty, &d_rect))
rgba_clear(rgba);
if (0 == d_rect.x0 && rgba->width == d_rect.x1 && source_pitches[0] == d_rect.x1 * 4) {
// full width
const int bytes_to_copy =
(d_rect.x1 - d_rect.x0) * (d_rect.y1 - d_rect.y0) * 4;
memcpy(cedrus_mem_get_pointer(rgba->data) + d_rect.y0 * rgba->width * 4,
source_data[0], bytes_to_copy);
} else {
const unsigned int bytes_in_line = (d_rect.x1-d_rect.x0) * 4;
unsigned int y;
for (y = d_rect.y0; y < d_rect.y1; y ++) {
memcpy(cedrus_mem_get_pointer(rgba->data) + (y * rgba->width + d_rect.x0) * 4,
source_data[0] + (y - d_rect.y0) * source_pitches[0],
bytes_in_line);
}
}
rgba->flags &= ~RGBA_FLAG_NEEDS_CLEAR;
rgba->flags |= RGBA_FLAG_DIRTY | RGBA_FLAG_NEEDS_FLUSH;
dirty_add_rect(&rgba->dirty, &d_rect);
return VDP_STATUS_OK;
}
VdpStatus rgba_put_bits_indexed(rgba_surface_t *rgba,
VdpIndexedFormat source_indexed_format,
void const *const *source_data,
uint32_t const *source_pitch,
VdpRect const *destination_rect,
VdpColorTableFormat color_table_format,
void const *color_table)
{
if (color_table_format != VDP_COLOR_TABLE_FORMAT_B8G8R8X8)
return VDP_STATUS_INVALID_COLOR_TABLE_FORMAT;
if (!rgba->device->osd_enabled)
return VDP_STATUS_OK;
int x, y;
const uint32_t *colormap = color_table;
const uint8_t *src_ptr = source_data[0];
uint32_t *dst_ptr = cedrus_mem_get_pointer(rgba->data);
VdpRect d_rect = {0, 0, rgba->width, rgba->height};
if (destination_rect)
d_rect = *destination_rect;
if ((rgba->flags & RGBA_FLAG_NEEDS_CLEAR) && !dirty_in_rect(&rgba->dirty, &d_rect))
rgba_clear(rgba);
dst_ptr += d_rect.y0 * rgba->width;
dst_ptr += d_rect.x0;
for (y = 0; y < d_rect.y1 - d_rect.y0; y++)
{
for (x = 0; x < d_rect.x1 - d_rect.x0; x++)
{
uint8_t i, a;
switch (source_indexed_format)
{
case VDP_INDEXED_FORMAT_I8A8:
i = src_ptr[x * 2];
a = src_ptr[x * 2 + 1];
break;
case VDP_INDEXED_FORMAT_A8I8:
a = src_ptr[x * 2];
i = src_ptr[x * 2 + 1];
break;
default:
return VDP_STATUS_INVALID_INDEXED_FORMAT;
}
dst_ptr[x] = (colormap[i] & 0x00ffffff) | (a << 24);
}
src_ptr += source_pitch[0];
dst_ptr += rgba->width;
}
rgba->flags &= ~RGBA_FLAG_NEEDS_CLEAR;
rgba->flags |= RGBA_FLAG_DIRTY | RGBA_FLAG_NEEDS_FLUSH;
dirty_add_rect(&rgba->dirty, &d_rect);
return VDP_STATUS_OK;
}
VdpStatus rgba_render_surface(rgba_surface_t *dest,
VdpRect const *destination_rect,
rgba_surface_t *src,
VdpRect const *source_rect,
VdpColor const *colors,
VdpOutputSurfaceRenderBlendState const *blend_state,
uint32_t flags)
{
if (!dest->device->osd_enabled)
return VDP_STATUS_OK;
if (colors || flags)
VDPAU_DBG_ONCE("%s: colors and flags not implemented!", __func__);
// set up source/destination rects using defaults where required
VdpRect s_rect = {0, 0, 0, 0};
VdpRect d_rect = {0, 0, dest->width, dest->height};
s_rect.x1 = src ? src->width : 1;
s_rect.y1 = src ? src->height : 1;
if (source_rect)
s_rect = *source_rect;
if (destination_rect)
d_rect = *destination_rect;
// ignore zero-sized surfaces (also workaround for g2d driver bug)
if (s_rect.x0 == s_rect.x1 || s_rect.y0 == s_rect.y1 ||
d_rect.x0 == d_rect.x1 || d_rect.y0 == d_rect.y1)
return VDP_STATUS_OK;
if ((dest->flags & RGBA_FLAG_NEEDS_CLEAR) && !dirty_in_rect(&dest->dirty, &d_rect))
rgba_clear(dest);
if (!src)
rgba_fill(dest, &d_rect, 0xffffffff);
else
rgba_blit(dest, &d_rect, src, &s_rect);
dest->flags &= ~RGBA_FLAG_NEEDS_CLEAR;
dest->flags |= RGBA_FLAG_DIRTY;
dirty_add_rect(&dest->dirty, &d_rect);
return VDP_STATUS_OK;
}
void rgba_clear(rgba_surface_t *rgba)
{
if (!(rgba->flags & RGBA_FLAG_DIRTY))
return;
rgba_fill(rgba, &rgba->dirty, 0x00000000);
rgba->flags &= ~(RGBA_FLAG_DIRTY | RGBA_FLAG_NEEDS_CLEAR);
rgba->dirty.x0 = rgba->width;
rgba->dirty.y0 = rgba->height;
rgba->dirty.x1 = 0;
rgba->dirty.y1 = 0;
}
void rgba_fill(rgba_surface_t *dest, const VdpRect *dest_rect, uint32_t color)
{
if (dest->device->osd_enabled)
{
if(dest->device->g2d_enabled)
{
rgba_flush(dest);
g2d_fill(dest, dest_rect, color);
}
else
{
vdp_pixman_fill(dest, dest_rect, color);
dest->flags |= RGBA_FLAG_NEEDS_FLUSH;
}
}
}
void rgba_blit(rgba_surface_t *dest, const VdpRect *dest_rect, rgba_surface_t *src, const VdpRect *src_rect)
{
if (dest->device->osd_enabled)
{
if(dest->device->g2d_enabled)
{
rgba_flush(dest);
rgba_flush(src);
g2d_blit(dest, dest_rect, src, src_rect);
}
else
{
vdp_pixman_blit(dest, dest_rect, src, src_rect);
dest->flags |= RGBA_FLAG_NEEDS_FLUSH;
}
}
}
void rgba_flush(rgba_surface_t *rgba)
{
if (rgba->flags & RGBA_FLAG_NEEDS_FLUSH)
{
cedrus_mem_flush_cache(rgba->data);
rgba->flags &= ~RGBA_FLAG_NEEDS_FLUSH;
}
}