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.

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