/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Laurent Pinchart * * YUV_packed.frag - Fragment shader code for YUYV packed formats */ #ifdef GL_ES precision mediump float; #endif varying vec2 textureOut; uniform sampler2D tex_y; uniform float tex_stepx; void main(void) { mat3 yuv2rgb_bt601_mat = mat3( vec3(1.164, 1.164, 1.164), vec3(0.000, -0.392, 2.017), vec3(1.596, -0.813, 0.000) ); vec3 yuv2rgb_bt601_offset = vec3(0.063, 0.500, 0.500); /* * The sampler won't interpolate the texture correctly along the X axis, * as each RGBA pixel effectively stores two pixels. We thus need to * interpolate manually. * * In integer texture coordinates, the Y values are layed out in the * texture memory as follows: * * ...| Y U Y V | Y U Y V | Y U Y V |... * ...| R G B A | R G B A | R G B A |... * ^ ^ ^ ^ ^ ^ * | | | | | | * n-1 n-0.5 n n+0.5 n+1 n+1.5 * * For a texture location x in the interval [n, n+1[, sample the left * and right pixels at n and n+1, and interpolate them with * * left.r * (1 - a) + left.b * a if fract(x) < 0.5 * left.b * (1 - a) + right.r * a if fract(x) >= 0.5 * * with a = fract(x * 2) which can also be written * * a = fract(x) * 2 if fract(x) < 0.5 * a = fract(x) * 2 - 1 if fract(x) >= 0.5 */ vec2 pos = textureOut; float f_x = fract(pos.x / tex_stepx); vec4 left = texture2D(tex_y, vec2(pos.x - f_x * tex_stepx, pos.y)); vec4 right = texture2D(tex_y, vec2(pos.x + (1.0 - f_x) * tex_stepx , pos.y)); #if defined(YUV_PATTERN_UYVY) float y_left = mix(left.g, left.a, f_x * 2.0); float y_right = mix(left.a, right.g, f_x * 2.0 - 1.0); vec2 uv = mix(left.rb, right.rb, f_x); #elif defined(YUV_PATTERN_VYUY) float y_left = mix(left.g, left.a, f_x * 2.0); float y_right = mix(left.a, right.g, f_x * 2.0 - 1.0); vec2 uv = mix(left.br, right.br, f_x); #elif defined(YUV_PATTERN_YUYV) float y_left = mix(left.r, left.b, f_x * 2.0); float y_right = mix(left.b, right.r, f_x * 2.0 - 1.0); vec2 uv = mix(left.ga, right.ga, f_x); #elif defined(YUV_PATTERN_YVYU) float y_left = mix(left.r, left.b, f_x * 2.0); float y_right = mix(left.b, right.r, f_x * 2.0 - 1.0); vec2 uv = mix(left.ag, right.ag, f_x); #else #error Invalid pattern #endif float y = mix(y_left, y_right, step(0.5, f_x)); vec3 rgb = yuv2rgb_bt601_mat * (vec3(y, uv) - yuv2rgb_bt601_offset); gl_FragColor = vec4(rgb, 1.0); } e477ac1efc22a0bdddb177199cf2fb9'>src/libcamera/event_dispatcher_poll.cpp
blob: 9ab85da7d75d0ce6695aa7ee2dbc14e7aaf13d36 (plain)
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308