FFmpeg
vf_bitplanenoise.c
Go to the documentation of this file.
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 
21 #include "libavutil/opt.h"
22 #include "libavutil/imgutils.h"
23 #include "avfilter.h"
24 #include "formats.h"
25 #include "internal.h"
26 #include "video.h"
27 
28 typedef struct BPNContext {
29  const AVClass *class;
30 
31  int bitplane;
32  int filter;
33 
34  int nb_planes;
35  int planeheight[4];
36  int planewidth[4];
37  int depth;
38 } BPNContext;
39 
40 #define OFFSET(x) offsetof(BPNContext, x)
41 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
42 static const AVOption bitplanenoise_options[] = {
43  { "bitplane", "set bit plane to use for measuring noise", OFFSET(bitplane), AV_OPT_TYPE_INT, {.i64=1}, 1, 16, FLAGS},
44  { "filter", "show noisy pixels", OFFSET(filter), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS},
45  { NULL }
46 };
47 
48 AVFILTER_DEFINE_CLASS(bitplanenoise);
49 
50 static const enum AVPixelFormat pixfmts[] = {
66 };
67 
69 {
71  AVFilterContext *ctx = inlink->dst;
72  BPNContext *s = ctx->priv;
73 
74  s->nb_planes = desc->nb_components;
75 
76  s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
77  s->planeheight[0] = s->planeheight[3] = inlink->h;
78  s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
79  s->planewidth[0] = s->planewidth[3] = inlink->w;
80 
81  s->depth = desc->comp[0].depth;
82 
83  return 0;
84 }
85 
86 #define CHECK_BIT(x, a, b, c) { \
87  bit = (((val[(x)] & mask) == (val[(x) + (a)] & mask)) + \
88  ((val[(x)] & mask) == (val[(x) + (b)] & mask)) + \
89  ((val[(x)] & mask) == (val[(x) + (c)] & mask))) > 1; \
90  if (dst) \
91  dst[(x)] = factor * bit; \
92  stats[plane] += bit; }
93 
95 {
96  AVFilterContext *ctx = inlink->dst;
97  AVFilterLink *outlink = ctx->outputs[0];
98  BPNContext *s = ctx->priv;
99  const int mask = (1 << (s->bitplane - 1));
100  const int factor = (1 << s->depth) - 1;
101  float stats[4] = { 0 };
102  char metabuf[128];
103  int plane, y, x, bit;
104  AVFrame *out = s->filter ? NULL : in;
105 
106  if (!out) {
107  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
108  if (!out) {
109  av_frame_free(&in);
110  return AVERROR(ENOMEM);
111  }
113  }
114 
115  if (s->depth <= 8) {
116  for (plane = 0; plane < s->nb_planes; plane++) {
117  const int linesize = s->planeheight[plane] > 1 ? in->linesize[plane] : 0;
118  const int dlinesize = out->linesize[plane];
119  uint8_t *val = in->data[plane];
120  uint8_t *dst = s->filter ? out->data[plane]: NULL;
121 
122  for (y = 0; y < s->planeheight[plane] - 1; y++) {
123  CHECK_BIT(0, 1, 1 + linesize, linesize)
124 
125  for (x = 1; x < s->planewidth[plane] - 1; x++) {
126  CHECK_BIT(x, -1, 1, linesize)
127  }
128 
129  CHECK_BIT(x, -1, -1 + linesize, linesize)
130 
131  val += linesize;
132  if (dst)
133  dst += dlinesize;
134  }
135 
136  CHECK_BIT(0, 1, 1 - linesize, -linesize)
137 
138  for (x = 1; x < s->planewidth[plane] - 1; x++) {
139  CHECK_BIT(x, -1, 1, -linesize)
140  }
141 
142  CHECK_BIT(x, -1, -1 - linesize, -linesize)
143  }
144  } else {
145  for (plane = 0; plane < s->nb_planes; plane++) {
146  const int linesize = s->planeheight[plane] > 1 ? in->linesize[plane] / 2 : 0;
147  const int dlinesize = out->linesize[plane] / 2;
148  uint16_t *val = (uint16_t *)in->data[plane];
149  uint16_t *dst = s->filter ? (uint16_t *)out->data[plane] : NULL;
150 
151  val = (uint16_t *)in->data[plane];
152  for (y = 0; y < s->planeheight[plane] - 1; y++) {
153  CHECK_BIT(0, 1, 1 + linesize, linesize)
154 
155  for (x = 1; x < s->planewidth[plane] - 1; x++) {
156  CHECK_BIT(x, -1, 1, linesize)
157  }
158 
159  CHECK_BIT(x, -1, -1 + linesize, linesize)
160 
161  val += linesize;
162  if (dst)
163  dst += dlinesize;
164  }
165 
166  CHECK_BIT(0, 1, 1 - linesize, -linesize)
167 
168  for (x = 1; x < s->planewidth[plane] - 1; x++) {
169  CHECK_BIT(x, -1, 1, -linesize)
170  }
171 
172  CHECK_BIT(x, -1, -1 -linesize, -linesize)
173  }
174  }
175 
176  for (plane = 0; plane < s->nb_planes; plane++) {
177  char key[32];
178 
179  stats[plane] /= s->planewidth[plane] * s->planeheight[plane];
180  snprintf(key, sizeof(key), "lavfi.bitplanenoise.%d.%d", plane, s->bitplane);
181  snprintf(metabuf, sizeof(metabuf), "%f", 1. - 2.* fabs((stats[plane] - 0.5)));
182  av_dict_set(&out->metadata, key, metabuf, 0);
183  }
184 
185  if (out != in)
186  av_frame_free(&in);
187 
188  return ff_filter_frame(outlink, out);
189 }
190 
191 static const AVFilterPad inputs[] = {
192  {
193  .name = "default",
194  .type = AVMEDIA_TYPE_VIDEO,
195  .filter_frame = filter_frame,
196  .config_props = config_input,
197  },
198 };
199 
200 static const AVFilterPad outputs[] = {
201  {
202  .name = "default",
203  .type = AVMEDIA_TYPE_VIDEO,
204  },
205 };
206 
208  .name = "bitplanenoise",
209  .description = NULL_IF_CONFIG_SMALL("Measure bit plane noise."),
210  .priv_size = sizeof(BPNContext),
214  .priv_class = &bitplanenoise_class,
216 };
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:98
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
out
FILE * out
Definition: movenc.c:54
stats
static void stats(AVPacket *const *in, int n_in, unsigned *_max, unsigned *_sum)
Definition: vp9_superframe_bsf.c:34
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1018
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2660
FILTER_PIXFMTS_ARRAY
#define FILTER_PIXFMTS_ARRAY(array)
Definition: internal.h:171
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
ff_vf_bitplanenoise
const AVFilter ff_vf_bitplanenoise
Definition: vf_bitplanenoise.c:207
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:109
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
AVOption
AVOption.
Definition: opt.h:247
AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:404
AV_PIX_FMT_YUV440P
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:99
filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:169
video.h
inputs
static const AVFilterPad inputs[]
Definition: vf_bitplanenoise.c:191
AV_PIX_FMT_GRAY9
#define AV_PIX_FMT_GRAY9
Definition: pixfmt.h:384
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:338
formats.h
bit
#define bit(string, value)
Definition: cbs_mpeg2.c:58
CHECK_BIT
#define CHECK_BIT(x, a, b, c)
Definition: vf_bitplanenoise.c:86
pixfmts
static enum AVPixelFormat pixfmts[]
Definition: vf_bitplanenoise.c:50
AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:422
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(bitplanenoise)
AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:420
AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:402
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_bitplanenoise.c:94
val
static double val(void *priv, double ch)
Definition: aeval.c:76
AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:388
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_bitplanenoise.c:68
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:50
AV_PIX_FMT_YUV444P10
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:407
AV_PIX_FMT_YUVJ411P
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:248
AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:416
mask
static const uint16_t mask[17]
Definition: lzw.c:38
AV_PIX_FMT_YUVJ422P
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:79
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:417
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:51
AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:401
AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:415
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AV_PIX_FMT_GRAY14
#define AV_PIX_FMT_GRAY14
Definition: pixfmt.h:387
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:66
key
const char * key
Definition: hwcontext_opencl.c:168
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
AV_PIX_FMT_YUVJ444P
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:80
AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GRAY10
Definition: pixfmt.h:385
AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:423
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
fabs
static __device__ float fabs(float a)
Definition: cuda_runtime.h:182
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:537
AV_PIX_FMT_YUVJ420P
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:78
AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_YUV440P10
Definition: pixfmt.h:406
OFFSET
#define OFFSET(x)
Definition: vf_bitplanenoise.c:40
AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:405
AV_PIX_FMT_GRAY8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition: pixfmt.h:74
AV_PIX_FMT_GBRP9
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:419
BPNContext::nb_planes
int nb_planes
Definition: vf_bitplanenoise.c:34
for
for(j=16;j >0;--j)
Definition: h264pred_template.c:469
BPNContext
Definition: vf_bitplanenoise.c:28
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
BPNContext::planewidth
int planewidth[4]
Definition: vf_bitplanenoise.c:36
AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:409
AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:411
internal.h
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:146
BPNContext::filter
int filter
Definition: vf_bitplanenoise.c:32
outputs
static const AVFilterPad outputs[]
Definition: vf_bitplanenoise.c:200
AV_PIX_FMT_GBRP12
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:421
AV_PIX_FMT_YUVJ440P
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
Definition: pixfmt.h:100
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:56
AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:403
AVFilter
Filter definition.
Definition: avfilter.h:165
FLAGS
#define FLAGS
Definition: vf_bitplanenoise.c:41
AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:408
AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:413
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
BPNContext::depth
int depth
Definition: vf_bitplanenoise.c:37
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
bitplanenoise_options
static const AVOption bitplanenoise_options[]
Definition: vf_bitplanenoise.c:42
avfilter.h
BPNContext::planeheight
int planeheight[4]
Definition: vf_bitplanenoise.c:35
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
AVFilterContext
An instance of a filter.
Definition: avfilter.h:402
factor
static const int factor[16]
Definition: vf_pp7.c:76
AV_PIX_FMT_GBRP
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:158
desc
const char * desc
Definition: libsvtav1.c:79
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:70
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
BPNContext::bitplane
int bitplane
Definition: vf_bitplanenoise.c:31
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:241
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
AV_PIX_FMT_YUV411P
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:73
imgutils.h
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:362
AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV440P12
Definition: pixfmt.h:410
AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:414
AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:386
snprintf
#define snprintf
Definition: snprintf.h:34
AV_PIX_FMT_YUV420P14
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:412