FFmpeg
vf_bm3d.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2016 mawen1250
3  * Copyright (c) 2018 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in all
15  * copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25 
26 /**
27  * @todo
28  * - non-power of 2 DCT
29  * - opponent color space
30  * - temporal support
31  */
32 
33 #include <float.h>
34 
35 #include "libavutil/avassert.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/pixdesc.h"
39 #include "libavcodec/avfft.h"
40 #include "avfilter.h"
41 #include "filters.h"
42 #include "formats.h"
43 #include "framesync.h"
44 #include "internal.h"
45 #include "video.h"
46 
47 #define MAX_NB_THREADS 32
48 
53 };
54 
55 typedef struct ThreadData {
56  const uint8_t *src;
58  const uint8_t *ref;
60  int plane;
61 } ThreadData;
62 
63 typedef struct PosCode {
64  int x, y;
65 } PosCode;
66 
67 typedef struct PosPairCode {
68  double score;
69  int x, y;
70 } PosPairCode;
71 
72 typedef struct SliceContext {
83  float *num, *den;
87 } SliceContext;
88 
89 typedef struct BM3DContext {
90  const AVClass *class;
91 
92  float sigma;
96  int bm_range;
97  int bm_step;
98  float th_mse;
100  int mode;
101  int ref;
102  int planes;
103 
104  int depth;
105  int max;
107  int planewidth[4];
108  int planeheight[4];
111 
113 
116 
117  void (*get_block_row)(const uint8_t *srcp, int src_linesize,
118  int y, int x, int block_size, float *dst);
119  double (*do_block_ssd)(struct BM3DContext *s, PosCode *pos,
120  const uint8_t *src, int src_stride,
121  int r_y, int r_x);
122  void (*do_output)(struct BM3DContext *s, uint8_t *dst, int dst_linesize,
123  int plane, int nb_jobs);
124  void (*block_filtering)(struct BM3DContext *s,
125  const uint8_t *src, int src_linesize,
126  const uint8_t *ref, int ref_linesize,
127  int y, int x, int plane, int jobnr);
128 } BM3DContext;
129 
130 #define OFFSET(x) offsetof(BM3DContext, x)
131 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
132 static const AVOption bm3d_options[] = {
133  { "sigma", "set denoising strength",
134  OFFSET(sigma), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 99999.9, FLAGS },
135  { "block", "set log2(size) of local patch",
136  OFFSET(block_size), AV_OPT_TYPE_INT, {.i64=4}, 4, 6, FLAGS },
137  { "bstep", "set sliding step for processing blocks",
138  OFFSET(block_step), AV_OPT_TYPE_INT, {.i64=4}, 1, 64, FLAGS },
139  { "group", "set maximal number of similar blocks",
140  OFFSET(group_size), AV_OPT_TYPE_INT, {.i64=1}, 1, 256, FLAGS },
141  { "range", "set block matching range",
142  OFFSET(bm_range), AV_OPT_TYPE_INT, {.i64=9}, 1, INT32_MAX, FLAGS },
143  { "mstep", "set step for block matching",
144  OFFSET(bm_step), AV_OPT_TYPE_INT, {.i64=1}, 1, 64, FLAGS },
145  { "thmse", "set threshold of mean square error for block matching",
146  OFFSET(th_mse), AV_OPT_TYPE_FLOAT, {.dbl=0}, 0, INT32_MAX, FLAGS },
147  { "hdthr", "set hard threshold for 3D transfer domain",
148  OFFSET(hard_threshold), AV_OPT_TYPE_FLOAT, {.dbl=2.7}, 0, INT32_MAX, FLAGS },
149  { "estim", "set filtering estimation mode",
150  OFFSET(mode), AV_OPT_TYPE_INT, {.i64=BASIC}, 0, NB_MODES-1, FLAGS, "mode" },
151  { "basic", "basic estimate",
152  0, AV_OPT_TYPE_CONST, {.i64=BASIC}, 0, 0, FLAGS, "mode" },
153  { "final", "final estimate",
154  0, AV_OPT_TYPE_CONST, {.i64=FINAL}, 0, 0, FLAGS, "mode" },
155  { "ref", "have reference stream",
156  OFFSET(ref), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
157  { "planes", "set planes to filter",
158  OFFSET(planes), AV_OPT_TYPE_INT, {.i64=7}, 0, 15, FLAGS },
159  { NULL }
160 };
161 
163 
165 {
166  static const enum AVPixelFormat pix_fmts[] = {
186  };
187 
189  if (!fmts_list)
190  return AVERROR(ENOMEM);
191  return ff_set_common_formats(ctx, fmts_list);
192 }
193 
194 static int do_search_boundary(int pos, int plane_boundary, int search_range, int search_step)
195 {
196  int search_boundary;
197 
198  search_range = search_range / search_step * search_step;
199 
200  if (pos == plane_boundary) {
201  search_boundary = plane_boundary;
202  } else if (pos > plane_boundary) {
203  search_boundary = pos - search_range;
204 
205  while (search_boundary < plane_boundary) {
206  search_boundary += search_step;
207  }
208  } else {
209  search_boundary = pos + search_range;
210 
211  while (search_boundary > plane_boundary) {
212  search_boundary -= search_step;
213  }
214  }
215 
216  return search_boundary;
217 }
218 
219 static int search_boundary(int plane_boundary, int search_range, int search_step, int vertical, int y, int x)
220 {
221  return do_search_boundary(vertical ? y : x, plane_boundary, search_range, search_step);
222 }
223 
224 static int cmp_scores(const void *a, const void *b)
225 {
226  const struct PosPairCode *pair1 = a;
227  const struct PosPairCode *pair2 = b;
228  return FFDIFFSIGN(pair1->score, pair2->score);
229 }
230 
231 static double do_block_ssd(BM3DContext *s, PosCode *pos, const uint8_t *src, int src_stride, int r_y, int r_x)
232 {
233  const uint8_t *srcp = src + pos->y * src_stride + pos->x;
234  const uint8_t *refp = src + r_y * src_stride + r_x;
235  const int block_size = s->block_size;
236  double dist = 0.;
237  int x, y;
238 
239  for (y = 0; y < block_size; y++) {
240  for (x = 0; x < block_size; x++) {
241  double temp = refp[x] - srcp[x];
242  dist += temp * temp;
243  }
244 
245  srcp += src_stride;
246  refp += src_stride;
247  }
248 
249  return dist;
250 }
251 
252 static double do_block_ssd16(BM3DContext *s, PosCode *pos, const uint8_t *src, int src_stride, int r_y, int r_x)
253 {
254  const uint16_t *srcp = (uint16_t *)src + pos->y * src_stride / 2 + pos->x;
255  const uint16_t *refp = (uint16_t *)src + r_y * src_stride / 2 + r_x;
256  const int block_size = s->block_size;
257  double dist = 0.;
258  int x, y;
259 
260  for (y = 0; y < block_size; y++) {
261  for (x = 0; x < block_size; x++) {
262  double temp = refp[x] - srcp[x];
263  dist += temp * temp;
264  }
265 
266  srcp += src_stride / 2;
267  refp += src_stride / 2;
268  }
269 
270  return dist;
271 }
272 
273 static void do_block_matching_multi(BM3DContext *s, const uint8_t *src, int src_stride, int src_range,
274  const PosCode *search_pos, int search_size, float th_mse,
275  int r_y, int r_x, int plane, int jobnr)
276 {
277  SliceContext *sc = &s->slices[jobnr];
278  double MSE2SSE = s->group_size * s->block_size * s->block_size * src_range * src_range / (s->max * s->max);
279  double distMul = 1. / MSE2SSE;
280  double th_sse = th_mse * MSE2SSE;
281  int i, index = sc->nb_match_blocks;
282 
283  for (i = 0; i < search_size; i++) {
284  PosCode pos = search_pos[i];
285  double dist;
286 
287  dist = s->do_block_ssd(s, &pos, src, src_stride, r_y, r_x);
288 
289  // Only match similar blocks but not identical blocks
290  if (dist <= th_sse && dist != 0) {
291  const double score = dist * distMul;
292 
293  if (index >= s->group_size && score >= sc->match_blocks[index - 1].score) {
294  continue;
295  }
296 
297  if (index >= s->group_size)
298  index = s->group_size - 1;
299 
300  sc->match_blocks[index].score = score;
301  sc->match_blocks[index].y = pos.y;
302  sc->match_blocks[index].x = pos.x;
303  index++;
304  qsort(sc->match_blocks, index, sizeof(PosPairCode), cmp_scores);
305  }
306  }
307 
308  sc->nb_match_blocks = index;
309 }
310 
311 static void block_matching_multi(BM3DContext *s, const uint8_t *ref, int ref_linesize, int y, int x,
312  int exclude_cur_pos, int plane, int jobnr)
313 {
314  SliceContext *sc = &s->slices[jobnr];
315  const int width = s->planewidth[plane];
316  const int height = s->planeheight[plane];
317  const int block_size = s->block_size;
318  const int step = s->bm_step;
319  const int range = s->bm_range / step * step;
320  int l = search_boundary(0, range, step, 0, y, x);
321  int r = search_boundary(width - block_size, range, step, 0, y, x);
322  int t = search_boundary(0, range, step, 1, y, x);
323  int b = search_boundary(height - block_size, range, step, 1, y, x);
324  int j, i, index = 0;
325 
326  for (j = t; j <= b; j += step) {
327  for (i = l; i <= r; i += step) {
328  PosCode pos;
329 
330  if (exclude_cur_pos > 0 && j == y && i == x) {
331  continue;
332  }
333 
334  pos.y = j;
335  pos.x = i;
336  sc->search_positions[index++] = pos;
337  }
338  }
339 
340  if (exclude_cur_pos == 1) {
341  sc->match_blocks[0].score = 0;
342  sc->match_blocks[0].y = y;
343  sc->match_blocks[0].x = x;
344  sc->nb_match_blocks = 1;
345  }
346 
347  do_block_matching_multi(s, ref, ref_linesize, s->bm_range,
348  sc->search_positions, index, s->th_mse, y, x, plane, jobnr);
349 }
350 
351 static void block_matching(BM3DContext *s, const uint8_t *ref, int ref_linesize,
352  int j, int i, int plane, int jobnr)
353 {
354  SliceContext *sc = &s->slices[jobnr];
355 
356  if (s->group_size == 1 || s->th_mse <= 0.f) {
357  sc->match_blocks[0].score = 1;
358  sc->match_blocks[0].x = i;
359  sc->match_blocks[0].y = j;
360  sc->nb_match_blocks = 1;
361  return;
362  }
363 
364  sc->nb_match_blocks = 0;
365  block_matching_multi(s, ref, ref_linesize, j, i, 1, plane, jobnr);
366 }
367 
368 static void get_block_row(const uint8_t *srcp, int src_linesize,
369  int y, int x, int block_size, float *dst)
370 {
371  const uint8_t *src = srcp + y * src_linesize + x;
372  int j;
373 
374  for (j = 0; j < block_size; j++) {
375  dst[j] = src[j];
376  }
377 }
378 
379 static void get_block_row16(const uint8_t *srcp, int src_linesize,
380  int y, int x, int block_size, float *dst)
381 {
382  const uint16_t *src = (uint16_t *)srcp + y * src_linesize / 2 + x;
383  int j;
384 
385  for (j = 0; j < block_size; j++) {
386  dst[j] = src[j];
387  }
388 }
389 
390 static void basic_block_filtering(BM3DContext *s, const uint8_t *src, int src_linesize,
391  const uint8_t *ref, int ref_linesize,
392  int y, int x, int plane, int jobnr)
393 {
394  SliceContext *sc = &s->slices[jobnr];
395  const int buffer_linesize = s->block_size * s->block_size;
396  const int nb_match_blocks = sc->nb_match_blocks;
397  const int block_size = s->block_size;
398  const int width = s->planewidth[plane];
399  const int pgroup_size = s->pgroup_size;
400  const int group_size = s->group_size;
401  float *buffer = sc->buffer;
402  float *bufferh = sc->bufferh;
403  float *bufferv = sc->bufferv;
404  float *bufferz = sc->bufferz;
405  float threshold[4];
406  float den_weight, num_weight;
407  int retained = 0;
408  int i, j, k;
409 
410  for (k = 0; k < nb_match_blocks; k++) {
411  const int y = sc->match_blocks[k].y;
412  const int x = sc->match_blocks[k].x;
413 
414  for (i = 0; i < block_size; i++) {
415  s->get_block_row(src, src_linesize, y + i, x, block_size, bufferh + block_size * i);
416  av_dct_calc(sc->dctf, bufferh + block_size * i);
417  }
418 
419  for (i = 0; i < block_size; i++) {
420  for (j = 0; j < block_size; j++) {
421  bufferv[i * block_size + j] = bufferh[j * block_size + i];
422  }
423  av_dct_calc(sc->dctf, bufferv + i * block_size);
424  }
425 
426  for (i = 0; i < block_size; i++) {
427  memcpy(buffer + k * buffer_linesize + i * block_size,
428  bufferv + i * block_size, block_size * 4);
429  }
430  }
431 
432  for (i = 0; i < block_size; i++) {
433  for (j = 0; j < block_size; j++) {
434  for (k = 0; k < nb_match_blocks; k++)
435  bufferz[k] = buffer[buffer_linesize * k + i * block_size + j];
436  if (group_size > 1)
437  av_dct_calc(sc->gdctf, bufferz);
438  bufferz += pgroup_size;
439  }
440  }
441 
442  threshold[0] = s->hard_threshold * s->sigma;
443  threshold[1] = threshold[0] * sqrtf(2.f);
444  threshold[2] = threshold[0] * 2.f;
445  threshold[3] = threshold[0] * sqrtf(8.f);
446  bufferz = sc->bufferz;
447 
448  for (i = 0; i < block_size; i++) {
449  for (j = 0; j < block_size; j++) {
450  for (k = 0; k < nb_match_blocks; k++) {
451  const float thresh = threshold[(j == 0) + (i == 0) + (k == 0)];
452 
453  if (bufferz[k] > thresh || bufferz[k] < -thresh) {
454  retained++;
455  } else {
456  bufferz[k] = 0;
457  }
458  }
459  bufferz += pgroup_size;
460  }
461  }
462 
463  bufferz = sc->bufferz;
464  buffer = sc->buffer;
465  for (i = 0; i < block_size; i++) {
466  for (j = 0; j < block_size; j++) {
467  if (group_size > 1)
468  av_dct_calc(sc->gdcti, bufferz);
469  for (k = 0; k < nb_match_blocks; k++) {
470  buffer[buffer_linesize * k + i * block_size + j] = bufferz[k];
471  }
472  bufferz += pgroup_size;
473  }
474  }
475 
476  den_weight = retained < 1 ? 1.f : 1.f / retained;
477  num_weight = den_weight;
478 
479  buffer = sc->buffer;
480  for (k = 0; k < nb_match_blocks; k++) {
481  float *num = sc->num + y * width + x;
482  float *den = sc->den + y * width + x;
483 
484  for (i = 0; i < block_size; i++) {
485  memcpy(bufferv + i * block_size,
486  buffer + k * buffer_linesize + i * block_size,
487  block_size * 4);
488  }
489 
490  for (i = 0; i < block_size; i++) {
491  av_dct_calc(sc->dcti, bufferv + block_size * i);
492  for (j = 0; j < block_size; j++) {
493  bufferh[j * block_size + i] = bufferv[i * block_size + j];
494  }
495  }
496 
497  for (i = 0; i < block_size; i++) {
498  av_dct_calc(sc->dcti, bufferh + block_size * i);
499  for (j = 0; j < block_size; j++) {
500  num[j] += bufferh[i * block_size + j] * num_weight;
501  den[j] += den_weight;
502  }
503  num += width;
504  den += width;
505  }
506  }
507 }
508 
509 static void final_block_filtering(BM3DContext *s, const uint8_t *src, int src_linesize,
510  const uint8_t *ref, int ref_linesize,
511  int y, int x, int plane, int jobnr)
512 {
513  SliceContext *sc = &s->slices[jobnr];
514  const int buffer_linesize = s->block_size * s->block_size;
515  const int nb_match_blocks = sc->nb_match_blocks;
516  const int block_size = s->block_size;
517  const int width = s->planewidth[plane];
518  const int pgroup_size = s->pgroup_size;
519  const int group_size = s->group_size;
520  const float sigma_sqr = s->sigma * s->sigma;
521  float *buffer = sc->buffer;
522  float *bufferh = sc->bufferh;
523  float *bufferv = sc->bufferv;
524  float *bufferz = sc->bufferz;
525  float *rbuffer = sc->rbuffer;
526  float *rbufferh = sc->rbufferh;
527  float *rbufferv = sc->rbufferv;
528  float *rbufferz = sc->rbufferz;
529  float den_weight, num_weight;
530  float l2_wiener = 0;
531  int i, j, k;
532 
533  for (k = 0; k < nb_match_blocks; k++) {
534  const int y = sc->match_blocks[k].y;
535  const int x = sc->match_blocks[k].x;
536 
537  for (i = 0; i < block_size; i++) {
538  s->get_block_row(src, src_linesize, y + i, x, block_size, bufferh + block_size * i);
539  s->get_block_row(ref, ref_linesize, y + i, x, block_size, rbufferh + block_size * i);
540  av_dct_calc(sc->dctf, bufferh + block_size * i);
541  av_dct_calc(sc->dctf, rbufferh + block_size * i);
542  }
543 
544  for (i = 0; i < block_size; i++) {
545  for (j = 0; j < block_size; j++) {
546  bufferv[i * block_size + j] = bufferh[j * block_size + i];
547  rbufferv[i * block_size + j] = rbufferh[j * block_size + i];
548  }
549  av_dct_calc(sc->dctf, bufferv + i * block_size);
550  av_dct_calc(sc->dctf, rbufferv + i * block_size);
551  }
552 
553  for (i = 0; i < block_size; i++) {
554  memcpy(buffer + k * buffer_linesize + i * block_size,
555  bufferv + i * block_size, block_size * 4);
556  memcpy(rbuffer + k * buffer_linesize + i * block_size,
557  rbufferv + i * block_size, block_size * 4);
558  }
559  }
560 
561  for (i = 0; i < block_size; i++) {
562  for (j = 0; j < block_size; j++) {
563  for (k = 0; k < nb_match_blocks; k++) {
564  bufferz[k] = buffer[buffer_linesize * k + i * block_size + j];
565  rbufferz[k] = rbuffer[buffer_linesize * k + i * block_size + j];
566  }
567  if (group_size > 1) {
568  av_dct_calc(sc->gdctf, bufferz);
569  av_dct_calc(sc->gdctf, rbufferz);
570  }
571  bufferz += pgroup_size;
572  rbufferz += pgroup_size;
573  }
574  }
575 
576  bufferz = sc->bufferz;
577  rbufferz = sc->rbufferz;
578 
579  for (i = 0; i < block_size; i++) {
580  for (j = 0; j < block_size; j++) {
581  for (k = 0; k < nb_match_blocks; k++) {
582  const float ref_sqr = rbufferz[k] * rbufferz[k];
583  float wiener_coef = ref_sqr / (ref_sqr + sigma_sqr);
584 
585  if (isnan(wiener_coef))
586  wiener_coef = 1;
587  bufferz[k] *= wiener_coef;
588  l2_wiener += wiener_coef * wiener_coef;
589  }
590  bufferz += pgroup_size;
591  rbufferz += pgroup_size;
592  }
593  }
594 
595  bufferz = sc->bufferz;
596  buffer = sc->buffer;
597  for (i = 0; i < block_size; i++) {
598  for (j = 0; j < block_size; j++) {
599  if (group_size > 1)
600  av_dct_calc(sc->gdcti, bufferz);
601  for (k = 0; k < nb_match_blocks; k++) {
602  buffer[buffer_linesize * k + i * block_size + j] = bufferz[k];
603  }
604  bufferz += pgroup_size;
605  }
606  }
607 
608  l2_wiener = FFMAX(l2_wiener, 1e-15f);
609  den_weight = 1.f / l2_wiener;
610  num_weight = den_weight;
611 
612  for (k = 0; k < nb_match_blocks; k++) {
613  float *num = sc->num + y * width + x;
614  float *den = sc->den + y * width + x;
615 
616  for (i = 0; i < block_size; i++) {
617  memcpy(bufferv + i * block_size,
618  buffer + k * buffer_linesize + i * block_size,
619  block_size * 4);
620  }
621 
622  for (i = 0; i < block_size; i++) {
623  av_dct_calc(sc->dcti, bufferv + block_size * i);
624  for (j = 0; j < block_size; j++) {
625  bufferh[j * block_size + i] = bufferv[i * block_size + j];
626  }
627  }
628 
629  for (i = 0; i < block_size; i++) {
630  av_dct_calc(sc->dcti, bufferh + block_size * i);
631  for (j = 0; j < block_size; j++) {
632  num[j] += bufferh[i * block_size + j] * num_weight;
633  den[j] += den_weight;
634  }
635  num += width;
636  den += width;
637  }
638  }
639 }
640 
641 static void do_output(BM3DContext *s, uint8_t *dst, int dst_linesize,
642  int plane, int nb_jobs)
643 {
644  const int height = s->planeheight[plane];
645  const int width = s->planewidth[plane];
646  int i, j, k;
647 
648  for (i = 0; i < height; i++) {
649  for (j = 0; j < width; j++) {
650  uint8_t *dstp = dst + i * dst_linesize;
651  float sum_den = 0.f;
652  float sum_num = 0.f;
653 
654  for (k = 0; k < nb_jobs; k++) {
655  SliceContext *sc = &s->slices[k];
656  float num = sc->num[i * width + j];
657  float den = sc->den[i * width + j];
658 
659  sum_num += num;
660  sum_den += den;
661  }
662 
663  dstp[j] = av_clip_uint8(sum_num / sum_den);
664  }
665  }
666 }
667 
668 static void do_output16(BM3DContext *s, uint8_t *dst, int dst_linesize,
669  int plane, int nb_jobs)
670 {
671  const int height = s->planeheight[plane];
672  const int width = s->planewidth[plane];
673  const int depth = s->depth;
674  int i, j, k;
675 
676  for (i = 0; i < height; i++) {
677  for (j = 0; j < width; j++) {
678  uint16_t *dstp = (uint16_t *)dst + i * dst_linesize / 2;
679  float sum_den = 0.f;
680  float sum_num = 0.f;
681 
682  for (k = 0; k < nb_jobs; k++) {
683  SliceContext *sc = &s->slices[k];
684  float num = sc->num[i * width + j];
685  float den = sc->den[i * width + j];
686 
687  sum_num += num;
688  sum_den += den;
689  }
690 
691  dstp[j] = av_clip_uintp2_c(sum_num / sum_den, depth);
692  }
693  }
694 }
695 
696 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
697 {
698  BM3DContext *s = ctx->priv;
699  SliceContext *sc = &s->slices[jobnr];
700  const int block_step = s->block_step;
701  ThreadData *td = arg;
702  const uint8_t *src = td->src;
703  const uint8_t *ref = td->ref;
704  const int src_linesize = td->src_linesize;
705  const int ref_linesize = td->ref_linesize;
706  const int plane = td->plane;
707  const int width = s->planewidth[plane];
708  const int height = s->planeheight[plane];
709  const int block_pos_bottom = height - s->block_size;
710  const int block_pos_right = width - s->block_size;
711  const int slice_start = (((height + block_step - 1) / block_step) * jobnr / nb_jobs) * block_step;
712  const int slice_end = (jobnr == nb_jobs - 1) ? block_pos_bottom + block_step :
713  (((height + block_step - 1) / block_step) * (jobnr + 1) / nb_jobs) * block_step;
714  int i, j;
715 
716  memset(sc->num, 0, width * height * sizeof(FFTSample));
717  memset(sc->den, 0, width * height * sizeof(FFTSample));
718 
719  for (j = slice_start; j < slice_end; j += block_step) {
720  if (j > block_pos_bottom) {
721  j = block_pos_bottom;
722  }
723 
724  for (i = 0; i < block_pos_right + block_step; i += block_step) {
725  if (i > block_pos_right) {
726  i = block_pos_right;
727  }
728 
729  block_matching(s, ref, ref_linesize, j, i, plane, jobnr);
730 
731  s->block_filtering(s, src, src_linesize,
732  ref, ref_linesize, j, i, plane, jobnr);
733  }
734  }
735 
736  return 0;
737 }
738 
740 {
741  BM3DContext *s = ctx->priv;
742  AVFilterLink *outlink = ctx->outputs[0];
743  int p;
744 
745  *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
746  if (!*out)
747  return AVERROR(ENOMEM);
749 
750  for (p = 0; p < s->nb_planes; p++) {
751  const int nb_jobs = FFMIN(s->nb_threads, s->planeheight[p] / s->block_step);
752  ThreadData td;
753 
754  if (!((1 << p) & s->planes) || ctx->is_disabled) {
755  av_image_copy_plane((*out)->data[p], (*out)->linesize[p],
756  in->data[p], in->linesize[p],
757  s->planewidth[p], s->planeheight[p]);
758  continue;
759  }
760 
761  td.src = in->data[p];
762  td.src_linesize = in->linesize[p];
763  td.ref = ref->data[p];
764  td.ref_linesize = ref->linesize[p];
765  td.plane = p;
766  ctx->internal->execute(ctx, filter_slice, &td, NULL, nb_jobs);
767 
768  s->do_output(s, (*out)->data[p], (*out)->linesize[p], p, nb_jobs);
769  }
770 
771  return 0;
772 }
773 
774 #define SQR(x) ((x) * (x))
775 
777 {
779  AVFilterContext *ctx = inlink->dst;
780  BM3DContext *s = ctx->priv;
781  int i, group_bits;
782 
784  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
785  s->depth = desc->comp[0].depth;
786  s->max = (1 << s->depth) - 1;
787  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
788  s->planeheight[0] = s->planeheight[3] = inlink->h;
789  s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
790  s->planewidth[0] = s->planewidth[3] = inlink->w;
791 
792  for (group_bits = 4; 1 << group_bits < s->group_size; group_bits++);
793  s->group_bits = group_bits;
794  s->pgroup_size = 1 << group_bits;
795 
796  for (i = 0; i < s->nb_threads; i++) {
797  SliceContext *sc = &s->slices[i];
798 
799  sc->num = av_calloc(s->planewidth[0] * s->planeheight[0], sizeof(FFTSample));
800  sc->den = av_calloc(s->planewidth[0] * s->planeheight[0], sizeof(FFTSample));
801  if (!sc->num || !sc->den)
802  return AVERROR(ENOMEM);
803 
804  sc->dctf = av_dct_init(av_log2(s->block_size), DCT_II);
805  sc->dcti = av_dct_init(av_log2(s->block_size), DCT_III);
806  if (!sc->dctf || !sc->dcti)
807  return AVERROR(ENOMEM);
808 
809  if (s->group_bits > 1) {
810  sc->gdctf = av_dct_init(s->group_bits, DCT_II);
811  sc->gdcti = av_dct_init(s->group_bits, DCT_III);
812  if (!sc->gdctf || !sc->gdcti)
813  return AVERROR(ENOMEM);
814  }
815 
816  sc->buffer = av_calloc(s->block_size * s->block_size * s->pgroup_size, sizeof(*sc->buffer));
817  sc->bufferz = av_calloc(s->block_size * s->block_size * s->pgroup_size, sizeof(*sc->bufferz));
818  sc->bufferh = av_calloc(s->block_size * s->block_size, sizeof(*sc->bufferh));
819  sc->bufferv = av_calloc(s->block_size * s->block_size, sizeof(*sc->bufferv));
820  if (!sc->bufferh || !sc->bufferv || !sc->buffer || !sc->bufferz)
821  return AVERROR(ENOMEM);
822 
823  if (s->mode == FINAL) {
824  sc->rbuffer = av_calloc(s->block_size * s->block_size * s->pgroup_size, sizeof(*sc->rbuffer));
825  sc->rbufferz = av_calloc(s->block_size * s->block_size * s->pgroup_size, sizeof(*sc->rbufferz));
826  sc->rbufferh = av_calloc(s->block_size * s->block_size, sizeof(*sc->rbufferh));
827  sc->rbufferv = av_calloc(s->block_size * s->block_size, sizeof(*sc->rbufferv));
828  if (!sc->rbufferh || !sc->rbufferv || !sc->rbuffer || !sc->rbufferz)
829  return AVERROR(ENOMEM);
830  }
831 
832  sc->search_positions = av_calloc(SQR(2 * s->bm_range / s->bm_step + 1), sizeof(*sc->search_positions));
833  if (!sc->search_positions)
834  return AVERROR(ENOMEM);
835  }
836 
837  s->do_output = do_output;
838  s->do_block_ssd = do_block_ssd;
839  s->get_block_row = get_block_row;
840 
841  if (s->depth > 8) {
842  s->do_output = do_output16;
843  s->do_block_ssd = do_block_ssd16;
844  s->get_block_row = get_block_row16;
845  }
846 
847  return 0;
848 }
849 
851 {
852  BM3DContext *s = ctx->priv;
853 
854  if (!s->ref) {
855  AVFrame *frame = NULL;
856  AVFrame *out = NULL;
857  int ret, status;
858  int64_t pts;
859 
860  if ((ret = ff_inlink_consume_frame(ctx->inputs[0], &frame)) > 0) {
863  if (ret < 0)
864  return ret;
865  ret = ff_filter_frame(ctx->outputs[0], out);
866  }
867  if (ret < 0) {
868  return ret;
869  } else if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
870  ff_outlink_set_status(ctx->outputs[0], status, pts);
871  return 0;
872  } else {
873  if (ff_outlink_frame_wanted(ctx->outputs[0]))
874  ff_inlink_request_frame(ctx->inputs[0]);
875  return 0;
876  }
877  } else {
878  return ff_framesync_activate(&s->fs);
879  }
880 }
881 
883 {
884  AVFilterContext *ctx = fs->parent;
885  BM3DContext *s = fs->opaque;
886  AVFilterLink *outlink = ctx->outputs[0];
887  AVFrame *out = NULL, *src, *ref;
888  int ret;
889 
890  if ((ret = ff_framesync_get_frame(&s->fs, 0, &src, 0)) < 0 ||
891  (ret = ff_framesync_get_frame(&s->fs, 1, &ref, 0)) < 0)
892  return ret;
893 
894  if ((ret = filter_frame(ctx, &out, src, ref)) < 0)
895  return ret;
896 
897  out->pts = av_rescale_q(src->pts, s->fs.time_base, outlink->time_base);
898 
899  return ff_filter_frame(outlink, out);
900 }
901 
903 {
904  BM3DContext *s = ctx->priv;
905  AVFilterPad pad = { 0 };
906  int ret;
907 
908  if (s->mode == BASIC) {
909  if (s->th_mse == 0.f)
910  s->th_mse = 400.f + s->sigma * 80.f;
911  s->block_filtering = basic_block_filtering;
912  } else if (s->mode == FINAL) {
913  if (!s->ref) {
914  av_log(ctx, AV_LOG_WARNING, "Reference stream is mandatory in final estimation mode.\n");
915  s->ref = 1;
916  }
917  if (s->th_mse == 0.f)
918  s->th_mse = 200.f + s->sigma * 10.f;
919 
920  s->block_filtering = final_block_filtering;
921  } else {
922  return AVERROR_BUG;
923  }
924 
925  s->block_size = 1 << s->block_size;
926 
927  if (s->block_step > s->block_size) {
928  av_log(ctx, AV_LOG_WARNING, "bstep: %d can't be bigger than block size. Changing to %d.\n",
929  s->block_step, s->block_size);
930  s->block_step = s->block_size;
931  }
932  if (s->bm_step > s->bm_range) {
933  av_log(ctx, AV_LOG_WARNING, "mstep: %d can't be bigger than block matching range. Changing to %d.\n",
934  s->bm_step, s->bm_range);
935  s->bm_step = s->bm_range;
936  }
937 
938  pad.type = AVMEDIA_TYPE_VIDEO;
939  pad.name = av_strdup("source");
941  if (!pad.name)
942  return AVERROR(ENOMEM);
943 
944  if ((ret = ff_insert_inpad(ctx, 0, &pad)) < 0) {
945  av_freep(&pad.name);
946  return ret;
947  }
948 
949  if (s->ref) {
950  pad.type = AVMEDIA_TYPE_VIDEO;
951  pad.name = av_strdup("reference");
952  pad.config_props = NULL;
953  if (!pad.name)
954  return AVERROR(ENOMEM);
955 
956  if ((ret = ff_insert_inpad(ctx, 1, &pad)) < 0) {
957  av_freep(&pad.name);
958  return ret;
959  }
960  }
961 
962  return 0;
963 }
964 
965 static int config_output(AVFilterLink *outlink)
966 {
967  AVFilterContext *ctx = outlink->src;
968  BM3DContext *s = ctx->priv;
969  AVFilterLink *src = ctx->inputs[0];
970  AVFilterLink *ref;
971  FFFrameSyncIn *in;
972  int ret;
973 
974  if (s->ref) {
975  ref = ctx->inputs[1];
976 
977  if (src->format != ref->format) {
978  av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
979  return AVERROR(EINVAL);
980  }
981  if (src->w != ref->w ||
982  src->h != ref->h) {
983  av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
984  "(size %dx%d) do not match the corresponding "
985  "second input link %s parameters (%dx%d) ",
986  ctx->input_pads[0].name, src->w, src->h,
987  ctx->input_pads[1].name, ref->w, ref->h);
988  return AVERROR(EINVAL);
989  }
990  }
991 
992  outlink->w = src->w;
993  outlink->h = src->h;
994  outlink->time_base = src->time_base;
995  outlink->sample_aspect_ratio = src->sample_aspect_ratio;
996  outlink->frame_rate = src->frame_rate;
997 
998  if (!s->ref)
999  return 0;
1000 
1001  if ((ret = ff_framesync_init(&s->fs, ctx, 2)) < 0)
1002  return ret;
1003 
1004  in = s->fs.in;
1005  in[0].time_base = src->time_base;
1006  in[1].time_base = ref->time_base;
1007  in[0].sync = 1;
1008  in[0].before = EXT_STOP;
1009  in[0].after = EXT_STOP;
1010  in[1].sync = 1;
1011  in[1].before = EXT_STOP;
1012  in[1].after = EXT_STOP;
1013  s->fs.opaque = s;
1014  s->fs.on_event = process_frame;
1015 
1016  return ff_framesync_configure(&s->fs);
1017 }
1018 
1020 {
1021  BM3DContext *s = ctx->priv;
1022  int i;
1023 
1024  for (i = 0; i < ctx->nb_inputs; i++)
1025  av_freep(&ctx->input_pads[i].name);
1026 
1027  if (s->ref)
1028  ff_framesync_uninit(&s->fs);
1029 
1030  for (i = 0; i < s->nb_threads; i++) {
1031  SliceContext *sc = &s->slices[i];
1032 
1033  av_freep(&sc->num);
1034  av_freep(&sc->den);
1035 
1036  av_dct_end(sc->gdctf);
1037  av_dct_end(sc->gdcti);
1038  av_dct_end(sc->dctf);
1039  av_dct_end(sc->dcti);
1040 
1041  av_freep(&sc->buffer);
1042  av_freep(&sc->bufferh);
1043  av_freep(&sc->bufferv);
1044  av_freep(&sc->bufferz);
1045  av_freep(&sc->rbuffer);
1046  av_freep(&sc->rbufferh);
1047  av_freep(&sc->rbufferv);
1048  av_freep(&sc->rbufferz);
1049 
1050  av_freep(&sc->search_positions);
1051  }
1052 }
1053 
1054 static const AVFilterPad bm3d_outputs[] = {
1055  {
1056  .name = "default",
1057  .type = AVMEDIA_TYPE_VIDEO,
1058  .config_props = config_output,
1059  },
1060  { NULL }
1061 };
1062 
1064  .name = "bm3d",
1065  .description = NULL_IF_CONFIG_SMALL("Block-Matching 3D denoiser."),
1066  .priv_size = sizeof(BM3DContext),
1067  .init = init,
1068  .uninit = uninit,
1069  .activate = activate,
1071  .inputs = NULL,
1072  .outputs = bm3d_outputs,
1073  .priv_class = &bm3d_class,
1077 };
SliceContext::num
float * num
Definition: vf_bm3d.c:83
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:99
ff_framesync_configure
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition: framesync.c:117
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
BM3DContext::slices
SliceContext slices[MAX_NB_THREADS]
Definition: vf_bm3d.c:112
td
#define td
Definition: regdef.h:70
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
status
they must not be accessed directly The fifo field contains the frames that are queued in the input for processing by the filter The status_in and status_out fields contains the queued status(EOF or error) of the link
r
const char * r
Definition: vf_curves.c:114
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
opt.h
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
ff_framesync_uninit
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition: framesync.c:293
out
FILE * out
Definition: movenc.c:54
FLAGS
#define FLAGS
Definition: vf_bm3d.c:131
SliceContext::dcti
DCTContext * dcti
Definition: vf_bm3d.c:74
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1080
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2522
SliceContext::bufferz
FFTSample * bufferz
Definition: vf_bm3d.c:77
ff_framesync_get_frame
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition: framesync.c:256
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:202
BM3DContext::do_block_ssd
double(* do_block_ssd)(struct BM3DContext *s, PosCode *pos, const uint8_t *src, int src_stride, int r_y, int r_x)
Definition: vf_bm3d.c:119
BM3DContext::th_mse
float th_mse
Definition: vf_bm3d.c:98
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
pixdesc.h
av_clip_uintp2_c
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.
Definition: common.h:229
bm3d_options
static const AVOption bm3d_options[]
Definition: vf_bm3d.c:132
step
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But a word about which is also called distortion Distortion can be quantified by almost any quality measurement one chooses the sum of squared differences is used but more complex methods that consider psychovisual effects can be used as well It makes no difference in this discussion First step
Definition: rate_distortion.txt:58
ThreadData::ref_linesize
int ref_linesize
Definition: vf_bm3d.c:59
AVOption
AVOption.
Definition: opt.h:246
BASIC
@ BASIC
Definition: vf_bm3d.c:50
b
#define b
Definition: input.c:41
NB_MODES
@ NB_MODES
Definition: vf_bm3d.c:52
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:387
av_dct_init
DCTContext * av_dct_init(int nbits, enum DCTTransformType type)
Set up DCT.
float.h
SliceContext::rbufferz
FFTSample * rbufferz
Definition: vf_bm3d.c:81
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
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
FFFrameSync
Frame sync structure.
Definition: framesync.h:146
block_matching
static void block_matching(BM3DContext *s, const uint8_t *ref, int ref_linesize, int j, int i, int plane, int jobnr)
Definition: vf_bm3d.c:351
BM3DContext::block_step
int block_step
Definition: vf_bm3d.c:94
video.h
AVFormatContext::internal
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1795
srcp
BYTE int const BYTE * srcp
Definition: avisynth_c.h:908
SliceContext::nb_match_blocks
int nb_match_blocks
Definition: vf_bm3d.c:85
BM3DContext::planes
int planes
Definition: vf_bm3d.c:102
BM3DContext::mode
int mode
Definition: vf_bm3d.c:100
AV_PIX_FMT_GRAY9
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:367
av_image_copy_plane
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.
Definition: imgutils.c:338
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
do_block_ssd
static double do_block_ssd(BM3DContext *s, PosCode *pos, const uint8_t *src, int src_stride, int r_y, int r_x)
Definition: vf_bm3d.c:231
formats.h
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(bm3d)
ff_insert_inpad
static int ff_insert_inpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
Insert a new input pad for the filter.
Definition: internal.h:277
ff_inlink_consume_frame
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition: avfilter.c:1481
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2562
EXT_STOP
@ EXT_STOP
Completely stop all streams with this one.
Definition: framesync.h:65
AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:405
dstp
BYTE * dstp
Definition: avisynth_c.h:908
DCT_III
@ DCT_III
Definition: avfft.h:95
BM3DContext::ref
int ref
Definition: vf_bm3d.c:101
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:403
FFFrameSyncIn
Input stream structure.
Definition: framesync.h:81
plane
int plane
Definition: avisynth_c.h:384
BM3DContext::hard_threshold
float hard_threshold
Definition: vf_bm3d.c:99
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:385
PosPairCode::x
int x
Definition: vf_bm3d.c:69
SliceContext::den
float * den
Definition: vf_bm3d.c:83
pts
static int64_t pts
Definition: transcode_aac.c:647
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:371
AVFILTER_FLAG_DYNAMIC_INPUTS
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
src
#define src
Definition: vp8dsp.c:254
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:390
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:258
avassert.h
BM3DContext::group_bits
int group_bits
Definition: vf_bm3d.c:109
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
av_cold
#define av_cold
Definition: attributes.h:84
AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:399
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
SliceContext::match_blocks
PosPairCode match_blocks[256]
Definition: vf_bm3d.c:84
BM3DContext::fs
FFFrameSync fs
Definition: vf_bm3d.c:114
av_dct_end
void av_dct_end(DCTContext *s)
BM3DContext::do_output
void(* do_output)(struct BM3DContext *s, uint8_t *dst, int dst_linesize, int plane, int nb_jobs)
Definition: vf_bm3d.c:122
SliceContext::dctf
DCTContext * dctf
Definition: vf_bm3d.c:74
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
ThreadData::plane
int plane
Definition: vf_blend.c:57
ff_outlink_set_status
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition: filters.h:189
ff_inlink_request_frame
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
Definition: avfilter.c:1607
width
#define width
s
#define s(width, name)
Definition: cbs_vp9.c:257
search_boundary
static int search_boundary(int plane_boundary, int search_range, int search_step, int vertical, int y, int x)
Definition: vf_bm3d.c:219
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:400
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
BM3DContext::bm_range
int bm_range
Definition: vf_bm3d.c:96
PosCode::x
int x
Definition: vf_bm3d.c:64
slice_end
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:2026
PosCode
Definition: vf_bm3d.c:63
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
filters.h
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:275
AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:384
AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:398
ctx
AVFormatContext * ctx
Definition: movenc.c:48
final_block_filtering
static void final_block_filtering(BM3DContext *s, const uint8_t *src, int src_linesize, const uint8_t *ref, int ref_linesize, int y, int x, int plane, int jobnr)
Definition: vf_bm3d.c:509
ff_vf_bm3d
AVFilter ff_vf_bm3d
Definition: vf_bm3d.c:1063
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
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
BM3DContext::max
int max
Definition: vf_bm3d.c:105
filter_slice
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: vf_bm3d.c:696
f
#define f(width, name)
Definition: cbs_vp9.c:255
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:66
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:368
AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:406
SQR
#define SQR(x)
Definition: vf_bm3d.c:774
av_dct_calc
void av_dct_calc(DCTContext *s, FFTSample *data)
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
process_frame
static int process_frame(FFFrameSync *fs)
Definition: vf_bm3d.c:882
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:654
fs
#define fs(width, name, subs,...)
Definition: cbs_vp9.c:259
basic_block_filtering
static void basic_block_filtering(BM3DContext *s, const uint8_t *src, int src_linesize, const uint8_t *ref, int ref_linesize, int y, int x, int plane, int jobnr)
Definition: vf_bm3d.c:390
isnan
#define isnan(x)
Definition: libm.h:340
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
do_output
static void do_output(BM3DContext *s, uint8_t *dst, int dst_linesize, int plane, int nb_jobs)
Definition: vf_bm3d.c:641
AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:389
MAX_NB_THREADS
#define MAX_NB_THREADS
Definition: vf_bm3d.c:47
FFTSample
float FFTSample
Definition: avfft.h:35
avfft.h
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:388
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:402
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_bm3d.c:1019
BM3DContext::planewidth
int planewidth[4]
Definition: vf_bm3d.c:107
ff_inlink_acknowledge_status
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition: avfilter.c:1436
SliceContext::gdcti
DCTContext * gdcti
Definition: vf_bm3d.c:73
index
int index
Definition: gxfenc.c:89
SliceContext
Definition: mss12.h:70
FINAL
@ FINAL
Definition: vf_bm3d.c:51
AVFilterPad::config_props
int(* config_props)(AVFilterLink *link)
Link configuration callback.
Definition: internal.h:129
cmp_scores
static int cmp_scores(const void *a, const void *b)
Definition: vf_bm3d.c:224
SliceContext::rbufferv
FFTSample * rbufferv
Definition: vf_bm3d.c:80
desc
const char * desc
Definition: nvenc.c:68
OFFSET
#define OFFSET(x)
Definition: vf_bm3d.c:130
planes
static const struct @314 planes[]
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:188
BM3DContext::pgroup_size
int pgroup_size
Definition: vf_bm3d.c:110
FFMAX
#define FFMAX(a, b)
Definition: common.h:94
PosPairCode
Definition: vf_bm3d.c:67
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:392
bm3d_outputs
static const AVFilterPad bm3d_outputs[]
Definition: vf_bm3d.c:1054
SliceContext::buffer
FFTSample * buffer
Definition: vf_bm3d.c:78
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:394
FFDIFFSIGN
#define FFDIFFSIGN(x, y)
Comparator.
Definition: common.h:92
BM3DContext::bm_step
int bm_step
Definition: vf_bm3d.c:97
height
#define height
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
BM3DContext::group_size
int group_size
Definition: vf_bm3d.c:95
SliceContext::search_positions
PosCode * search_positions
Definition: vf_bm3d.c:86
BM3DContext::planeheight
int planeheight[4]
Definition: vf_bm3d.c:108
internal.h
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:226
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
BM3DContext::get_block_row
void(* get_block_row)(const uint8_t *srcp, int src_linesize, int y, int x, int block_size, float *dst)
Definition: vf_bm3d.c:117
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:404
do_output16
static void do_output16(BM3DContext *s, uint8_t *dst, int dst_linesize, int plane, int nb_jobs)
Definition: vf_bm3d.c:668
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:802
ThreadData
Used for passing data between threads.
Definition: af_adeclick.c:487
do_search_boundary
static int do_search_boundary(int pos, int plane_boundary, int search_range, int search_step)
Definition: vf_bm3d.c:194
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_bm3d.c:776
PosPairCode::y
int y
Definition: vf_bm3d.c:69
block_matching_multi
static void block_matching_multi(BM3DContext *s, const uint8_t *ref, int ref_linesize, int y, int x, int exclude_cur_pos, int plane, int jobnr)
Definition: vf_bm3d.c:311
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
uint8_t
uint8_t
Definition: audio_convert.c:194
DCTContext
Definition: dct.h:32
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:386
filter_frame
static int filter_frame(AVFilterContext *ctx, AVFrame **out, AVFrame *in, AVFrame *ref)
Definition: vf_bm3d.c:739
do_block_matching_multi
static void do_block_matching_multi(BM3DContext *s, const uint8_t *src, int src_stride, int src_range, const PosCode *search_pos, int search_size, float th_mse, int r_y, int r_x, int plane, int jobnr)
Definition: vf_bm3d.c:273
AVFilter
Filter definition.
Definition: avfilter.h:144
ret
ret
Definition: filter_design.txt:187
AVFilterPad::type
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:65
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
ff_framesync_init
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition: framesync.c:77
SliceContext::rbufferh
FFTSample * rbufferh
Definition: vf_bm3d.c:79
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:391
ThreadData::src
const uint8_t * src
Definition: vf_bm3d.c:56
AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:396
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_bm3d.c:902
ThreadData::src_linesize
int src_linesize
Definition: vf_bm3d.c:57
BM3DContext::sigma
float sigma
Definition: vf_bm3d.c:92
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Non-inlined equivalent of av_mallocz_array().
Definition: mem.c:244
framesync.h
buffer
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
Definition: filter_design.txt:49
mode
mode
Definition: ebur128.h:83
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
get_block_row
static void get_block_row(const uint8_t *srcp, int src_linesize, int y, int x, int block_size, float *dst)
Definition: vf_bm3d.c:368
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
BM3DContext::block_size
int block_size
Definition: vf_bm3d.c:93
config_output
static int config_output(AVFilterLink *outlink)
Definition: vf_bm3d.c:965
SliceContext::bufferv
FFTSample * bufferv
Definition: vf_bm3d.c:76
PosCode::y
int y
Definition: vf_bm3d.c:64
ref
static int ref[MAX_W *MAX_W]
Definition: jpeg2000dwt.c:107
temp
else temp
Definition: vf_mcdeint.c:256
SliceContext::rbuffer
FFTSample * rbuffer
Definition: vf_bm3d.c:82
do_block_ssd16
static double do_block_ssd16(BM3DContext *s, PosCode *pos, const uint8_t *src, int src_stride, int r_y, int r_x)
Definition: vf_bm3d.c:252
PosPairCode::score
double score
Definition: vf_bm3d.c:68
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
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:168
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:116
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:251
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
BM3DContext::nb_planes
int nb_planes
Definition: vf_bm3d.c:106
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
SliceContext::bufferh
FFTSample * bufferh
Definition: vf_bm3d.c:75
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
BM3DContext::nb_threads
int nb_threads
Definition: vf_bm3d.c:115
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
DCT_II
@ DCT_II
Definition: avfft.h:94
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:133
imgutils.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
AVERROR_BUG
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:50
AV_PIX_FMT_YUV410P
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:72
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
BM3DContext::depth
int depth
Definition: vf_bm3d.c:104
AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:393
SliceContext::gdctf
DCTContext * gdctf
Definition: vf_bm3d.c:73
ff_outlink_frame_wanted
the definition of that something depends on the semantic of the filter The callback must examine the status of the filter s links and proceed accordingly The status of output links is stored in the status_in and status_out fields and tested by the ff_outlink_frame_wanted() function. If this function returns true
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:397
BM3DContext::block_filtering
void(* block_filtering)(struct BM3DContext *s, const uint8_t *src, int src_linesize, const uint8_t *ref, int ref_linesize, int y, int x, int plane, int jobnr)
Definition: vf_bm3d.c:124
get_block_row16
static void get_block_row16(const uint8_t *srcp, int src_linesize, int y, int x, int block_size, float *dst)
Definition: vf_bm3d.c:379
ff_framesync_activate
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition: framesync.c:344
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:369
BM3DContext
Definition: vf_bm3d.c:89
ThreadData::ref
const uint8_t * ref
Definition: vf_bm3d.c:58
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
av_log2
int av_log2(unsigned v)
Definition: intmath.c:26
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_bm3d.c:164
AV_PIX_FMT_YUV420P14
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:395
activate
static int activate(AVFilterContext *ctx)
Definition: vf_bm3d.c:850
FilterModes
FilterModes
Definition: vf_bm3d.c:49