vf_bitplanenoise.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright (c) 2016 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/opt.h"
  21. #include "libavutil/imgutils.h"
  22. #include "avfilter.h"
  23. #include "formats.h"
  24. #include "internal.h"
  25. #include "video.h"
  26. typedef struct BPNContext {
  27. const AVClass *class;
  28. int bitplane;
  29. int filter;
  30. int nb_planes;
  31. int planeheight[4];
  32. int planewidth[4];
  33. int depth;
  34. } BPNContext;
  35. #define OFFSET(x) offsetof(BPNContext, x)
  36. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  37. static const AVOption bitplanenoise_options[] = {
  38. { "bitplane", "set bit plane to use for measuring noise", OFFSET(bitplane), AV_OPT_TYPE_INT, {.i64=1}, 1, 16, FLAGS},
  39. { "filter", "show noisy pixels", OFFSET(filter), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS},
  40. { NULL }
  41. };
  42. AVFILTER_DEFINE_CLASS(bitplanenoise);
  43. static int query_formats(AVFilterContext *ctx)
  44. {
  45. static const enum AVPixelFormat pixfmts[] = {
  46. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  47. AV_PIX_FMT_YUV440P,
  48. AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ411P,
  49. AV_PIX_FMT_YUVJ440P,
  50. AV_PIX_FMT_YUV444P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV420P9,
  51. AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV420P10,
  52. AV_PIX_FMT_YUV440P10,
  53. AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV420P12,
  54. AV_PIX_FMT_YUV440P12,
  55. AV_PIX_FMT_YUV444P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV420P14,
  56. AV_PIX_FMT_YUV444P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV420P16,
  57. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10,
  58. AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
  59. AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY9, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY14, AV_PIX_FMT_GRAY16,
  60. AV_PIX_FMT_NONE
  61. };
  62. AVFilterFormats *formats = ff_make_format_list(pixfmts);
  63. if (!formats)
  64. return AVERROR(ENOMEM);
  65. return ff_set_common_formats(ctx, formats);
  66. }
  67. static int config_input(AVFilterLink *inlink)
  68. {
  69. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  70. AVFilterContext *ctx = inlink->dst;
  71. BPNContext *s = ctx->priv;
  72. s->nb_planes = desc->nb_components;
  73. s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
  74. s->planeheight[0] = s->planeheight[3] = inlink->h;
  75. s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
  76. s->planewidth[0] = s->planewidth[3] = inlink->w;
  77. s->depth = desc->comp[0].depth;
  78. return 0;
  79. }
  80. #define CHECK_BIT(x, a, b, c) { \
  81. bit = (((val[(x)] & mask) == (val[(x) + (a)] & mask)) + \
  82. ((val[(x)] & mask) == (val[(x) + (b)] & mask)) + \
  83. ((val[(x)] & mask) == (val[(x) + (c)] & mask))) > 1; \
  84. if (dst) \
  85. dst[(x)] = factor * bit; \
  86. stats[plane] += bit; }
  87. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  88. {
  89. AVFilterContext *ctx = inlink->dst;
  90. AVFilterLink *outlink = ctx->outputs[0];
  91. BPNContext *s = ctx->priv;
  92. const int mask = (1 << (s->bitplane - 1));
  93. const int factor = (1 << s->depth) - 1;
  94. float stats[4] = { 0 };
  95. char metabuf[128];
  96. int plane, y, x, bit;
  97. AVFrame *out = s->filter ? NULL : in;
  98. if (!out) {
  99. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  100. if (!out) {
  101. av_frame_free(&in);
  102. return AVERROR(ENOMEM);
  103. }
  104. av_frame_copy_props(out, in);
  105. }
  106. if (s->depth <= 8) {
  107. for (plane = 0; plane < s->nb_planes; plane++) {
  108. const int linesize = in->linesize[plane];
  109. const int dlinesize = out->linesize[plane];
  110. uint8_t *val = in->data[plane];
  111. uint8_t *dst = s->filter ? out->data[plane]: NULL;
  112. for (y = 0; y < s->planeheight[plane] - 1; y++) {
  113. CHECK_BIT(0, 1, 1 + linesize, linesize)
  114. for (x = 1; x < s->planewidth[plane] - 1; x++) {
  115. CHECK_BIT(x, -1, 1, linesize)
  116. }
  117. CHECK_BIT(x, -1, -1 + linesize, linesize)
  118. val += linesize;
  119. if (dst)
  120. dst += dlinesize;
  121. }
  122. CHECK_BIT(0, 1, 1 - linesize, -linesize)
  123. for (x = 1; x < s->planewidth[plane] - 1; x++) {
  124. CHECK_BIT(x, -1, 1, -linesize)
  125. }
  126. CHECK_BIT(x, -1, -1 - linesize, -linesize)
  127. }
  128. } else {
  129. for (plane = 0; plane < s->nb_planes; plane++) {
  130. const int linesize = in->linesize[plane] / 2;
  131. const int dlinesize = out->linesize[plane] / 2;
  132. uint16_t *val = (uint16_t *)in->data[plane];
  133. uint16_t *dst = s->filter ? (uint16_t *)out->data[plane] : NULL;
  134. val = (uint16_t *)in->data[plane];
  135. for (y = 0; y < s->planeheight[plane] - 1; y++) {
  136. CHECK_BIT(0, 1, 1 + linesize, linesize)
  137. for (x = 1; x < s->planewidth[plane] - 1; x++) {
  138. CHECK_BIT(x, -1, 1, linesize)
  139. }
  140. CHECK_BIT(x, -1, -1 + linesize, linesize)
  141. val += linesize;
  142. if (dst)
  143. dst += dlinesize;
  144. }
  145. CHECK_BIT(0, 1, 1 - linesize, -linesize)
  146. for (x = 1; x < s->planewidth[plane] - 1; x++) {
  147. CHECK_BIT(x, -1, 1, -linesize)
  148. }
  149. CHECK_BIT(x, -1, -1 -linesize, -linesize)
  150. }
  151. }
  152. for (plane = 0; plane < s->nb_planes; plane++) {
  153. char key[32];
  154. stats[plane] /= s->planewidth[plane] * s->planeheight[plane];
  155. snprintf(key, sizeof(key), "lavfi.bitplanenoise.%d.%d", plane, s->bitplane);
  156. snprintf(metabuf, sizeof(metabuf), "%f", 1. - 2.* fabs((stats[plane] - 0.5)));
  157. av_dict_set(&out->metadata, key, metabuf, 0);
  158. }
  159. if (out != in)
  160. av_frame_free(&in);
  161. return ff_filter_frame(outlink, out);
  162. }
  163. static const AVFilterPad inputs[] = {
  164. {
  165. .name = "default",
  166. .type = AVMEDIA_TYPE_VIDEO,
  167. .filter_frame = filter_frame,
  168. .config_props = config_input,
  169. },
  170. { NULL }
  171. };
  172. static const AVFilterPad outputs[] = {
  173. {
  174. .name = "default",
  175. .type = AVMEDIA_TYPE_VIDEO,
  176. },
  177. { NULL }
  178. };
  179. AVFilter ff_vf_bitplanenoise = {
  180. .name = "bitplanenoise",
  181. .description = NULL_IF_CONFIG_SMALL("Measure bit plane noise."),
  182. .priv_size = sizeof(BPNContext),
  183. .query_formats = query_formats,
  184. .inputs = inputs,
  185. .outputs = outputs,
  186. .priv_class = &bitplanenoise_class,
  187. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  188. };