FFmpeg
Loading...
Searching...
No Matches
vf_entropy.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017 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/mem.h"
22#include "libavutil/opt.h"
23#include "libavutil/pixdesc.h"
24#include "avfilter.h"
25#include "drawutils.h"
26#include "filters.h"
27#include "video.h"
28
29typedef struct EntropyContext {
30 const AVClass *class;
31
32 int mode;
33
36 int planewidth[4];
37 int depth;
38 int is_rgb;
39 uint8_t rgba_map[4];
40 char planenames[4];
43
44#define OFFSET(x) offsetof(EntropyContext, x)
45#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
46static const AVOption entropy_options[] = {
47 { "mode", "set kind of histogram entropy measurement", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, .unit = "mode" },
48 { "normal", NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, .unit = "mode" },
49 { "diff", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, .unit = "mode" },
50 { NULL }
51};
52
54
72
73static int config_input(AVFilterLink *inlink)
74{
76 AVFilterContext *ctx = inlink->dst;
77 EntropyContext *s = ctx->priv;
78
79 s->nb_planes = desc->nb_components;
80
81 s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
82 s->planeheight[0] = s->planeheight[3] = inlink->h;
83 s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
84 s->planewidth[0] = s->planewidth[3] = inlink->w;
85
86 s->depth = desc->comp[0].depth;
87 s->is_rgb = ff_fill_rgba_map(s->rgba_map, inlink->format) >= 0;
88
89 s->planenames[0] = s->is_rgb ? 'R' : 'Y';
90 s->planenames[1] = s->is_rgb ? 'G' : 'U';
91 s->planenames[2] = s->is_rgb ? 'B' : 'V';
92 s->planenames[3] = 'A';
93
94 s->histogram = av_malloc_array(1 << s->depth, sizeof(*s->histogram));
95 if (!s->histogram)
96 return AVERROR(ENOMEM);
97
98 return 0;
99}
100
101static int filter_frame(AVFilterLink *inlink, AVFrame *in)
102{
103 AVFilterContext *ctx = inlink->dst;
104 AVFilterLink *outlink = ctx->outputs[0];
105 EntropyContext *s = ctx->priv;
106 int plane, y, x;
107
108 for (plane = 0; plane < s->nb_planes; plane++) {
109 int cidx = s->is_rgb ? s->rgba_map[plane] : plane;
110 const uint8_t *src8 = in->data[plane];
111 const uint16_t *src16 = (const uint16_t *)in->data[plane];
112 float total = s->planewidth[plane] * s->planeheight[plane];
113 float entropy = 0;
114 char metabuf[128];
115 char key[128];
116
117 memset(s->histogram, 0, (1 << s->depth) * sizeof(*s->histogram));
118
119 if (s->depth <= 8) {
120 for (y = 0; y < s->planeheight[plane]; y++) {
121 for (x = 0; x < s->planewidth[plane]; x++) {
122 s->histogram[src8[x]]++;
123 }
124
125 src8 += in->linesize[plane];
126 }
127 } else {
128 for (y = 0; y < s->planeheight[plane]; y++) {
129 for (x = 0; x < s->planewidth[plane]; x++) {
130 s->histogram[src16[x]]++;
131 }
132
133 src16 += in->linesize[plane] / 2;
134 }
135 }
136
137 for (y = 0; y < 1 << s->depth; y++) {
138 if (s->mode == 0) {
139 if (s->histogram[y]) {
140 float p = s->histogram[y] / total;
141 entropy += -log2(p) * p;
142 }
143 } else if (s->mode == 1) {
144 if (y && (s->histogram[y] - s->histogram[y - 1]) != 0) {
145 float p = FFABS(s->histogram[y] - s->histogram[y - 1]) / total;
146 entropy += -log2(p) * p;
147 }
148 }
149 }
150
151 snprintf(key, sizeof(key), "lavfi.entropy.entropy.%s.%c", s->mode ? "diff" : "normal", s->planenames[cidx]);
152 snprintf(metabuf, sizeof(metabuf), "%f", entropy);
153 av_dict_set(&in->metadata, key, metabuf, 0);
154 snprintf(key, sizeof(key), "lavfi.entropy.normalized_entropy.%s.%c", s->mode ? "diff" : "normal", s->planenames[cidx]);
155 snprintf(metabuf, sizeof(metabuf), "%f", entropy / log2(1 << s->depth));
156 av_dict_set(&in->metadata, key, metabuf, 0);
157 }
158
159 return ff_filter_frame(outlink, in);
160}
161
163{
164 EntropyContext *s = ctx->priv;
165
166 av_freep(&s->histogram);
167}
168
169static const AVFilterPad inputs[] = {
170 {
171 .name = "default",
172 .type = AVMEDIA_TYPE_VIDEO,
173 .filter_frame = filter_frame,
174 .config_props = config_input,
175 },
176};
177
179 .p.name = "entropy",
180 .p.description = NULL_IF_CONFIG_SMALL("Measure video frames entropy."),
181 .p.priv_class = &entropy_class,
183 .priv_size = sizeof(EntropyContext),
184 .uninit = uninit,
188};
static const AVFilterPad inputs[]
Definition af_aap.c:299
static int config_input(AVFilterLink *inlink)
const FFFilter ff_vf_entropy
Definition vf_entropy.c:178
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition common.h:74
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
Definition drawutils.c:80
misc drawing utilities
const char * key
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
#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:196
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition avfilter.h:182
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:86
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define log2(x)
Definition libm.h:406
const char * desc
Definition libsvtav1.c:83
Memory handling functions.
AVOptions.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_YUV420P16
Definition pixfmt.h:556
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_YUV440P12
Definition pixfmt.h:551
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_YUV420P14
Definition pixfmt.h:553
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition pixfmt.h:106
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ 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:107
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ 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:283
@ 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:86
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165
@ 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:87
@ 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:85
#define AV_PIX_FMT_YUV422P14
Definition pixfmt.h:554
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_YUV422P16
Definition pixfmt.h:557
#define AV_PIX_FMT_YUV440P10
Definition pixfmt.h:547
#define AV_PIX_FMT_GRAY16
Definition pixfmt.h:528
#define AV_PIX_FMT_GBRP16
Definition pixfmt.h:567
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_GBRP14
Definition pixfmt.h:566
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
#define snprintf
Definition snprintf.h:34
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
AVDictionary * metadata
metadata.
Definition frame.h:750
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:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
char planenames[4]
Definition vf_entropy.c:40
uint8_t rgba_map[4]
Definition vf_entropy.c:39
int planewidth[4]
Definition vf_entropy.c:36
int planeheight[4]
Definition vf_entropy.c:35
int64_t * histogram
Definition vf_entropy.c:41
Definition swscale.c:71
#define av_malloc_array(a, b)
#define av_freep(p)
static AVFormatContext * ctx
Definition movenc.c:49
static enum AVPixelFormat pixfmts[]
static int config_input(AVFilterLink *inlink)
Definition vf_entropy.c:73
static const AVOption entropy_options[]
Definition vf_entropy.c:46
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_entropy.c:101
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_entropy.c:162
#define OFFSET(x)
Definition vf_entropy.c:44
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37