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.

276 lines
14KB

  1. /*
  2. * Copyright (c) 2020 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. #include "libavutil/avstring.h"
  21. #include "libavutil/imgutils.h"
  22. #include "libavutil/opt.h"
  23. #include "libavutil/pixdesc.h"
  24. #include "avfilter.h"
  25. #include "formats.h"
  26. #include "internal.h"
  27. #include "video.h"
  28. typedef struct ChromaNRContext {
  29. const AVClass *class;
  30. float threshold;
  31. float threshold_y;
  32. float threshold_u;
  33. float threshold_v;
  34. int thres;
  35. int thres_y;
  36. int thres_u;
  37. int thres_v;
  38. int sizew;
  39. int sizeh;
  40. int stepw;
  41. int steph;
  42. int depth;
  43. int chroma_w;
  44. int chroma_h;
  45. int nb_planes;
  46. int linesize[4];
  47. int planeheight[4];
  48. int planewidth[4];
  49. AVFrame *out;
  50. int (*filter_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  51. } ChromaNRContext;
  52. static int query_formats(AVFilterContext *ctx)
  53. {
  54. static const enum AVPixelFormat pix_fmts[] = {
  55. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV444P,
  56. AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P,
  57. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ411P,
  58. AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
  59. AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV440P10, AV_PIX_FMT_YUV444P10,
  60. AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV440P12, AV_PIX_FMT_YUV420P12,
  61. AV_PIX_FMT_YUV444P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV420P14,
  62. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  63. AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
  64. AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
  65. AV_PIX_FMT_YUVA422P12, AV_PIX_FMT_YUVA444P12,
  66. AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
  67. AV_PIX_FMT_NONE
  68. };
  69. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  70. if (!fmts_list)
  71. return AVERROR(ENOMEM);
  72. return ff_set_common_formats(ctx, fmts_list);
  73. }
  74. #define FILTER_FUNC(name, type) \
  75. static int filter_slice##name(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) \
  76. { \
  77. ChromaNRContext *s = ctx->priv; \
  78. AVFrame *in = arg; \
  79. AVFrame *out = s->out; \
  80. const int in_ylinesize = in->linesize[0]; \
  81. const int in_ulinesize = in->linesize[1]; \
  82. const int in_vlinesize = in->linesize[2]; \
  83. const int out_ulinesize = out->linesize[1]; \
  84. const int out_vlinesize = out->linesize[2]; \
  85. const int chroma_w = s->chroma_w; \
  86. const int chroma_h = s->chroma_h; \
  87. const int stepw = s->stepw; \
  88. const int steph = s->steph; \
  89. const int sizew = s->sizew; \
  90. const int sizeh = s->sizeh; \
  91. const int thres = s->thres; \
  92. const int thres_y = s->thres_y; \
  93. const int thres_u = s->thres_u; \
  94. const int thres_v = s->thres_v; \
  95. const int h = s->planeheight[1]; \
  96. const int w = s->planewidth[1]; \
  97. const int slice_start = (h * jobnr) / nb_jobs; \
  98. const int slice_end = (h * (jobnr+1)) / nb_jobs; \
  99. type *out_uptr = (type *)(out->data[1] + slice_start * out_ulinesize); \
  100. type *out_vptr = (type *)(out->data[2] + slice_start * out_vlinesize); \
  101. \
  102. { \
  103. const int h = s->planeheight[0]; \
  104. const int slice_start = (h * jobnr) / nb_jobs; \
  105. const int slice_end = (h * (jobnr+1)) / nb_jobs; \
  106. \
  107. av_image_copy_plane(out->data[0] + slice_start * out->linesize[0], \
  108. out->linesize[0], \
  109. in->data[0] + slice_start * in->linesize[0], \
  110. in->linesize[0], \
  111. s->linesize[0], slice_end - slice_start); \
  112. \
  113. if (s->nb_planes == 4) { \
  114. av_image_copy_plane(out->data[3] + slice_start * out->linesize[3], \
  115. out->linesize[3], \
  116. in->data[3] + slice_start * in->linesize[3], \
  117. in->linesize[3], \
  118. s->linesize[3], slice_end - slice_start); \
  119. } \
  120. } \
  121. \
  122. for (int y = slice_start; y < slice_end; y++) { \
  123. const type *in_yptr = (const type *)(in->data[0] + y * chroma_h * in_ylinesize); \
  124. const type *in_uptr = (const type *)(in->data[1] + y * in_ulinesize); \
  125. const type *in_vptr = (const type *)(in->data[2] + y * in_vlinesize); \
  126. \
  127. for (int x = 0; x < w; x++) { \
  128. const int cy = in_yptr[x * chroma_w]; \
  129. const int cu = in_uptr[x]; \
  130. const int cv = in_vptr[x]; \
  131. int su = cu; \
  132. int sv = cv; \
  133. int cn = 1; \
  134. \
  135. for (int yy = FFMAX(0, y - sizeh); yy < FFMIN(y + sizeh, h); yy += steph) { \
  136. const type *in_yptr = (const type *)(in->data[0] + yy * chroma_h * in_ylinesize); \
  137. const type *in_uptr = (const type *)(in->data[1] + yy * in_ulinesize); \
  138. const type *in_vptr = (const type *)(in->data[2] + yy * in_vlinesize); \
  139. \
  140. for (int xx = FFMAX(0, x - sizew); xx < FFMIN(x + sizew, w); xx += stepw) { \
  141. const int Y = in_yptr[xx * chroma_w]; \
  142. const int U = in_uptr[xx]; \
  143. const int V = in_vptr[xx]; \
  144. \
  145. if (FFABS(cu - U) + FFABS(cv - V) + FFABS(cy - Y) < thres && \
  146. FFABS(cu - U) < thres_u && FFABS(cv - V) < thres_v && \
  147. FFABS(cy - Y) < thres_y && \
  148. xx != x && yy != y) { \
  149. su += U; \
  150. sv += V; \
  151. cn++; \
  152. } \
  153. } \
  154. } \
  155. \
  156. out_uptr[x] = su / cn; \
  157. out_vptr[x] = sv / cn; \
  158. } \
  159. \
  160. out_uptr += out_ulinesize / sizeof(type); \
  161. out_vptr += out_vlinesize / sizeof(type); \
  162. } \
  163. \
  164. return 0; \
  165. }
  166. FILTER_FUNC(8, uint8_t)
  167. FILTER_FUNC(16, uint16_t)
  168. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  169. {
  170. AVFilterContext *ctx = inlink->dst;
  171. AVFilterLink *outlink = ctx->outputs[0];
  172. ChromaNRContext *s = ctx->priv;
  173. AVFrame *out;
  174. s->thres = s->threshold * (1 << (s->depth - 8));
  175. s->thres_y = s->threshold_y * (1 << (s->depth - 8));
  176. s->thres_u = s->threshold_u * (1 << (s->depth - 8));
  177. s->thres_v = s->threshold_v * (1 << (s->depth - 8));
  178. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  179. if (!out) {
  180. av_frame_free(&in);
  181. return AVERROR(ENOMEM);
  182. }
  183. av_frame_copy_props(out, in);
  184. s->out = out;
  185. ctx->internal->execute(ctx, s->filter_slice, in, NULL,
  186. FFMIN3(s->planeheight[1],
  187. s->planeheight[2],
  188. ff_filter_get_nb_threads(ctx)));
  189. av_frame_free(&in);
  190. return ff_filter_frame(outlink, out);
  191. }
  192. static int config_input(AVFilterLink *inlink)
  193. {
  194. AVFilterContext *ctx = inlink->dst;
  195. ChromaNRContext *s = ctx->priv;
  196. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  197. int ret;
  198. s->nb_planes = desc->nb_components;
  199. s->depth = desc->comp[0].depth;
  200. s->filter_slice = s->depth <= 8 ? filter_slice8 : filter_slice16;
  201. s->chroma_w = 1 << desc->log2_chroma_w;
  202. s->chroma_h = 1 << desc->log2_chroma_h;
  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. if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
  208. return ret;
  209. return 0;
  210. }
  211. #define OFFSET(x) offsetof(ChromaNRContext, x)
  212. #define VF AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
  213. static const AVOption chromanr_options[] = {
  214. { "thres", "set y+u+v threshold", OFFSET(threshold), AV_OPT_TYPE_FLOAT, {.dbl=30}, 1, 200, VF },
  215. { "sizew", "set horizontal size", OFFSET(sizew), AV_OPT_TYPE_INT, {.i64=5}, 1, 100, VF },
  216. { "sizeh", "set vertical size", OFFSET(sizeh), AV_OPT_TYPE_INT, {.i64=5}, 1, 100, VF },
  217. { "stepw", "set horizontal step", OFFSET(stepw), AV_OPT_TYPE_INT, {.i64=1}, 1, 50, VF },
  218. { "steph", "set vertical step", OFFSET(steph), AV_OPT_TYPE_INT, {.i64=1}, 1, 50, VF },
  219. { "threy", "set y threshold", OFFSET(threshold_y), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
  220. { "threu", "set u threshold", OFFSET(threshold_u), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
  221. { "threv", "set v threshold", OFFSET(threshold_v), AV_OPT_TYPE_FLOAT, {.dbl=200},1, 200, VF },
  222. { NULL }
  223. };
  224. static const AVFilterPad inputs[] = {
  225. {
  226. .name = "default",
  227. .type = AVMEDIA_TYPE_VIDEO,
  228. .filter_frame = filter_frame,
  229. .config_props = config_input,
  230. },
  231. { NULL }
  232. };
  233. static const AVFilterPad outputs[] = {
  234. {
  235. .name = "default",
  236. .type = AVMEDIA_TYPE_VIDEO,
  237. },
  238. { NULL }
  239. };
  240. AVFILTER_DEFINE_CLASS(chromanr);
  241. AVFilter ff_vf_chromanr = {
  242. .name = "chromanr",
  243. .description = NULL_IF_CONFIG_SMALL("Reduce chrominance noise."),
  244. .priv_size = sizeof(ChromaNRContext),
  245. .priv_class = &chromanr_class,
  246. .query_formats = query_formats,
  247. .outputs = outputs,
  248. .inputs = inputs,
  249. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
  250. .process_command = ff_filter_process_command,
  251. };