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.

455 lines
18KB

  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 "atadenoise.h"
  33. #include "formats.h"
  34. #include "internal.h"
  35. #include "video.h"
  36. #define SIZE FF_BUFQUEUE_SIZE
  37. typedef struct ATADenoiseContext {
  38. const AVClass *class;
  39. float fthra[4], fthrb[4];
  40. int thra[4], thrb[4];
  41. int algorithm;
  42. int planes;
  43. int nb_planes;
  44. int planewidth[4];
  45. int planeheight[4];
  46. struct FFBufQueue q;
  47. void *data[4][SIZE];
  48. int linesize[4][SIZE];
  49. int size, mid;
  50. int available;
  51. int (*filter_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  52. ATADenoiseDSPContext dsp;
  53. } ATADenoiseContext;
  54. #define OFFSET(x) offsetof(ATADenoiseContext, x)
  55. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
  56. #define VF 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, VF },
  65. { "p", "set what planes to filter", OFFSET(planes), AV_OPT_TYPE_FLAGS, {.i64=7}, 0, 15, FLAGS },
  66. { "a", "set variant of algorithm", OFFSET(algorithm),AV_OPT_TYPE_INT, {.i64=PARALLEL}, 0, NB_ATAA-1, FLAGS, "a" },
  67. { "p", "parallel", 0, AV_OPT_TYPE_CONST, {.i64=PARALLEL}, 0, 0, FLAGS, "a" },
  68. { "s", "serial", 0, AV_OPT_TYPE_CONST, {.i64=SERIAL}, 0, 0, FLAGS, "a" },
  69. { NULL }
  70. };
  71. AVFILTER_DEFINE_CLASS(atadenoise);
  72. static int query_formats(AVFilterContext *ctx)
  73. {
  74. static const enum AVPixelFormat pixel_fmts[] = {
  75. AV_PIX_FMT_GRAY8,
  76. AV_PIX_FMT_GRAY9,
  77. AV_PIX_FMT_GRAY10,
  78. AV_PIX_FMT_GRAY12,
  79. AV_PIX_FMT_GRAY14,
  80. AV_PIX_FMT_GRAY16,
  81. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P,
  82. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P,
  83. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P,
  84. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P,
  85. AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ444P,
  86. AV_PIX_FMT_YUVJ411P,
  87. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  88. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
  89. AV_PIX_FMT_YUV440P10,
  90. AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV420P12,
  91. AV_PIX_FMT_YUV440P12,
  92. AV_PIX_FMT_YUV444P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV420P14,
  93. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  94. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10,
  95. AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
  96. AV_PIX_FMT_NONE
  97. };
  98. AVFilterFormats *formats = ff_make_format_list(pixel_fmts);
  99. if (!formats)
  100. return AVERROR(ENOMEM);
  101. return ff_set_common_formats(ctx, formats);
  102. }
  103. static av_cold int init(AVFilterContext *ctx)
  104. {
  105. ATADenoiseContext *s = ctx->priv;
  106. if (!(s->size & 1)) {
  107. 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);
  108. s->size |= 1;
  109. }
  110. s->mid = s->size / 2 + 1;
  111. return 0;
  112. }
  113. typedef struct ThreadData {
  114. AVFrame *in, *out;
  115. } ThreadData;
  116. #define FILTER_ROW(type, name) \
  117. static void filter_row##name(const uint8_t *ssrc, uint8_t *ddst, \
  118. const uint8_t *ssrcf[SIZE], \
  119. int w, int mid, int size, \
  120. int thra, int thrb) \
  121. { \
  122. const type *src = (const type *)ssrc; \
  123. const type **srcf = (const type **)ssrcf; \
  124. type *dst = (type *)ddst; \
  125. \
  126. for (int x = 0; x < w; x++) { \
  127. const int srcx = src[x]; \
  128. unsigned lsumdiff = 0, rsumdiff = 0; \
  129. unsigned ldiff, rdiff; \
  130. unsigned sum = srcx; \
  131. int l = 0, r = 0; \
  132. int srcjx, srcix; \
  133. \
  134. for (int j = mid - 1, i = mid + 1; j >= 0 && i < size; j--, i++) { \
  135. srcjx = srcf[j][x]; \
  136. \
  137. ldiff = FFABS(srcx - srcjx); \
  138. lsumdiff += ldiff; \
  139. if (ldiff > thra || \
  140. lsumdiff > thrb) \
  141. break; \
  142. l++; \
  143. sum += srcjx; \
  144. \
  145. srcix = srcf[i][x]; \
  146. \
  147. rdiff = FFABS(srcx - srcix); \
  148. rsumdiff += rdiff; \
  149. if (rdiff > thra || \
  150. rsumdiff > thrb) \
  151. break; \
  152. r++; \
  153. sum += srcix; \
  154. } \
  155. \
  156. dst[x] = (sum + ((r + l + 1) >> 1)) / (r + l + 1); \
  157. } \
  158. }
  159. FILTER_ROW(uint8_t, 8)
  160. FILTER_ROW(uint16_t, 16)
  161. #define FILTER_ROW_SERIAL(type, name) \
  162. static void filter_row##name##_serial(const uint8_t *ssrc, uint8_t *ddst, \
  163. const uint8_t *ssrcf[SIZE], \
  164. int w, int mid, int size, \
  165. int thra, int thrb) \
  166. { \
  167. const type *src = (const type *)ssrc; \
  168. const type **srcf = (const type **)ssrcf; \
  169. type *dst = (type *)ddst; \
  170. \
  171. for (int x = 0; x < w; x++) { \
  172. const int srcx = src[x]; \
  173. unsigned lsumdiff = 0, rsumdiff = 0; \
  174. unsigned ldiff, rdiff; \
  175. unsigned sum = srcx; \
  176. int l = 0, r = 0; \
  177. int srcjx, srcix; \
  178. \
  179. for (int j = mid - 1; j >= 0; j--) { \
  180. srcjx = srcf[j][x]; \
  181. \
  182. ldiff = FFABS(srcx - srcjx); \
  183. lsumdiff += ldiff; \
  184. if (ldiff > thra || \
  185. lsumdiff > thrb) \
  186. break; \
  187. l++; \
  188. sum += srcjx; \
  189. } \
  190. \
  191. for (int i = mid + 1; i < size; i++) { \
  192. srcix = srcf[i][x]; \
  193. \
  194. rdiff = FFABS(srcx - srcix); \
  195. rsumdiff += rdiff; \
  196. if (rdiff > thra || \
  197. rsumdiff > thrb) \
  198. break; \
  199. r++; \
  200. sum += srcix; \
  201. } \
  202. \
  203. dst[x] = (sum + ((r + l + 1) >> 1)) / (r + l + 1); \
  204. } \
  205. }
  206. FILTER_ROW_SERIAL(uint8_t, 8)
  207. FILTER_ROW_SERIAL(uint16_t, 16)
  208. static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
  209. {
  210. ATADenoiseContext *s = ctx->priv;
  211. ThreadData *td = arg;
  212. AVFrame *in = td->in;
  213. AVFrame *out = td->out;
  214. const int size = s->size;
  215. const int mid = s->mid;
  216. int p, y, i;
  217. for (p = 0; p < s->nb_planes; p++) {
  218. const int h = s->planeheight[p];
  219. const int w = s->planewidth[p];
  220. const int slice_start = (h * jobnr) / nb_jobs;
  221. const int slice_end = (h * (jobnr+1)) / nb_jobs;
  222. const uint8_t *src = in->data[p] + slice_start * in->linesize[p];
  223. uint8_t *dst = out->data[p] + slice_start * out->linesize[p];
  224. const int thra = s->thra[p];
  225. const int thrb = s->thrb[p];
  226. const uint8_t **data = (const uint8_t **)s->data[p];
  227. const int *linesize = (const int *)s->linesize[p];
  228. const uint8_t *srcf[SIZE];
  229. if (!((1 << p) & s->planes)) {
  230. av_image_copy_plane(dst, out->linesize[p], src, in->linesize[p],
  231. w, slice_end - slice_start);
  232. continue;
  233. }
  234. for (i = 0; i < size; i++)
  235. srcf[i] = data[i] + slice_start * linesize[i];
  236. for (y = slice_start; y < slice_end; y++) {
  237. s->dsp.filter_row(src, dst, srcf, w, mid, size, thra, thrb);
  238. dst += out->linesize[p];
  239. src += in->linesize[p];
  240. for (i = 0; i < size; i++)
  241. srcf[i] += linesize[i];
  242. }
  243. }
  244. return 0;
  245. }
  246. static int config_input(AVFilterLink *inlink)
  247. {
  248. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  249. AVFilterContext *ctx = inlink->dst;
  250. ATADenoiseContext *s = ctx->priv;
  251. int depth;
  252. s->nb_planes = desc->nb_components;
  253. s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
  254. s->planeheight[0] = s->planeheight[3] = inlink->h;
  255. s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
  256. s->planewidth[0] = s->planewidth[3] = inlink->w;
  257. depth = desc->comp[0].depth;
  258. s->filter_slice = filter_slice;
  259. if (depth == 8)
  260. s->dsp.filter_row = s->algorithm == PARALLEL ? filter_row8 : filter_row8_serial;
  261. else
  262. s->dsp.filter_row = s->algorithm == PARALLEL ? filter_row16 : filter_row16_serial;
  263. s->thra[0] = s->fthra[0] * (1 << depth) - 1;
  264. s->thra[1] = s->fthra[1] * (1 << depth) - 1;
  265. s->thra[2] = s->fthra[2] * (1 << depth) - 1;
  266. s->thrb[0] = s->fthrb[0] * (1 << depth) - 1;
  267. s->thrb[1] = s->fthrb[1] * (1 << depth) - 1;
  268. s->thrb[2] = s->fthrb[2] * (1 << depth) - 1;
  269. if (ARCH_X86)
  270. ff_atadenoise_init_x86(&s->dsp, depth, s->algorithm);
  271. return 0;
  272. }
  273. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  274. {
  275. AVFilterContext *ctx = inlink->dst;
  276. AVFilterLink *outlink = ctx->outputs[0];
  277. ATADenoiseContext *s = ctx->priv;
  278. AVFrame *out, *in;
  279. int i;
  280. if (s->q.available != s->size) {
  281. if (s->q.available < s->mid) {
  282. for (i = 0; i < s->mid; i++) {
  283. out = av_frame_clone(buf);
  284. if (!out) {
  285. av_frame_free(&buf);
  286. return AVERROR(ENOMEM);
  287. }
  288. ff_bufqueue_add(ctx, &s->q, out);
  289. }
  290. }
  291. if (s->q.available < s->size) {
  292. ff_bufqueue_add(ctx, &s->q, buf);
  293. s->available++;
  294. }
  295. return 0;
  296. }
  297. in = ff_bufqueue_peek(&s->q, s->mid);
  298. if (!ctx->is_disabled) {
  299. ThreadData td;
  300. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  301. if (!out) {
  302. av_frame_free(&buf);
  303. return AVERROR(ENOMEM);
  304. }
  305. for (i = 0; i < s->size; i++) {
  306. AVFrame *frame = ff_bufqueue_peek(&s->q, i);
  307. s->data[0][i] = frame->data[0];
  308. s->data[1][i] = frame->data[1];
  309. s->data[2][i] = frame->data[2];
  310. s->linesize[0][i] = frame->linesize[0];
  311. s->linesize[1][i] = frame->linesize[1];
  312. s->linesize[2][i] = frame->linesize[2];
  313. }
  314. td.in = in; td.out = out;
  315. ctx->internal->execute(ctx, s->filter_slice, &td, NULL,
  316. FFMIN3(s->planeheight[1],
  317. s->planeheight[2],
  318. ff_filter_get_nb_threads(ctx)));
  319. av_frame_copy_props(out, in);
  320. } else {
  321. out = av_frame_clone(in);
  322. if (!out) {
  323. av_frame_free(&buf);
  324. return AVERROR(ENOMEM);
  325. }
  326. }
  327. in = ff_bufqueue_get(&s->q);
  328. av_frame_free(&in);
  329. ff_bufqueue_add(ctx, &s->q, buf);
  330. return ff_filter_frame(outlink, out);
  331. }
  332. static int request_frame(AVFilterLink *outlink)
  333. {
  334. AVFilterContext *ctx = outlink->src;
  335. ATADenoiseContext *s = ctx->priv;
  336. int ret = 0;
  337. ret = ff_request_frame(ctx->inputs[0]);
  338. if (ret == AVERROR_EOF && !ctx->is_disabled && s->available) {
  339. AVFrame *buf = av_frame_clone(ff_bufqueue_peek(&s->q, s->available));
  340. if (!buf)
  341. return AVERROR(ENOMEM);
  342. ret = filter_frame(ctx->inputs[0], buf);
  343. s->available--;
  344. }
  345. return ret;
  346. }
  347. static av_cold void uninit(AVFilterContext *ctx)
  348. {
  349. ATADenoiseContext *s = ctx->priv;
  350. ff_bufqueue_discard_all(&s->q);
  351. }
  352. static int process_command(AVFilterContext *ctx,
  353. const char *cmd,
  354. const char *arg,
  355. char *res,
  356. int res_len,
  357. int flags)
  358. {
  359. int ret = ff_filter_process_command(ctx, cmd, arg, res, res_len, flags);
  360. if (ret < 0)
  361. return ret;
  362. return config_input(ctx->inputs[0]);
  363. }
  364. static const AVFilterPad inputs[] = {
  365. {
  366. .name = "default",
  367. .type = AVMEDIA_TYPE_VIDEO,
  368. .filter_frame = filter_frame,
  369. .config_props = config_input,
  370. },
  371. { NULL }
  372. };
  373. static const AVFilterPad outputs[] = {
  374. {
  375. .name = "default",
  376. .type = AVMEDIA_TYPE_VIDEO,
  377. .request_frame = request_frame,
  378. },
  379. { NULL }
  380. };
  381. AVFilter ff_vf_atadenoise = {
  382. .name = "atadenoise",
  383. .description = NULL_IF_CONFIG_SMALL("Apply an Adaptive Temporal Averaging Denoiser."),
  384. .priv_size = sizeof(ATADenoiseContext),
  385. .priv_class = &atadenoise_class,
  386. .init = init,
  387. .uninit = uninit,
  388. .query_formats = query_formats,
  389. .inputs = inputs,
  390. .outputs = outputs,
  391. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
  392. .process_command = process_command,
  393. };