Go to the documentation of this file.
30 #define MAX_THREADS 32
84 #define OFFSET(x) offsetof(FFTdnoizContext, x)
85 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
86 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
88 {
"sigma",
"set denoise strength",
90 {
"amount",
"set amount of denoising",
92 {
"block",
"set block size",
94 {
"overlap",
"set block overlap",
96 {
"method",
"set method of denoising",
98 {
"wiener",
"wiener method",
100 {
"hard",
"hard thresholding",
102 {
"prev",
"set number of previous frames for temporal denoising",
104 {
"next",
"set number of next frames for temporal denoising",
106 {
"planes",
"set planes to filter",
148 for (
int j = 0; j < rw; j++) {
149 const int i =
abs(j + off);
157 for (
int j = 0; j < rw; j++)
164 uint16_t *
src = (uint16_t *)srcp;
166 for (
int j = 0; j < rw; j++) {
167 const int i =
abs(j + off);
175 uint16_t *dst = (uint16_t *)dstp;
177 for (
int j = 0; j < rw; j++)
191 s->depth =
desc->comp[0].depth;
202 s->planes[0].planewidth =
s->planes[3].planewidth =
inlink->w;
204 s->planes[0].planeheight =
s->planes[3].planeheight =
inlink->h;
209 for (
int i = 0;
i <
s->nb_threads;
i++) {
210 float scale = 1.f, iscale = 1.f;
214 0,
s->block_size, &
scale, 0)) < 0 ||
216 1,
s->block_size, &iscale, 0)) < 0 ||
218 0, 1 +
s->nb_prev +
s->nb_next, &
scale, 0)) < 0 ||
220 1, 1 +
s->nb_prev +
s->nb_next, &iscale, 0)) < 0)
224 for (
i = 0;
i <
s->nb_planes;
i++) {
228 p->
b =
s->block_size;
229 p->
n = 1.f / (p->
b * p->
b);
239 for (
int j = 0; j <
s->nb_threads; j++) {
247 if (
s->nb_prev > 0) {
252 if (
s->nb_next > 0) {
265 for (
int y = 0; y <
s->block_size; y++) {
266 for (
int x = 0; x <
s->block_size; x++)
267 s->win[y][x] = lut[y] * lut[x];
274 uint8_t *srcp,
int src_linesize,
275 float *
buffer,
int buffer_linesize,
int plane,
276 int jobnr,
int y,
int x)
282 const int overlap = p->
o;
283 const int hoverlap = overlap / 2;
285 const int bpp = (
s->depth + 7) / 8;
287 const float scale = 1.f / ((1.f +
s->nb_prev +
s->nb_next) *
s->block_size *
s->block_size);
291 const int woff = -hoverlap;
292 const int hoff = -hoverlap;
298 buffer_linesize /=
sizeof(
float);
300 for (
int i = 0;
i < rh;
i++) {
301 uint8_t *
src = srcp + src_linesize *
abs(y *
size +
i + hoff) + x *
size * bpp;
303 s->import_row(dst,
src, rw,
scale,
s->win[
i], woff);
304 for (
int j = rw; j <
block; j++) {
305 dst[j].
re = dst[rw - 1].
re;
311 dst += data_linesize;
312 dst_out += data_linesize;
317 for (
int j = 0; j <
block; j++) {
318 dst[j].
re = ddst[j].
re;
319 dst[j].
im = ddst[j].
im;
322 dst += data_linesize;
328 for (
int j = 0; j <
block; j++)
329 dst[j] = ssrc[j * data_linesize +
i];
332 dst += data_linesize;
333 bdst += buffer_linesize;
338 uint8_t *dstp,
int dst_linesize,
339 float *
buffer,
int buffer_linesize,
int plane,
340 int jobnr,
int y,
int x)
343 const int depth =
s->depth;
344 const int bpp = (depth + 7) / 8;
348 const int overlap = p->
o;
349 const int hoverlap = overlap / 2;
361 buffer_linesize /=
sizeof(
float);
365 for (
int j = 0; j <
block; j++)
366 hdst[j * data_linesize +
i] = vdst[j];
368 vdst += data_linesize;
369 bsrc += buffer_linesize;
372 hdst = hdata + hoverlap * data_linesize;
374 uint8_t *dst = dstp + dst_linesize * (y *
size +
i) + x *
size * bpp;
377 s->export_row(hdst_out + hoverlap, dst, rw, depth,
s->win[
i + hoverlap] + hoverlap);
379 hdst += data_linesize;
380 hdst_out += data_linesize;
390 const float depthx = (1 << (
s->depth - 8)) * (1 << (
s->depth - 8));
391 const float sigma =
s->sigma * depthx / (3.f *
s->block_size *
s->block_size);
392 const float limit = 1.f -
s->amount;
394 const int method =
s->method;
395 float *cbuff = cbuffer;
396 float *pbuff = pbuffer;
397 float *nbuff = nbuffer;
400 for (
int j = 0; j <
block; j++) {
404 buffer[0].re = pbuff[2 * j ];
405 buffer[0].im = pbuff[2 * j + 1];
407 buffer[1].re = cbuff[2 * j ];
408 buffer[1].im = cbuff[2 * j + 1];
410 buffer[2].re = nbuff[2 * j ];
411 buffer[2].im = nbuff[2 * j + 1];
415 for (
int z = 0; z < 3; z++) {
416 const float re = outbuffer[z].
re;
417 const float im = outbuffer[z].
im;
436 cbuff[2 * j + 0] =
buffer[1].re;
437 cbuff[2 * j + 1] =
buffer[1].im;
440 cbuff += buffer_linesize;
441 pbuff += buffer_linesize;
442 nbuff += buffer_linesize;
452 const float depthx = (1 << (
s->depth - 8)) * (1 << (
s->depth - 8));
453 const float sigma =
s->sigma * depthx / (2.f *
s->block_size *
s->block_size);
454 const float limit = 1.f -
s->amount;
456 const int method =
s->method;
457 float *cbuff = cbuffer;
458 float *pbuff = pbuffer;
461 for (
int j = 0; j <
block; j++) {
465 buffer[0].re = pbuff[2 * j ];
466 buffer[0].im = pbuff[2 * j + 1];
468 buffer[1].re = cbuff[2 * j ];
469 buffer[1].im = cbuff[2 * j + 1];
473 for (
int z = 0; z < 2; z++) {
474 const float re = outbuffer[z].
re;
475 const float im = outbuffer[z].
im;
494 cbuff[2 * j + 0] =
buffer[1].re;
495 cbuff[2 * j + 1] =
buffer[1].im;
498 cbuff += buffer_linesize;
499 pbuff += buffer_linesize;
508 const int method =
s->method;
510 const float depthx = (1 << (
s->depth - 8)) * (1 << (
s->depth - 8));
511 const float sigma =
s->sigma * depthx / (
s->block_size *
s->block_size);
512 const float limit = 1.f -
s->amount;
516 for (
int j = 0; j <
block; j++) {
520 im = buff[j * 2 + 1];
532 buff[j * 2 + 1] *=
factor;
535 buff += buffer_linesize;
540 int jobnr,
int nb_jobs)
545 for (
int plane = 0; plane <
s->nb_planes; plane++) {
547 const int nox = p->
nox;
548 const int noy = p->
noy;
549 const int slice_start = (noy * jobnr) / nb_jobs;
550 const int slice_end = (noy * (jobnr+1)) / nb_jobs;
552 if (!((1 << plane) &
s->planesf) ||
ctx->is_disabled)
555 for (
int y = slice_start; y <
slice_end; y++) {
556 for (
int x = 0; x < nox; x++) {
573 if (
s->next &&
s->prev) {
575 }
else if (
s->next) {
577 }
else if (
s->prev) {
601 if (
s->nb_next > 0 &&
s->nb_prev > 0) {
607 if (!
s->prev &&
s->cur) {
614 }
else if (
s->nb_next > 0) {
621 }
else if (
s->nb_prev > 0) {
646 FFMIN(
s->planes[0].noy,
s->nb_threads));
648 for (plane = 0; plane <
s->nb_planes; plane++) {
651 if (!((1 << plane) &
s->planesf) ||
ctx->is_disabled) {
654 s->cur->data[plane],
s->cur->linesize[plane],
660 if (
s->nb_next == 0 &&
s->nb_prev == 0) {
681 if (
s->next &&
s->nb_next > 0)
704 for (
i = 0;
i < 4;
i++) {
707 for (
int j = 0; j <
s->nb_threads; j++) {
718 for (
i = 0;
i <
s->nb_threads;
i++) {
755 .priv_class = &fftdnoiz_class,
static void filter_block2d(FFTdnoizContext *s, int plane, int jobnr)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
#define AV_PIX_FMT_YUVA422P16
static int denoise(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define AV_PIX_FMT_GBRAP16
void(* import_row)(AVComplexFloat *dst, uint8_t *src, int rw, float scale, float *win, int off)
AVPixelFormat
Pixel format.
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
static int request_frame(AVFilterLink *outlink)
void(* export_row)(AVComplexFloat *src, uint8_t *dst, int rw, int depth, float *win)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define AVERROR_EOF
End of file.
float * buffer[MAX_THREADS][BSIZE]
#define FILTER_PIXFMTS_ARRAY(array)
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
static void import_row16(AVComplexFloat *dst, uint8_t *srcp, int rw, float scale, float *win, int off)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define AV_PIX_FMT_YUVA422P9
This structure describes decoded (raw) audio or video data.
static av_always_inline av_const unsigned av_clip_uintp2_c(int a, int p)
Clip a signed integer to an unsigned power of two range.
#define AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P10
static const AVFilterPad fftdnoiz_outputs[]
AVTXContext * ifft[MAX_THREADS]
#define AV_PIX_FMT_YUV420P10
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
#define WIN_FUNC_OPTION(win_func_opt_name, win_func_offset, flag, default_window_func)
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
const char * name
Filter name.
A link between two filters.
#define AV_PIX_FMT_YUVA422P10
av_cold int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags)
Initialize a transform context with the given configuration (i)MDCTs with an odd length are currently...
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
static float win(SuperEqualizerContext *s, float n, int N)
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_YUVA420P9
static SDL_Window * window
#define AV_PIX_FMT_GBRP14
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
#define AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUV422P9
static void import_block(FFTdnoizContext *s, uint8_t *srcp, int src_linesize, float *buffer, int buffer_linesize, int plane, int jobnr, int y, int x)
static av_always_inline float scale(float x, float s)
#define AV_PIX_FMT_GRAY16
A filter pad used for either input or output.
#define AV_PIX_FMT_YUV444P10
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
AVComplexFloat * vdata[MAX_THREADS]
#define AV_PIX_FMT_YUV422P16
void(* av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride)
Function pointer to a function to perform the transform.
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
#define AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_GBRAP12
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
#define AV_PIX_FMT_YUV444P16
#define AV_CEIL_RSHIFT(a, b)
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
@ AV_TX_FLOAT_FFT
Standard complex to complex FFT with sample data type of AVComplexFloat, AVComplexDouble or AVComplex...
#define AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUV420P9
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
float win[MAX_BLOCK][MAX_BLOCK]
#define AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_GRAY14
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
static enum AVPixelFormat pix_fmts[]
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_INPUTS(array)
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
#define AV_PIX_FMT_GRAY10
AVComplexFloat * hdata[MAX_THREADS]
#define AV_PIX_FMT_GBRP16
Describe the class of an AVClass context structure.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
AVTXContext * fft_r[MAX_THREADS]
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
#define AV_PIX_FMT_YUV440P10
static void generate_window_func(float *lut, int N, int win_func, float *overlap)
#define AV_PIX_FMT_YUV422P10
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
static int config_input(AVFilterLink *inlink)
static void filter_block3d2(FFTdnoizContext *s, int plane, float *pbuffer, float *nbuffer, int jobnr)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
float fmaxf(float, float)
#define AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV444P12
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
AVFilterContext * src
source filter
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.
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
#define AV_PIX_FMT_YUVA444P10
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
static void filter_block3d1(FFTdnoizContext *s, int plane, float *pbuffer, int jobnr)
AVComplexFloat * vdata_out[MAX_THREADS]
#define i(width, name, range_min, range_max)
int w
agreed upon image width
#define AV_PIX_FMT_GBRP12
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Used for passing data between threads.
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
const char * name
Pad name.
void * av_calloc(size_t nmemb, size_t size)
#define AV_PIX_FMT_YUV444P9
static double limit(double x)
static av_cold void uninit(AVFilterContext *ctx)
static void export_block(FFTdnoizContext *s, uint8_t *dstp, int dst_linesize, float *buffer, int buffer_linesize, int plane, int jobnr, int y, int x)
AVTXContext * ifft_r[MAX_THREADS]
#define AV_PIX_FMT_YUVA444P9
static const AVFilterPad fftdnoiz_inputs[]
#define AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV422P14
AVComplexFloat * hdata_out[MAX_THREADS]
static float power(float r, float g, float b, float max)
const AVFilter ff_vf_fftdnoiz
int h
agreed upon image height
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
#define AV_PIX_FMT_YUVA422P12
static void export_row16(AVComplexFloat *src, uint8_t *dstp, int rw, int depth, float *win)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
static const int factor[16]
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
static void import_row8(AVComplexFloat *dst, uint8_t *src, int rw, float scale, float *win, int off)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
AVTXContext * fft[MAX_THREADS]
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
#define FILTER_OUTPUTS(array)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
The exact code depends on how similar the blocks are and how related they are to the block
static void export_row8(AVComplexFloat *src, uint8_t *dst, int rw, int depth, float *win)
#define AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV444P14
AVFILTER_DEFINE_CLASS(fftdnoiz)
static const AVOption fftdnoiz_options[]
#define AV_PIX_FMT_GRAY12
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
#define AV_PIX_FMT_YUV420P14