FFmpeg
Loading...
Searching...
No Matches
vf_colormatrix.c
Go to the documentation of this file.
1/*
2 * ColorMatrix v2.2 for Avisynth 2.5.x
3 *
4 * Copyright (C) 2006-2007 Kevin Stone
5 *
6 * ColorMatrix 1.x is Copyright (C) Wilbert Dijkhof
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 * License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/**
24 * @file
25 * ColorMatrix 2.0 is based on the original ColorMatrix filter by Wilbert
26 * Dijkhof. It adds the ability to convert between any of: Rec.709, FCC,
27 * Rec.601, and SMPTE 240M. It also makes pre and post clipping optional,
28 * adds an option to use scaled or non-scaled coefficients, and more...
29 */
30
31#include <float.h>
32#include "avfilter.h"
33#include "filters.h"
34#include "video.h"
35#include "libavutil/opt.h"
36#include "libavutil/pixdesc.h"
37
38#define NS(n) ((n) < 0 ? (int)((n)*65536.0-0.5+DBL_EPSILON) : (int)((n)*65536.0+0.5))
39#define CB(n) av_clip_uint8(n)
40
41static const double yuv_coeff_luma[5][3] = {
42 { +0.7152, +0.0722, +0.2126 }, // Rec.709 (0)
43 { +0.5900, +0.1100, +0.3000 }, // FCC (1)
44 { +0.5870, +0.1140, +0.2990 }, // Rec.601 (ITU-R BT.470-2/SMPTE 170M) (2)
45 { +0.7010, +0.0870, +0.2120 }, // SMPTE 240M (3)
46 { +0.6780, +0.0593, +0.2627 }, // Rec.2020 (4)
47};
48
58
59typedef struct ColorMatrixContext {
60 const AVClass *class;
61 int yuv_convert[25][3][3];
63 int source, dest; ///< ColorMode
64 int mode;
65 int hsub, vsub;
67
68typedef struct ThreadData {
69 AVFrame *dst;
70 const AVFrame *src;
71 int c2;
72 int c3;
73 int c4;
74 int c5;
75 int c6;
76 int c7;
78
79#define OFFSET(x) offsetof(ColorMatrixContext, x)
80#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
81
82static const AVOption colormatrix_options[] = {
83 { "src", "set source color matrix", OFFSET(source), AV_OPT_TYPE_INT, {.i64=COLOR_MODE_NONE}, COLOR_MODE_NONE, COLOR_MODE_COUNT-1, .flags=FLAGS, .unit="color_mode" },
84 { "dst", "set destination color matrix", OFFSET(dest), AV_OPT_TYPE_INT, {.i64=COLOR_MODE_NONE}, COLOR_MODE_NONE, COLOR_MODE_COUNT-1, .flags=FLAGS, .unit="color_mode" },
85 { "bt709", "set BT.709 colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT709}, .flags=FLAGS, .unit="color_mode" },
86 { "fcc", "set FCC colorspace ", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_FCC}, .flags=FLAGS, .unit="color_mode" },
87 { "bt601", "set BT.601 colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT601}, .flags=FLAGS, .unit="color_mode" },
88 { "bt470", "set BT.470 colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT601}, .flags=FLAGS, .unit="color_mode" },
89 { "bt470bg", "set BT.470 colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT601}, .flags=FLAGS, .unit="color_mode" },
90 { "smpte170m", "set SMTPE-170M colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT601}, .flags=FLAGS, .unit="color_mode" },
91 { "smpte240m", "set SMPTE-240M colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_SMPTE240M}, .flags=FLAGS, .unit="color_mode" },
92 { "bt2020", "set BT.2020 colorspace", 0, AV_OPT_TYPE_CONST, {.i64=COLOR_MODE_BT2020}, .flags=FLAGS, .unit="color_mode" },
93 { NULL }
94};
95
97
98#define ma m[0][0]
99#define mb m[0][1]
100#define mc m[0][2]
101#define md m[1][0]
102#define me m[1][1]
103#define mf m[1][2]
104#define mg m[2][0]
105#define mh m[2][1]
106#define mi m[2][2]
107
108#define ima im[0][0]
109#define imb im[0][1]
110#define imc im[0][2]
111#define imd im[1][0]
112#define ime im[1][1]
113#define imf im[1][2]
114#define img im[2][0]
115#define imh im[2][1]
116#define imi im[2][2]
117
118static void inverse3x3(double im[3][3], double m[3][3])
119{
120 double det = ma * (me * mi - mf * mh) - mb * (md * mi - mf * mg) + mc * (md * mh - me * mg);
121 det = 1.0 / det;
122 ima = det * (me * mi - mf * mh);
123 imb = det * (mc * mh - mb * mi);
124 imc = det * (mb * mf - mc * me);
125 imd = det * (mf * mg - md * mi);
126 ime = det * (ma * mi - mc * mg);
127 imf = det * (mc * md - ma * mf);
128 img = det * (md * mh - me * mg);
129 imh = det * (mb * mg - ma * mh);
130 imi = det * (ma * me - mb * md);
131}
132
133static void solve_coefficients(double cm[3][3], double rgb[3][3], double yuv[3][3])
134{
135 int i, j;
136 for (i = 0; i < 3; i++)
137 for (j = 0; j < 3; j++)
138 cm[i][j] = yuv[i][0] * rgb[0][j] + yuv[i][1] * rgb[1][j] + yuv[i][2] * rgb[2][j];
139}
140
142{
144 double yuv_coeff[5][3][3];
145 double rgb_coeffd[5][3][3];
146 double yuv_convertd[25][3][3];
147 double bscale, rscale;
148 int v = 0;
149 int i, j, k;
150 for (i = 0; i < 5; i++) {
151 yuv_coeff[i][0][0] = yuv_coeff_luma[i][0];
152 yuv_coeff[i][0][1] = yuv_coeff_luma[i][1];
153 yuv_coeff[i][0][2] = yuv_coeff_luma[i][2];
154 bscale = 0.5 / (yuv_coeff[i][0][1] - 1.0);
155 rscale = 0.5 / (yuv_coeff[i][0][2] - 1.0);
156 yuv_coeff[i][1][0] = bscale * yuv_coeff[i][0][0];
157 yuv_coeff[i][1][1] = 0.5;
158 yuv_coeff[i][1][2] = bscale * yuv_coeff[i][0][2];
159 yuv_coeff[i][2][0] = rscale * yuv_coeff[i][0][0];
160 yuv_coeff[i][2][1] = rscale * yuv_coeff[i][0][1];
161 yuv_coeff[i][2][2] = 0.5;
162 }
163 for (i = 0; i < 5; i++)
164 inverse3x3(rgb_coeffd[i], yuv_coeff[i]);
165 for (i = 0; i < 5; i++) {
166 for (j = 0; j < 5; j++) {
167 solve_coefficients(yuv_convertd[v], rgb_coeffd[i], yuv_coeff[j]);
168 for (k = 0; k < 3; k++) {
169 color->yuv_convert[v][k][0] = NS(yuv_convertd[v][k][0]);
170 color->yuv_convert[v][k][1] = NS(yuv_convertd[v][k][1]);
171 color->yuv_convert[v][k][2] = NS(yuv_convertd[v][k][2]);
172 }
173 if (color->yuv_convert[v][0][0] != 65536 || color->yuv_convert[v][1][0] != 0 ||
174 color->yuv_convert[v][2][0] != 0) {
175 av_log(ctx, AV_LOG_ERROR, "error calculating conversion coefficients\n");
176 }
177 v++;
178 }
179 }
180}
181
182static const char * const color_modes[] = {"bt709", "fcc", "bt601", "smpte240m", "bt2020"};
183
185{
187
188 if (color->dest == COLOR_MODE_NONE) {
189 av_log(ctx, AV_LOG_ERROR, "Unspecified destination color space\n");
190 return AVERROR(EINVAL);
191 }
192
193 if (color->source == color->dest) {
194 av_log(ctx, AV_LOG_ERROR, "Source and destination color space must not be identical\n");
195 return AVERROR(EINVAL);
196 }
197
199
200 return 0;
201}
202
203static int process_slice_uyvy422(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
204{
205 const ThreadData *td = arg;
206 const AVFrame *src = td->src;
207 AVFrame *dst = td->dst;
208 const int height = src->height;
209 const int width = src->width*2;
210 const int src_pitch = src->linesize[0];
211 const int dst_pitch = dst->linesize[0];
212 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
213 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
214 const unsigned char *srcp = src->data[0] + slice_start * src_pitch;
215 unsigned char *dstp = dst->data[0] + slice_start * dst_pitch;
216 const int c2 = td->c2;
217 const int c3 = td->c3;
218 const int c4 = td->c4;
219 const int c5 = td->c5;
220 const int c6 = td->c6;
221 const int c7 = td->c7;
222 int x, y;
223
224 for (y = slice_start; y < slice_end; y++) {
225 for (x = 0; x < width; x += 4) {
226 const int u = srcp[x + 0] - 128;
227 const int v = srcp[x + 2] - 128;
228 const int uvval = c2 * u + c3 * v + 1081344;
229 dstp[x + 0] = CB((c4 * u + c5 * v + 8421376) >> 16);
230 dstp[x + 1] = CB((65536 * (srcp[x + 1] - 16) + uvval) >> 16);
231 dstp[x + 2] = CB((c6 * u + c7 * v + 8421376) >> 16);
232 dstp[x + 3] = CB((65536 * (srcp[x + 3] - 16) + uvval) >> 16);
233 }
234 srcp += src_pitch;
235 dstp += dst_pitch;
236 }
237
238 return 0;
239}
240
241static int process_slice_yuv444p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
242{
243 const ThreadData *td = arg;
244 const AVFrame *src = td->src;
245 AVFrame *dst = td->dst;
246 const int height = src->height;
247 const int width = src->width;
248 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
249 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
250 const int src_pitchY = src->linesize[0];
251 const int src_pitchUV = src->linesize[1];
252 const unsigned char *srcpU = src->data[1] + slice_start * src_pitchUV;
253 const unsigned char *srcpV = src->data[2] + slice_start * src_pitchUV;
254 const unsigned char *srcpY = src->data[0] + slice_start * src_pitchY;
255 const int dst_pitchY = dst->linesize[0];
256 const int dst_pitchUV = dst->linesize[1];
257 unsigned char *dstpU = dst->data[1] + slice_start * dst_pitchUV;
258 unsigned char *dstpV = dst->data[2] + slice_start * dst_pitchUV;
259 unsigned char *dstpY = dst->data[0] + slice_start * dst_pitchY;
260 const int c2 = td->c2;
261 const int c3 = td->c3;
262 const int c4 = td->c4;
263 const int c5 = td->c5;
264 const int c6 = td->c6;
265 const int c7 = td->c7;
266 int x, y;
267
268 for (y = slice_start; y < slice_end; y++) {
269 for (x = 0; x < width; x++) {
270 const int u = srcpU[x] - 128;
271 const int v = srcpV[x] - 128;
272 const int uvval = c2 * u + c3 * v + 1081344;
273 dstpY[x] = CB((65536 * (srcpY[x] - 16) + uvval) >> 16);
274 dstpU[x] = CB((c4 * u + c5 * v + 8421376) >> 16);
275 dstpV[x] = CB((c6 * u + c7 * v + 8421376) >> 16);
276 }
277 srcpY += src_pitchY;
278 dstpY += dst_pitchY;
279 srcpU += src_pitchUV;
280 srcpV += src_pitchUV;
281 dstpU += dst_pitchUV;
282 dstpV += dst_pitchUV;
283 }
284
285 return 0;
286}
287
288static int process_slice_yuv422p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
289{
290 const ThreadData *td = arg;
291 const AVFrame *src = td->src;
292 AVFrame *dst = td->dst;
293 const int height = src->height;
294 const int width = src->width;
295 const int slice_start = ff_slice_pos(height, jobnr, nb_jobs);
296 const int slice_end = ff_slice_pos(height, jobnr + 1, nb_jobs);
297 const int src_pitchY = src->linesize[0];
298 const int src_pitchUV = src->linesize[1];
299 const unsigned char *srcpU = src->data[1] + slice_start * src_pitchUV;
300 const unsigned char *srcpV = src->data[2] + slice_start * src_pitchUV;
301 const unsigned char *srcpY = src->data[0] + slice_start * src_pitchY;
302 const int dst_pitchY = dst->linesize[0];
303 const int dst_pitchUV = dst->linesize[1];
304 unsigned char *dstpU = dst->data[1] + slice_start * dst_pitchUV;
305 unsigned char *dstpV = dst->data[2] + slice_start * dst_pitchUV;
306 unsigned char *dstpY = dst->data[0] + slice_start * dst_pitchY;
307 const int c2 = td->c2;
308 const int c3 = td->c3;
309 const int c4 = td->c4;
310 const int c5 = td->c5;
311 const int c6 = td->c6;
312 const int c7 = td->c7;
313 int x, y;
314
315 for (y = slice_start; y < slice_end; y++) {
316 for (x = 0; x < width; x += 2) {
317 const int u = srcpU[x >> 1] - 128;
318 const int v = srcpV[x >> 1] - 128;
319 const int uvval = c2 * u + c3 * v + 1081344;
320 dstpY[x + 0] = CB((65536 * (srcpY[x + 0] - 16) + uvval) >> 16);
321 dstpY[x + 1] = CB((65536 * (srcpY[x + 1] - 16) + uvval) >> 16);
322 dstpU[x >> 1] = CB((c4 * u + c5 * v + 8421376) >> 16);
323 dstpV[x >> 1] = CB((c6 * u + c7 * v + 8421376) >> 16);
324 }
325 srcpY += src_pitchY;
326 dstpY += dst_pitchY;
327 srcpU += src_pitchUV;
328 srcpV += src_pitchUV;
329 dstpU += dst_pitchUV;
330 dstpV += dst_pitchUV;
331 }
332
333 return 0;
334}
335
336static int process_slice_yuv420p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
337{
338 const ThreadData *td = arg;
339 const AVFrame *src = td->src;
340 AVFrame *dst = td->dst;
341 const int height = FFALIGN(src->height, 2) >> 1;
342 const int width = src->width;
343 const int slice_start = (ff_slice_pos(height, jobnr, nb_jobs)) << 1;
344 const int slice_end = (ff_slice_pos(height, jobnr + 1, nb_jobs)) << 1;
345 const int src_pitchY = src->linesize[0];
346 const int src_pitchUV = src->linesize[1];
347 const int dst_pitchY = dst->linesize[0];
348 const int dst_pitchUV = dst->linesize[1];
349 const unsigned char *srcpY = src->data[0] + src_pitchY * slice_start;
350 const unsigned char *srcpU = src->data[1] + src_pitchUV * (slice_start >> 1);
351 const unsigned char *srcpV = src->data[2] + src_pitchUV * (slice_start >> 1);
352 const unsigned char *srcpN = src->data[0] + src_pitchY * (slice_start + 1);
353 unsigned char *dstpU = dst->data[1] + dst_pitchUV * (slice_start >> 1);
354 unsigned char *dstpV = dst->data[2] + dst_pitchUV * (slice_start >> 1);
355 unsigned char *dstpY = dst->data[0] + dst_pitchY * slice_start;
356 unsigned char *dstpN = dst->data[0] + dst_pitchY * (slice_start + 1);
357 const int c2 = td->c2;
358 const int c3 = td->c3;
359 const int c4 = td->c4;
360 const int c5 = td->c5;
361 const int c6 = td->c6;
362 const int c7 = td->c7;
363 int x, y;
364
365 for (y = slice_start; y < slice_end; y += 2) {
366 for (x = 0; x < width; x += 2) {
367 const int u = srcpU[x >> 1] - 128;
368 const int v = srcpV[x >> 1] - 128;
369 const int uvval = c2 * u + c3 * v + 1081344;
370 dstpY[x + 0] = CB((65536 * (srcpY[x + 0] - 16) + uvval) >> 16);
371 dstpY[x + 1] = CB((65536 * (srcpY[x + 1] - 16) + uvval) >> 16);
372 dstpN[x + 0] = CB((65536 * (srcpN[x + 0] - 16) + uvval) >> 16);
373 dstpN[x + 1] = CB((65536 * (srcpN[x + 1] - 16) + uvval) >> 16);
374 dstpU[x >> 1] = CB((c4 * u + c5 * v + 8421376) >> 16);
375 dstpV[x >> 1] = CB((c6 * u + c7 * v + 8421376) >> 16);
376 }
377 srcpY += src_pitchY << 1;
378 dstpY += dst_pitchY << 1;
379 srcpN += src_pitchY << 1;
380 dstpN += dst_pitchY << 1;
381 srcpU += src_pitchUV;
382 srcpV += src_pitchUV;
383 dstpU += dst_pitchUV;
384 dstpV += dst_pitchUV;
385 }
386
387 return 0;
388}
389
390static int config_input(AVFilterLink *inlink)
391{
392 AVFilterContext *ctx = inlink->dst;
394 const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
395
396 color->hsub = pix_desc->log2_chroma_w;
397 color->vsub = pix_desc->log2_chroma_h;
398
399 av_log(ctx, AV_LOG_VERBOSE, "%s -> %s\n",
400 color_modes[color->source], color_modes[color->dest]);
401
402 return 0;
403}
404
405static int filter_frame(AVFilterLink *link, AVFrame *in)
406{
407 AVFilterContext *ctx = link->dst;
409 AVFilterLink *outlink = ctx->outputs[0];
410 AVFrame *out;
411 ThreadData td = {0};
412
413 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
414 if (!out) {
415 av_frame_free(&in);
416 return AVERROR(ENOMEM);
417 }
419
420 if (color->source == COLOR_MODE_NONE) {
421 enum AVColorSpace cs = in->colorspace;
422 enum ColorMode source;
423
424 switch(cs) {
425 case AVCOL_SPC_BT709 : source = COLOR_MODE_BT709 ; break;
426 case AVCOL_SPC_FCC : source = COLOR_MODE_FCC ; break;
427 case AVCOL_SPC_SMPTE240M : source = COLOR_MODE_SMPTE240M ; break;
428 case AVCOL_SPC_BT470BG : source = COLOR_MODE_BT601 ; break;
429 case AVCOL_SPC_SMPTE170M : source = COLOR_MODE_BT601 ; break;
430 case AVCOL_SPC_BT2020_NCL: source = COLOR_MODE_BT2020 ; break;
431 case AVCOL_SPC_BT2020_CL : source = COLOR_MODE_BT2020 ; break;
432 default :
433 av_log(ctx, AV_LOG_ERROR, "Input frame does not specify a supported colorspace, and none has been specified as source either\n");
435 return AVERROR(EINVAL);
436 }
437 color->mode = source * 5 + color->dest;
438 } else
439 color->mode = color->source * 5 + color->dest;
440
441 switch(color->dest) {
442 case COLOR_MODE_BT709 : out->colorspace = AVCOL_SPC_BT709 ; break;
443 case COLOR_MODE_FCC : out->colorspace = AVCOL_SPC_FCC ; break;
444 case COLOR_MODE_SMPTE240M: out->colorspace = AVCOL_SPC_SMPTE240M ; break;
445 case COLOR_MODE_BT601 : out->colorspace = AVCOL_SPC_BT470BG ; break;
446 case COLOR_MODE_BT2020 : out->colorspace = AVCOL_SPC_BT2020_NCL; break;
447 }
448
449 td.src = in;
450 td.dst = out;
451 td.c2 = color->yuv_convert[color->mode][0][1];
452 td.c3 = color->yuv_convert[color->mode][0][2];
453 td.c4 = color->yuv_convert[color->mode][1][1];
454 td.c5 = color->yuv_convert[color->mode][1][2];
455 td.c6 = color->yuv_convert[color->mode][2][1];
456 td.c7 = color->yuv_convert[color->mode][2][2];
457
458 if (in->format == AV_PIX_FMT_YUV444P)
461 else if (in->format == AV_PIX_FMT_YUV422P)
464 else if (in->format == AV_PIX_FMT_YUV420P)
467 else
470
471 av_frame_free(&in);
472 return ff_filter_frame(outlink, out);
473}
474
476 {
477 .name = "default",
478 .type = AVMEDIA_TYPE_VIDEO,
479 .config_props = config_input,
480 .filter_frame = filter_frame,
481 },
482};
483
485 .p.name = "colormatrix",
486 .p.description = NULL_IF_CONFIG_SMALL("Convert color matrix."),
487 .p.priv_class = &colormatrix_class,
489 .priv_size = sizeof(ColorMatrixContext),
490 .init = init,
497};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int config_input(AVFilterLink *inlink)
const FFFilter ff_vf_colormatrix
ColorMode
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition avfilter.c:1696
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition avfilter.c:846
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define mb(name)
Definition cbs_lcevc.c:95
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define cm
Definition dvbsubdec.c:40
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define u(width, name, range_min, range_max)
Definition cbs_apv.c:68
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static int ff_slice_pos(int total, int jobnr, int nb_jobs)
Compute the boundary index for a slice when work of size total is split into nb_jobs slices.
Definition filters.h:763
#define FILTER_PIXFMTS(...)
Definition filters.h:250
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define FFMIN(a, b)
Definition macros.h:49
#define FFALIGN(x, a)
Definition macros.h:78
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
Definition mpeg12dec.c:1697
static const uint64_t c2
Definition murmur3.c:53
AVOptions.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_UYVY422
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition pixfmt.h:88
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
AVColorSpace
YUV colorspace type.
Definition pixfmt.h:706
@ AVCOL_SPC_BT709
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / derived in SMPTE RP 177 Annex B
Definition pixfmt.h:708
@ AVCOL_SPC_BT470BG
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601
Definition pixfmt.h:712
@ AVCOL_SPC_BT2020_CL
ITU-R BT2020 constant luminance system.
Definition pixfmt.h:718
@ AVCOL_SPC_BT2020_NCL
ITU-R BT2020 non-constant luminance system.
Definition pixfmt.h:717
@ AVCOL_SPC_SMPTE170M
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC / functionally identical to above
Definition pixfmt.h:713
@ AVCOL_SPC_FCC
FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
Definition pixfmt.h:711
@ AVCOL_SPC_SMPTE240M
derived from 170M primaries and D65 white point, 170M is derived from BT470 System M's primaries
Definition pixfmt.h:714
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int height
Definition frame.h:544
enum AVColorSpace colorspace
YUV colorspace type.
Definition frame.h:734
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition frame.h:559
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition pixdesc.h:80
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition pixdesc.h:89
int dest
ColorMode.
int yuv_convert[25][3][3]
Used for passing data between threads.
Definition dsddec.c:71
const uint8_t * src
Definition vf_bm3d.c:54
AVFrame * dst
Definition vf_blend.c:59
Definition rpzaenc.c:60
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
static const double yuv_coeff_luma[5][3]
@ COLOR_MODE_BT601
@ COLOR_MODE_FCC
@ COLOR_MODE_BT709
@ COLOR_MODE_SMPTE240M
@ COLOR_MODE_COUNT
@ COLOR_MODE_NONE
@ COLOR_MODE_BT2020
#define imd
#define mc
#define ma
static int process_slice_yuv420p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define mf
static int process_slice_yuv444p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define imb
static int process_slice_yuv422p(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int filter_frame(AVFilterLink *link, AVFrame *in)
static void calc_coefficients(AVFilterContext *ctx)
#define imc
static int config_input(AVFilterLink *inlink)
#define mg
#define NS(n)
static const char *const color_modes[]
static void inverse3x3(double im[3][3], double m[3][3])
static const AVOption colormatrix_options[]
#define mi
#define md
static void solve_coefficients(double cm[3][3], double rgb[3][3], double yuv[3][3])
#define CB(n)
#define mh
#define imf
#define me
static const AVFilterPad colormatrix_inputs[]
#define img
#define OFFSET(x)
#define imh
static int process_slice_uyvy422(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define ima
#define ime
#define imi
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
Definition dec.c:844