You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

383 lines
14KB

  1. /*
  2. * Copyright (c) 2015 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. * @file
  22. * Adaptive Temporal Averaging Denoiser,
  23. * based on paper "Video Denoising Based on Adaptive Temporal Averaging" by
  24. * David Bartovčak and Miroslav Vrankić
  25. */
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "avfilter.h"
  30. #define FF_BUFQUEUE_SIZE 129
  31. #include "bufferqueue.h"
  32. #include "formats.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. #define SIZE FF_BUFQUEUE_SIZE
  36. typedef struct ATADenoiseContext {
  37. const AVClass *class;
  38. float fthra[4], fthrb[4];
  39. int thra[4], thrb[4];
  40. int planes;
  41. int nb_planes;
  42. int planewidth[4];
  43. int planeheight[4];
  44. struct FFBufQueue q;
  45. void *data[4][SIZE];
  46. int linesize[4][SIZE];
  47. int size, mid;
  48. int available;
  49. int (*filter_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  50. void (*filter_row)(const uint8_t *src, uint8_t *dst,
  51. const uint8_t *srcf[SIZE],
  52. int w, int mid, int size,
  53. int thra, int thrb);
  54. } ATADenoiseContext;
  55. #define OFFSET(x) offsetof(ATADenoiseContext, x)
  56. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  57. static const AVOption atadenoise_options[] = {
  58. { "0a", "set threshold A for 1st plane", OFFSET(fthra[0]), AV_OPT_TYPE_FLOAT, {.dbl=0.02}, 0, 0.3, FLAGS },
  59. { "0b", "set threshold B for 1st plane", OFFSET(fthrb[0]), AV_OPT_TYPE_FLOAT, {.dbl=0.04}, 0, 5.0, FLAGS },
  60. { "1a", "set threshold A for 2nd plane", OFFSET(fthra[1]), AV_OPT_TYPE_FLOAT, {.dbl=0.02}, 0, 0.3, FLAGS },
  61. { "1b", "set threshold B for 2nd plane", OFFSET(fthrb[1]), AV_OPT_TYPE_FLOAT, {.dbl=0.04}, 0, 5.0, FLAGS },
  62. { "2a", "set threshold A for 3rd plane", OFFSET(fthra[2]), AV_OPT_TYPE_FLOAT, {.dbl=0.02}, 0, 0.3, FLAGS },
  63. { "2b", "set threshold B for 3rd plane", OFFSET(fthrb[2]), AV_OPT_TYPE_FLOAT, {.dbl=0.04}, 0, 5.0, FLAGS },
  64. { "s", "set how many frames to use", OFFSET(size), AV_OPT_TYPE_INT, {.i64=9}, 5, SIZE, FLAGS },
  65. { "p", "set what planes to filter", OFFSET(planes), AV_OPT_TYPE_FLAGS, {.i64=7}, 0, 15, FLAGS },
  66. { NULL }
  67. };
  68. AVFILTER_DEFINE_CLASS(atadenoise);
  69. static int query_formats(AVFilterContext *ctx)
  70. {
  71. static const enum AVPixelFormat pixel_fmts[] = {
  72. AV_PIX_FMT_GRAY8,
  73. AV_PIX_FMT_GRAY9,
  74. AV_PIX_FMT_GRAY10,
  75. AV_PIX_FMT_GRAY12,
  76. AV_PIX_FMT_GRAY14,
  77. AV_PIX_FMT_GRAY16,
  78. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P,
  79. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P,
  80. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P,
  81. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P,
  82. AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ444P,
  83. AV_PIX_FMT_YUVJ411P,
  84. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  85. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
  86. AV_PIX_FMT_YUV440P10,
  87. AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV420P12,
  88. AV_PIX_FMT_YUV440P12,
  89. AV_PIX_FMT_YUV444P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV420P14,
  90. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  91. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10,
  92. AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
  93. AV_PIX_FMT_NONE
  94. };
  95. AVFilterFormats *formats = ff_make_format_list(pixel_fmts);
  96. if (!formats)
  97. return AVERROR(ENOMEM);
  98. return ff_set_common_formats(ctx, formats);
  99. }
  100. static av_cold int init(AVFilterContext *ctx)
  101. {
  102. ATADenoiseContext *s = ctx->priv;
  103. if (!(s->size & 1)) {
  104. av_log(ctx, AV_LOG_WARNING, "size %d is invalid. Must be an odd value, setting it to %d.\n", s->size, s->size|1);
  105. s->size |= 1;
  106. }
  107. s->mid = s->size / 2 + 1;
  108. return 0;
  109. }
  110. typedef struct ThreadData {
  111. AVFrame *in, *out;
  112. } ThreadData;
  113. #define FILTER_ROW(type, name) \
  114. static void filter_row##name(const uint8_t *ssrc, uint8_t *ddst, \
  115. const uint8_t *ssrcf[SIZE], \
  116. int w, int mid, int size, \
  117. int thra, int thrb) \
  118. { \
  119. const type *src = (const type *)ssrc; \
  120. const type **srcf = (const type **)ssrcf; \
  121. type *dst = (type *)ddst; \
  122. \
  123. for (int x = 0; x < w; x++) { \
  124. const int srcx = src[x]; \
  125. unsigned lsumdiff = 0, rsumdiff = 0; \
  126. unsigned ldiff, rdiff; \
  127. unsigned sum = srcx; \
  128. int l = 0, r = 0; \
  129. int srcjx, srcix; \
  130. \
  131. for (int j = mid - 1, i = mid + 1; j >= 0 && i < size; j--, i++) { \
  132. srcjx = srcf[j][x]; \
  133. \
  134. ldiff = FFABS(srcx - srcjx); \
  135. lsumdiff += ldiff; \
  136. if (ldiff > thra || \
  137. lsumdiff > thrb) \
  138. break; \
  139. l++; \
  140. sum += srcjx; \
  141. \
  142. srcix = srcf[i][x]; \
  143. \
  144. rdiff = FFABS(srcx - srcix); \
  145. rsumdiff += rdiff; \
  146. if (rdiff > thra || \
  147. rsumdiff > thrb) \
  148. break; \
  149. r++; \
  150. sum += srcix; \
  151. } \
  152. \
  153. dst[x] = (sum + ((r + l + 1) >> 1)) / (r + l + 1); \
  154. } \
  155. }
  156. FILTER_ROW(uint8_t, 8)
  157. FILTER_ROW(uint16_t, 16)
  158. static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
  159. {
  160. ATADenoiseContext *s = ctx->priv;
  161. ThreadData *td = arg;
  162. AVFrame *in = td->in;
  163. AVFrame *out = td->out;
  164. const int size = s->size;
  165. const int mid = s->mid;
  166. int p, y, i;
  167. for (p = 0; p < s->nb_planes; p++) {
  168. const int h = s->planeheight[p];
  169. const int w = s->planewidth[p];
  170. const int slice_start = (h * jobnr) / nb_jobs;
  171. const int slice_end = (h * (jobnr+1)) / nb_jobs;
  172. const uint8_t *src = in->data[p] + slice_start * in->linesize[p];
  173. uint8_t *dst = out->data[p] + slice_start * out->linesize[p];
  174. const int thra = s->thra[p];
  175. const int thrb = s->thrb[p];
  176. const uint8_t **data = (const uint8_t **)s->data[p];
  177. const int *linesize = (const int *)s->linesize[p];
  178. const uint8_t *srcf[SIZE];
  179. if (!((1 << p) & s->planes)) {
  180. av_image_copy_plane(dst, out->linesize[p], src, in->linesize[p],
  181. w, slice_end - slice_start);
  182. continue;
  183. }
  184. for (i = 0; i < size; i++)
  185. srcf[i] = data[i] + slice_start * linesize[i];
  186. for (y = slice_start; y < slice_end; y++) {
  187. s->filter_row(src, dst, srcf, w, mid, size, thra, thrb);
  188. dst += out->linesize[p];
  189. src += in->linesize[p];
  190. for (i = 0; i < size; i++)
  191. srcf[i] += linesize[i];
  192. }
  193. }
  194. return 0;
  195. }
  196. static int config_input(AVFilterLink *inlink)
  197. {
  198. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  199. AVFilterContext *ctx = inlink->dst;
  200. ATADenoiseContext *s = ctx->priv;
  201. int depth;
  202. s->nb_planes = desc->nb_components;
  203. s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
  204. s->planeheight[0] = s->planeheight[3] = inlink->h;
  205. s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
  206. s->planewidth[0] = s->planewidth[3] = inlink->w;
  207. depth = desc->comp[0].depth;
  208. s->filter_slice = filter_slice;
  209. if (depth == 8)
  210. s->filter_row = filter_row8;
  211. else
  212. s->filter_row = filter_row16;
  213. s->thra[0] = s->fthra[0] * (1 << depth) - 1;
  214. s->thra[1] = s->fthra[1] * (1 << depth) - 1;
  215. s->thra[2] = s->fthra[2] * (1 << depth) - 1;
  216. s->thrb[0] = s->fthrb[0] * (1 << depth) - 1;
  217. s->thrb[1] = s->fthrb[1] * (1 << depth) - 1;
  218. s->thrb[2] = s->fthrb[2] * (1 << depth) - 1;
  219. return 0;
  220. }
  221. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  222. {
  223. AVFilterContext *ctx = inlink->dst;
  224. AVFilterLink *outlink = ctx->outputs[0];
  225. ATADenoiseContext *s = ctx->priv;
  226. AVFrame *out, *in;
  227. int i;
  228. if (s->q.available != s->size) {
  229. if (s->q.available < s->mid) {
  230. for (i = 0; i < s->mid; i++) {
  231. out = av_frame_clone(buf);
  232. if (!out) {
  233. av_frame_free(&buf);
  234. return AVERROR(ENOMEM);
  235. }
  236. ff_bufqueue_add(ctx, &s->q, out);
  237. }
  238. }
  239. if (s->q.available < s->size) {
  240. ff_bufqueue_add(ctx, &s->q, buf);
  241. s->available++;
  242. }
  243. return 0;
  244. }
  245. in = ff_bufqueue_peek(&s->q, s->mid);
  246. if (!ctx->is_disabled) {
  247. ThreadData td;
  248. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  249. if (!out) {
  250. av_frame_free(&buf);
  251. return AVERROR(ENOMEM);
  252. }
  253. for (i = 0; i < s->size; i++) {
  254. AVFrame *frame = ff_bufqueue_peek(&s->q, i);
  255. s->data[0][i] = frame->data[0];
  256. s->data[1][i] = frame->data[1];
  257. s->data[2][i] = frame->data[2];
  258. s->linesize[0][i] = frame->linesize[0];
  259. s->linesize[1][i] = frame->linesize[1];
  260. s->linesize[2][i] = frame->linesize[2];
  261. }
  262. td.in = in; td.out = out;
  263. ctx->internal->execute(ctx, s->filter_slice, &td, NULL,
  264. FFMIN3(s->planeheight[1],
  265. s->planeheight[2],
  266. ff_filter_get_nb_threads(ctx)));
  267. av_frame_copy_props(out, in);
  268. } else {
  269. out = av_frame_clone(in);
  270. if (!out) {
  271. av_frame_free(&buf);
  272. return AVERROR(ENOMEM);
  273. }
  274. }
  275. in = ff_bufqueue_get(&s->q);
  276. av_frame_free(&in);
  277. ff_bufqueue_add(ctx, &s->q, buf);
  278. return ff_filter_frame(outlink, out);
  279. }
  280. static int request_frame(AVFilterLink *outlink)
  281. {
  282. AVFilterContext *ctx = outlink->src;
  283. ATADenoiseContext *s = ctx->priv;
  284. int ret = 0;
  285. ret = ff_request_frame(ctx->inputs[0]);
  286. if (ret == AVERROR_EOF && !ctx->is_disabled && s->available) {
  287. AVFrame *buf = av_frame_clone(ff_bufqueue_peek(&s->q, s->available));
  288. if (!buf)
  289. return AVERROR(ENOMEM);
  290. ret = filter_frame(ctx->inputs[0], buf);
  291. s->available--;
  292. }
  293. return ret;
  294. }
  295. static av_cold void uninit(AVFilterContext *ctx)
  296. {
  297. ATADenoiseContext *s = ctx->priv;
  298. ff_bufqueue_discard_all(&s->q);
  299. }
  300. static const AVFilterPad inputs[] = {
  301. {
  302. .name = "default",
  303. .type = AVMEDIA_TYPE_VIDEO,
  304. .filter_frame = filter_frame,
  305. .config_props = config_input,
  306. },
  307. { NULL }
  308. };
  309. static const AVFilterPad outputs[] = {
  310. {
  311. .name = "default",
  312. .type = AVMEDIA_TYPE_VIDEO,
  313. .request_frame = request_frame,
  314. },
  315. { NULL }
  316. };
  317. AVFilter ff_vf_atadenoise = {
  318. .name = "atadenoise",
  319. .description = NULL_IF_CONFIG_SMALL("Apply an Adaptive Temporal Averaging Denoiser."),
  320. .priv_size = sizeof(ATADenoiseContext),
  321. .priv_class = &atadenoise_class,
  322. .init = init,
  323. .uninit = uninit,
  324. .query_formats = query_formats,
  325. .inputs = inputs,
  326. .outputs = outputs,
  327. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
  328. };