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.

259 lines
13KB

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