FFmpeg
vf_chromanr.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Paul B Mahol
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "libavutil/avstring.h"
22 #include "libavutil/imgutils.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/pixdesc.h"
25 
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "video.h"
30 
31 typedef struct ChromaNRContext {
32  const AVClass *class;
33 
34  float threshold;
35  float threshold_y;
36  float threshold_u;
37  float threshold_v;
38  int distance;
39  int thres;
40  int thres_y;
41  int thres_u;
42  int thres_v;
43  int sizew;
44  int sizeh;
45  int stepw;
46  int steph;
47  int depth;
48  int chroma_w;
49  int chroma_h;
50  int nb_planes;
51  int linesize[4];
52  int planeheight[4];
53  int planewidth[4];
54 
56  int (*filter_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
58 
59 static const enum AVPixelFormat pix_fmts[] = {
73 };
74 
75 #define MANHATTAN_DISTANCE(x, y, z) ((x) + (y) + (z))
76 #define EUCLIDEAN_DISTANCE(x, y, z) (sqrtf((x)*(x) + (y)*(y) + (z)*(z)))
77 
78 #define FILTER_FUNC(distance, name, ctype, type, fun, extra) \
79 static int distance ## _slice##name(AVFilterContext *ctx, void *arg, \
80  int jobnr, int nb_jobs) \
81 { \
82  ChromaNRContext *s = ctx->priv; \
83  AVFrame *in = arg; \
84  AVFrame *out = s->out; \
85  const int in_ylinesize = in->linesize[0]; \
86  const int in_ulinesize = in->linesize[1]; \
87  const int in_vlinesize = in->linesize[2]; \
88  const int out_ulinesize = out->linesize[1]; \
89  const int out_vlinesize = out->linesize[2]; \
90  const int chroma_w = s->chroma_w; \
91  const int chroma_h = s->chroma_h; \
92  const int stepw = s->stepw; \
93  const int steph = s->steph; \
94  const int sizew = s->sizew; \
95  const int sizeh = s->sizeh; \
96  const int thres = s->thres; \
97  const int thres_y = s->thres_y; \
98  const int thres_u = s->thres_u; \
99  const int thres_v = s->thres_v; \
100  const int h = s->planeheight[1]; \
101  const int w = s->planewidth[1]; \
102  const int slice_start = (h * jobnr) / nb_jobs; \
103  const int slice_end = (h * (jobnr+1)) / nb_jobs; \
104  type *out_uptr = (type *)(out->data[1] + slice_start * out_ulinesize); \
105  type *out_vptr = (type *)(out->data[2] + slice_start * out_vlinesize); \
106  \
107  { \
108  const int h = s->planeheight[0]; \
109  const int slice_start = (h * jobnr) / nb_jobs; \
110  const int slice_end = (h * (jobnr+1)) / nb_jobs; \
111  \
112  av_image_copy_plane(out->data[0] + slice_start * out->linesize[0], \
113  out->linesize[0], \
114  in->data[0] + slice_start * in->linesize[0], \
115  in->linesize[0], \
116  s->linesize[0], slice_end - slice_start); \
117  \
118  if (s->nb_planes == 4) { \
119  av_image_copy_plane(out->data[3] + slice_start * out->linesize[3], \
120  out->linesize[3], \
121  in->data[3] + slice_start * in->linesize[3], \
122  in->linesize[3], \
123  s->linesize[3], slice_end - slice_start); \
124  } \
125  } \
126  \
127  for (int y = slice_start; y < slice_end; y++) { \
128  const type *in_yptr = (const type *)(in->data[0] + y * chroma_h * in_ylinesize); \
129  const type *in_uptr = (const type *)(in->data[1] + y * in_ulinesize); \
130  const type *in_vptr = (const type *)(in->data[2] + y * in_vlinesize); \
131  const int yystart = FFMAX(0, y - sizeh); \
132  const int yystop = FFMIN(h - 1, y + sizeh); \
133  \
134  for (int x = 0; x < w; x++) { \
135  const int xxstart = FFMAX(0, x - sizew); \
136  const int xxstop = FFMIN(w - 1, x + sizew); \
137  const int cy = in_yptr[x * chroma_w]; \
138  const int cu = in_uptr[x]; \
139  const int cv = in_vptr[x]; \
140  int su = cu; \
141  int sv = cv; \
142  int cn = 1; \
143  \
144  for (int yy = yystart; yy <= yystop; yy += steph) { \
145  const type *in_yptr = (const type *)(in->data[0] + yy * chroma_h * in_ylinesize); \
146  const type *in_uptr = (const type *)(in->data[1] + yy * in_ulinesize); \
147  const type *in_vptr = (const type *)(in->data[2] + yy * in_vlinesize); \
148  \
149  for (int xx = xxstart; xx <= xxstop; xx += stepw) { \
150  const ctype Y = in_yptr[xx * chroma_w]; \
151  const ctype U = in_uptr[xx]; \
152  const ctype V = in_vptr[xx]; \
153  const ctype cyY = FFABS(cy - Y); \
154  const ctype cuU = FFABS(cu - U); \
155  const ctype cvV = FFABS(cv - V); \
156  \
157  if (extra && fun(cyY, cuU, cvV) < thres && \
158  cuU < thres_u && cvV < thres_v && \
159  cyY < thres_y) { \
160  su += U; \
161  sv += V; \
162  cn++; \
163  } else if (fun(cyY, cuU, cvV) < thres) { \
164  su += U; \
165  sv += V; \
166  cn++; \
167  } \
168  } \
169  } \
170  \
171  out_uptr[x] = (su + (cn >> 1)) / cn; \
172  out_vptr[x] = (sv + (cn >> 1)) / cn; \
173  } \
174  \
175  out_uptr += out_ulinesize / sizeof(type); \
176  out_vptr += out_vlinesize / sizeof(type); \
177  } \
178  \
179  return 0; \
180 }
181 
182 FILTER_FUNC(manhattan, 8, int, uint8_t, MANHATTAN_DISTANCE, 0)
183 FILTER_FUNC(manhattan, 16, int, uint16_t, MANHATTAN_DISTANCE, 0)
184 
185 FILTER_FUNC(euclidean, 8, int, uint8_t, EUCLIDEAN_DISTANCE, 0)
186 FILTER_FUNC(euclidean, 16, int64_t, uint16_t, EUCLIDEAN_DISTANCE, 0)
187 
188 FILTER_FUNC(manhattan_e, 8, int, uint8_t, MANHATTAN_DISTANCE, 1)
189 FILTER_FUNC(manhattan_e, 16, int, uint16_t, MANHATTAN_DISTANCE, 1)
190 
191 FILTER_FUNC(euclidean_e, 8, int, uint8_t, EUCLIDEAN_DISTANCE, 1)
192 FILTER_FUNC(euclidean_e, 16, int64_t, uint16_t, EUCLIDEAN_DISTANCE, 1)
193 
195 {
196  AVFilterContext *ctx = inlink->dst;
197  AVFilterLink *outlink = ctx->outputs[0];
198  ChromaNRContext *s = ctx->priv;
199  AVFrame *out;
200 
201  switch (s->distance) {
202  case 0:
203  s->filter_slice = s->depth <= 8 ? manhattan_slice8 : manhattan_slice16;
204  break;
205  case 1:
206  s->filter_slice = s->depth <= 8 ? euclidean_slice8 : euclidean_slice16;
207  break;
208  }
209 
210  s->thres = s->threshold * (1 << (s->depth - 8));
211  s->thres_y = s->threshold_y * (1 << (s->depth - 8));
212  s->thres_u = s->threshold_u * (1 << (s->depth - 8));
213  s->thres_v = s->threshold_v * (1 << (s->depth - 8));
214 
215  if (s->thres_y < 200.f || s->thres_u < 200.f || s->thres_v < 200.f) {
216  switch (s->distance) {
217  case 0:
218  s->filter_slice = s->depth <= 8 ? manhattan_e_slice8 : manhattan_e_slice16;
219  break;
220  case 1:
221  s->filter_slice = s->depth <= 8 ? euclidean_e_slice8 : euclidean_e_slice16;
222  break;
223  }
224  }
225 
226  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
227  if (!out) {
228  av_frame_free(&in);
229  return AVERROR(ENOMEM);
230  }
231 
233  s->out = out;
234  ff_filter_execute(ctx, s->filter_slice, in, NULL,
235  FFMIN3(s->planeheight[1],
236  s->planeheight[2],
238 
239  av_frame_free(&in);
240  return ff_filter_frame(outlink, out);
241 }
242 
244 {
245  AVFilterContext *ctx = inlink->dst;
246  ChromaNRContext *s = ctx->priv;
248  int ret;
249 
250  s->nb_planes = desc->nb_components;
251  s->depth = desc->comp[0].depth;
252  s->chroma_w = 1 << desc->log2_chroma_w;
253  s->chroma_h = 1 << desc->log2_chroma_h;
254  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
255  s->planeheight[0] = s->planeheight[3] = inlink->h;
256  s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
257  s->planewidth[0] = s->planewidth[3] = inlink->w;
258 
259  if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
260  return ret;
261 
262  return 0;
263 }
264 
265 #define OFFSET(x) offsetof(ChromaNRContext, x)
266 #define VF AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
267 
268 static const AVOption chromanr_options[] = {
269  { "thres", "set y+u+v threshold", OFFSET(threshold), AV_OPT_TYPE_FLOAT, {.dbl=30}, 1, 200, VF },
270  { "sizew", "set horizontal patch size", OFFSET(sizew), AV_OPT_TYPE_INT, {.i64=5}, 1, 100, VF },
271  { "sizeh", "set vertical patch size", OFFSET(sizeh), AV_OPT_TYPE_INT, {.i64=5}, 1, 100, VF },
272  { "stepw", "set horizontal step", OFFSET(stepw), AV_OPT_TYPE_INT, {.i64=1}, 1, 50, VF },
273  { "steph", "set vertical step", OFFSET(steph), AV_OPT_TYPE_INT, {.i64=1}, 1, 50, VF },
274  { "threy", "set y threshold", OFFSET(threshold_y), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
275  { "threu", "set u threshold", OFFSET(threshold_u), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
276  { "threv", "set v threshold", OFFSET(threshold_v), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
277  { "distance", "set distance type", OFFSET(distance), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, VF, "distance" },
278  { "manhattan", "", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, VF, "distance" },
279  { "euclidean", "", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, VF, "distance" },
280  { NULL }
281 };
282 
283 static const AVFilterPad inputs[] = {
284  {
285  .name = "default",
286  .type = AVMEDIA_TYPE_VIDEO,
287  .filter_frame = filter_frame,
288  .config_props = config_input,
289  },
290 };
291 
292 static const AVFilterPad outputs[] = {
293  {
294  .name = "default",
295  .type = AVMEDIA_TYPE_VIDEO,
296  },
297 };
298 
299 AVFILTER_DEFINE_CLASS(chromanr);
300 
302  .name = "chromanr",
303  .description = NULL_IF_CONFIG_SMALL("Reduce chrominance noise."),
304  .priv_size = sizeof(ChromaNRContext),
305  .priv_class = &chromanr_class,
310  .process_command = ff_filter_process_command,
311 };
chromanr_options
static const AVOption chromanr_options[]
Definition: vf_chromanr.c:268
ChromaNRContext::thres_y
int thres_y
Definition: vf_chromanr.c:40
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:101
AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:502
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
MANHATTAN_DISTANCE
#define MANHATTAN_DISTANCE(x, y, z)
Definition: vf_chromanr.c:75
opt.h
ChromaNRContext::distance
int distance
Definition: vf_chromanr.c:38
out
FILE * out
Definition: movenc.c:54
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:969
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2888
FILTER_PIXFMTS_ARRAY
#define FILTER_PIXFMTS_ARRAY(array)
Definition: internal.h:174
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:99
AV_PIX_FMT_YUVA422P9
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:494
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:330
pixdesc.h
AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:501
AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:496
AVOption
AVOption.
Definition: opt.h:251
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:459
FILTER_FUNC
#define FILTER_FUNC(distance, name, ctype, type, fun, extra)
Definition: vf_chromanr.c:78
AV_PIX_FMT_YUV440P
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
ChromaNRContext::steph
int steph
Definition: vf_chromanr.c:46
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:165
video.h
AV_PIX_FMT_YUVA422P10
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:497
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_chromanr.c:194
formats.h
AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:493
ff_vf_chromanr
const AVFilter ff_vf_chromanr
Definition: vf_chromanr.c:301
AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:503
ChromaNRContext::threshold_v
float threshold_v
Definition: vf_chromanr.c:37
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:457
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: vf_chromanr.c:59
EUCLIDEAN_DISTANCE
#define EUCLIDEAN_DISTANCE(x, y, z)
Definition: vf_chromanr.c:76
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:49
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:462
ChromaNRContext::threshold
float threshold
Definition: vf_chromanr.c:34
AV_PIX_FMT_YUVJ411P
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:276
AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:471
ChromaNRContext::linesize
int linesize[4]
Definition: vf_chromanr.c:51
AV_PIX_FMT_YUVJ422P
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:79
av_image_fill_linesizes
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
Definition: imgutils.c:89
s
#define s(width, name)
Definition: cbs_vp9.c:256
AV_PIX_FMT_YUVA420P
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:101
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:472
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:50
ChromaNRContext::planewidth
int planewidth[4]
Definition: vf_chromanr.c:53
VF
#define VF
Definition: vf_chromanr.c:266
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_chromanr.c:243
AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUVA444P12
Definition: pixfmt.h:500
AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:456
AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:470
ctx
AVFormatContext * ctx
Definition: movenc.c:48
ChromaNRContext::filter_slice
int(* filter_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_chromanr.c:56
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:66
ChromaNRContext::depth
int depth
Definition: vf_chromanr.c:47
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:194
AV_PIX_FMT_YUVJ444P
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:80
arg
const char * arg
Definition: jacosubdec.c:67
outputs
static const AVFilterPad outputs[]
Definition: vf_chromanr.c:292
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:594
AV_PIX_FMT_YUVJ420P
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:78
ChromaNRContext::out
AVFrame * out
Definition: vf_chromanr.c:55
ChromaNRContext::nb_planes
int nb_planes
Definition: vf_chromanr.c:50
AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:461
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:460
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:115
inputs
static const AVFilterPad inputs[]
Definition: vf_chromanr.c:283
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:464
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:466
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:842
AV_PIX_FMT_YUVA444P
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:167
AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:498
ChromaNRContext::thres
int thres
Definition: vf_chromanr.c:39
internal.h
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#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:142
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:228
FFMIN3
#define FFMIN3(a, b, c)
Definition: macros.h:50
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:777
AV_PIX_FMT_YUVJ440P
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
Definition: pixfmt.h:100
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:55
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:458
ChromaNRContext::threshold_u
float threshold_u
Definition: vf_chromanr.c:36
AVFilter
Filter definition.
Definition: avfilter.h:161
ret
ret
Definition: filter_design.txt:187
ChromaNRContext
Definition: vf_chromanr.c:31
AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:495
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:463
AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:468
ChromaNRContext::planeheight
int planeheight[4]
Definition: vf_chromanr.c:52
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_PIX_FMT_YUVA422P12
#define AV_PIX_FMT_YUVA422P12
Definition: pixfmt.h:499
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
OFFSET
#define OFFSET(x)
Definition: vf_chromanr.c:265
avfilter.h
ChromaNRContext::sizew
int sizew
Definition: vf_chromanr.c:43
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(chromanr)
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
ChromaNRContext::sizeh
int sizeh
Definition: vf_chromanr.c:44
AVFilterContext
An instance of a filter.
Definition: avfilter.h:392
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:117
desc
const char * desc
Definition: libsvtav1.c:83
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:195
AV_PIX_FMT_YUV411P
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:73
distance
static float distance(float x, float y, int band)
Definition: nellymoserenc.c:230
imgutils.h
AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:465
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:469
avstring.h
ff_filter_execute
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition: internal.h:146
int
int
Definition: ffmpeg_filter.c:156
ChromaNRContext::stepw
int stepw
Definition: vf_chromanr.c:45
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:234
ChromaNRContext::thres_u
int thres_u
Definition: vf_chromanr.c:41
AV_PIX_FMT_YUVA422P
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:166
AV_PIX_FMT_YUV420P14
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:467
ChromaNRContext::threshold_y
float threshold_y
Definition: vf_chromanr.c:35
ChromaNRContext::chroma_h
int chroma_h
Definition: vf_chromanr.c:49
ChromaNRContext::thres_v
int thres_v
Definition: vf_chromanr.c:42
ChromaNRContext::chroma_w
int chroma_w
Definition: vf_chromanr.c:48