FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_histogram.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013 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/avassert.h"
22 #include "libavutil/opt.h"
23 #include "libavutil/parseutils.h"
24 #include "libavutil/pixdesc.h"
25 #include "libavutil/imgutils.h"
26 #include "libavutil/intreadwrite.h"
27 #include "avfilter.h"
28 #include "formats.h"
29 #include "internal.h"
30 #include "video.h"
31 
32 typedef struct HistogramContext {
33  const AVClass *class; ///< AVClass context for log and options purpose
34  unsigned histogram[256*256];
36  int mult;
37  int ncomp;
38  const uint8_t *bg_color;
39  const uint8_t *fg_color;
46  int planewidth[4];
47  int planeheight[4];
49 
50 #define OFFSET(x) offsetof(HistogramContext, x)
51 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
52 
53 static const AVOption histogram_options[] = {
54  { "level_height", "set level height", OFFSET(level_height), AV_OPT_TYPE_INT, {.i64=200}, 50, 2048, FLAGS},
55  { "scale_height", "set scale height", OFFSET(scale_height), AV_OPT_TYPE_INT, {.i64=12}, 0, 40, FLAGS},
56  { "display_mode", "set display mode", OFFSET(display_mode), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS, "display_mode"},
57  { "parade", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "display_mode" },
58  { "overlay", NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "display_mode" },
59  { "levels_mode", "set levels mode", OFFSET(levels_mode), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "levels_mode"},
60  { "linear", NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "levels_mode" },
61  { "logarithmic", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "levels_mode" },
62  { "components", "set color components to display", OFFSET(components), AV_OPT_TYPE_INT, {.i64=7}, 1, 15, FLAGS},
63  { NULL }
64 };
65 
66 AVFILTER_DEFINE_CLASS(histogram);
67 
68 static const enum AVPixelFormat levels_in_pix_fmts[] = {
82 };
83 
84 static const enum AVPixelFormat levels_out_yuv8_pix_fmts[] = {
87 };
88 
89 static const enum AVPixelFormat levels_out_yuv9_pix_fmts[] = {
92 };
93 
97 };
98 
99 static const enum AVPixelFormat levels_out_rgb8_pix_fmts[] = {
102 };
103 
107 };
108 
112 };
113 
115 {
116  AVFilterFormats *avff;
117  const AVPixFmtDescriptor *desc;
118  const enum AVPixelFormat *out_pix_fmts;
119  int rgb, i, bits;
120  int ret;
121 
122  if (!ctx->inputs[0]->in_formats ||
123  !ctx->inputs[0]->in_formats->nb_formats) {
124  return AVERROR(EAGAIN);
125  }
126 
127  if (!ctx->inputs[0]->out_formats)
129  return ret;
130  avff = ctx->inputs[0]->in_formats;
131  desc = av_pix_fmt_desc_get(avff->formats[0]);
132  rgb = desc->flags & AV_PIX_FMT_FLAG_RGB;
133  bits = desc->comp[0].depth;
134  for (i = 1; i < avff->nb_formats; i++) {
135  desc = av_pix_fmt_desc_get(avff->formats[i]);
136  if ((rgb != (desc->flags & AV_PIX_FMT_FLAG_RGB)) ||
137  (bits != desc->comp[0].depth))
138  return AVERROR(EAGAIN);
139  }
140 
141  if (rgb && bits == 8)
142  out_pix_fmts = levels_out_rgb8_pix_fmts;
143  else if (rgb && bits == 9)
144  out_pix_fmts = levels_out_rgb9_pix_fmts;
145  else if (rgb && bits == 10)
146  out_pix_fmts = levels_out_rgb10_pix_fmts;
147  else if (bits == 8)
148  out_pix_fmts = levels_out_yuv8_pix_fmts;
149  else if (bits == 9)
150  out_pix_fmts = levels_out_yuv9_pix_fmts;
151  else // if (bits == 10)
152  out_pix_fmts = levels_out_yuv10_pix_fmts;
153  if ((ret = ff_formats_ref(ff_make_format_list(out_pix_fmts), &ctx->outputs[0]->in_formats)) < 0)
154  return ret;
155 
156  return 0;
157 }
158 
159 static const uint8_t black_yuva_color[4] = { 0, 127, 127, 255 };
160 static const uint8_t black_gbrp_color[4] = { 0, 0, 0, 255 };
161 static const uint8_t white_yuva_color[4] = { 255, 127, 127, 255 };
162 static const uint8_t white_gbrp_color[4] = { 255, 255, 255, 255 };
163 
164 static int config_input(AVFilterLink *inlink)
165 {
166  HistogramContext *h = inlink->dst->priv;
167 
168  h->desc = av_pix_fmt_desc_get(inlink->format);
169  h->ncomp = h->desc->nb_components;
170  h->histogram_size = 1 << h->desc->comp[0].depth;
171  h->mult = h->histogram_size / 256;
172 
173  switch (inlink->format) {
174  case AV_PIX_FMT_GBRP10:
175  case AV_PIX_FMT_GBRP9:
176  case AV_PIX_FMT_GBRAP:
177  case AV_PIX_FMT_GBRP:
180  break;
181  default:
184  }
185 
186  h->planeheight[1] = h->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, h->desc->log2_chroma_h);
187  h->planeheight[0] = h->planeheight[3] = inlink->h;
188  h->planewidth[1] = h->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, h->desc->log2_chroma_w);
189  h->planewidth[0] = h->planewidth[3] = inlink->w;
190 
191  return 0;
192 }
193 
194 static int config_output(AVFilterLink *outlink)
195 {
196  AVFilterContext *ctx = outlink->src;
197  HistogramContext *h = ctx->priv;
198  int ncomp = 0, i;
199 
200  for (i = 0; i < h->ncomp; i++) {
201  if ((1 << i) & h->components)
202  ncomp++;
203  }
204  outlink->w = h->histogram_size;
205  outlink->h = (h->level_height + h->scale_height) * FFMAX(ncomp * h->display_mode, 1);
206 
207  h->odesc = av_pix_fmt_desc_get(outlink->format);
208  outlink->sample_aspect_ratio = (AVRational){1,1};
209 
210  return 0;
211 }
212 
213 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
214 {
215  HistogramContext *h = inlink->dst->priv;
216  AVFilterContext *ctx = inlink->dst;
217  AVFilterLink *outlink = ctx->outputs[0];
218  AVFrame *out;
219  int i, j, k, l, m;
220 
221  out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
222  if (!out) {
223  av_frame_free(&in);
224  return AVERROR(ENOMEM);
225  }
226 
227  out->pts = in->pts;
228 
229  for (k = 0; k < 4 && out->data[k]; k++) {
230  const int is_chroma = (k == 1 || k == 2);
231  const int dst_h = AV_CEIL_RSHIFT(outlink->h, (is_chroma ? h->odesc->log2_chroma_h : 0));
232  const int dst_w = AV_CEIL_RSHIFT(outlink->w, (is_chroma ? h->odesc->log2_chroma_w : 0));
233 
234  if (h->histogram_size <= 256) {
235  for (i = 0; i < dst_h ; i++)
236  memset(out->data[h->odesc->comp[k].plane] +
237  i * out->linesize[h->odesc->comp[k].plane],
238  h->bg_color[k], dst_w);
239  } else {
240  const int mult = h->mult;
241 
242  for (i = 0; i < dst_h ; i++)
243  for (j = 0; j < dst_w; j++)
244  AV_WN16(out->data[h->odesc->comp[k].plane] +
245  i * out->linesize[h->odesc->comp[k].plane] + j * 2,
246  h->bg_color[k] * mult);
247  }
248  }
249 
250  for (m = 0, k = 0; k < h->ncomp; k++) {
251  const int p = h->desc->comp[k].plane;
252  const int height = h->planeheight[p];
253  const int width = h->planewidth[p];
254  double max_hval_log;
255  unsigned max_hval = 0;
256  int start;
257 
258  if (!((1 << k) & h->components))
259  continue;
260  start = m++ * (h->level_height + h->scale_height) * h->display_mode;
261 
262  if (h->histogram_size <= 256) {
263  for (i = 0; i < height; i++) {
264  const uint8_t *src = in->data[p] + i * in->linesize[p];
265  for (j = 0; j < width; j++)
266  h->histogram[src[j]]++;
267  }
268  } else {
269  for (i = 0; i < height; i++) {
270  const uint16_t *src = (const uint16_t *)(in->data[p] + i * in->linesize[p]);
271  for (j = 0; j < width; j++)
272  h->histogram[src[j]]++;
273  }
274  }
275 
276  for (i = 0; i < h->histogram_size; i++)
277  max_hval = FFMAX(max_hval, h->histogram[i]);
278  max_hval_log = log2(max_hval + 1);
279 
280  for (i = 0; i < outlink->w; i++) {
281  int col_height;
282 
283  if (h->levels_mode)
284  col_height = lrint(h->level_height * (1. - (log2(h->histogram[i] + 1) / max_hval_log)));
285  else
286  col_height = h->level_height - (h->histogram[i] * (int64_t)h->level_height + max_hval - 1) / max_hval;
287 
288  if (h->histogram_size <= 256) {
289  for (j = h->level_height - 1; j >= col_height; j--) {
290  if (h->display_mode) {
291  for (l = 0; l < h->ncomp; l++)
292  out->data[l][(j + start) * out->linesize[l] + i] = h->fg_color[l];
293  } else {
294  out->data[p][(j + start) * out->linesize[p] + i] = 255;
295  }
296  }
297  for (j = h->level_height + h->scale_height - 1; j >= h->level_height; j--)
298  out->data[p][(j + start) * out->linesize[p] + i] = i;
299  } else {
300  const int mult = h->mult;
301 
302  for (j = h->level_height - 1; j >= col_height; j--) {
303  if (h->display_mode) {
304  for (l = 0; l < h->ncomp; l++)
305  AV_WN16(out->data[l] + (j + start) * out->linesize[l] + i * 2, h->fg_color[l] * mult);
306  } else {
307  AV_WN16(out->data[p] + (j + start) * out->linesize[p] + i * 2, 255 * mult);
308  }
309  }
310  for (j = h->level_height + h->scale_height - 1; j >= h->level_height; j--)
311  AV_WN16(out->data[p] + (j + start) * out->linesize[p] + i * 2, i);
312  }
313  }
314 
315  memset(h->histogram, 0, h->histogram_size * sizeof(unsigned));
316  }
317 
318  av_frame_free(&in);
319  return ff_filter_frame(outlink, out);
320 }
321 
322 static const AVFilterPad inputs[] = {
323  {
324  .name = "default",
325  .type = AVMEDIA_TYPE_VIDEO,
326  .filter_frame = filter_frame,
327  .config_props = config_input,
328  },
329  { NULL }
330 };
331 
332 static const AVFilterPad outputs[] = {
333  {
334  .name = "default",
335  .type = AVMEDIA_TYPE_VIDEO,
336  .config_props = config_output,
337  },
338  { NULL }
339 };
340 
342  .name = "histogram",
343  .description = NULL_IF_CONFIG_SMALL("Compute and draw a histogram."),
344  .priv_size = sizeof(HistogramContext),
346  .inputs = inputs,
347  .outputs = outputs,
348  .priv_class = &histogram_class,
349 };
static enum AVPixelFormat levels_out_yuv8_pix_fmts[]
Definition: vf_histogram.c:84
int plane
Which of the 4 planes contains the component.
Definition: pixdesc.h:35
#define NULL
Definition: coverity.c:32
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:359
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2157
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
AVOption.
Definition: opt.h:245
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:361
AVFormatContext * ctx
Definition: movenc-test.c:48
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:362
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
Main libavfilter public API header.
unsigned histogram[256 *256]
Definition: vf_histogram.c:34
static enum AVPixelFormat levels_out_rgb8_pix_fmts[]
Definition: vf_histogram.c:99
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:181
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:346
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:76
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:92
#define log2(x)
Definition: libm.h:404
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
const char * name
Pad name.
Definition: internal.h:59
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:312
static const uint8_t black_gbrp_color[4]
Definition: vf_histogram.c:160
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1163
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
uint8_t bits
Definition: crc.c:295
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
AVOptions.
const uint8_t * bg_color
Definition: vf_histogram.c:38
const AVPixFmtDescriptor * odesc
Definition: vf_histogram.c:44
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:262
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:358
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:345
static const AVFilterPad inputs[]
Definition: vf_histogram.c:322
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:76
static int config_input(AVFilterLink *inlink)
Definition: vf_histogram.c:164
static const AVFilterPad outputs[]
Definition: vf_histogram.c:332
unsigned m
Definition: audioconvert.c:187
A filter pad used for either input or output.
Definition: internal.h:53
static const uint8_t white_gbrp_color[4]
Definition: vf_histogram.c:162
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:188
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:101
#define AVERROR(e)
Definition: error.h:43
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition: pixdesc.h:148
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:154
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
void * priv
private data for use by the filter
Definition: avfilter.h:319
simple assert() macros that are a bit more flexible than ISO C assert().
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:333
#define OFFSET(x)
Definition: vf_histogram.c:50
#define FFMAX(a, b)
Definition: common.h:94
static enum AVPixelFormat levels_out_rgb10_pix_fmts[]
Definition: vf_histogram.c:109
static enum AVPixelFormat levels_in_pix_fmts[]
Definition: vf_histogram.c:68
AVFilter ff_vf_histogram
Definition: vf_histogram.c:341
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
uint64_t flags
Combination of AV_PIX_FMT_FLAG_...
Definition: pixdesc.h:106
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:328
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:75
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add *ref as a new reference to formats.
Definition: formats.c:440
const uint8_t * fg_color
Definition: vf_histogram.c:39
unsigned nb_formats
number of formats
Definition: formats.h:65
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:363
#define src
Definition: vp9dsp.c:530
static const AVOption histogram_options[]
Definition: vf_histogram.c:53
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:329
FILE * out
Definition: movenc-test.c:54
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:209
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:189
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
const AVPixFmtDescriptor * desc
Definition: vf_histogram.c:44
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
static int config_output(AVFilterLink *outlink)
Definition: vf_histogram.c:194
static int16_t mult(Float11 *f1, Float11 *f2)
Definition: g726.c:55
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:330
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:141
rational number numerator/denominator
Definition: rational.h:43
static const uint8_t white_yuva_color[4]
Definition: vf_histogram.c:161
const char * name
Filter name.
Definition: avfilter.h:145
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:327
misc parsing utilities
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:316
static enum AVPixelFormat levels_out_rgb9_pix_fmts[]
Definition: vf_histogram.c:104
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:331
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:192
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
Y , 8bpp.
Definition: pixfmt.h:71
AVFILTER_DEFINE_CLASS(histogram)
if(ret< 0)
Definition: vf_mcdeint.c:282
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:360
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:77
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
#define FLAGS
Definition: vf_histogram.c:51
static int query_formats(AVFilterContext *ctx)
Definition: vf_histogram.c:114
static const uint8_t black_yuva_color[4]
Definition: vf_histogram.c:159
static enum AVPixelFormat levels_out_yuv9_pix_fmts[]
Definition: vf_histogram.c:89
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_histogram.c:213
A list of supported formats for one end of a filter link.
Definition: formats.h:64
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition: pixfmt.h:266
#define lrint
Definition: tablegen.h:53
An instance of a filter.
Definition: avfilter.h:304
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
void INT64 start
Definition: avisynth_c.h:553
#define AV_WN16(p, v)
Definition: intreadwrite.h:372
internal API functions
int depth
Number of bits in the component.
Definition: pixdesc.h:58
static enum AVPixelFormat levels_out_yuv10_pix_fmts[]
Definition: vf_histogram.c:94
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
int * formats
list of media formats
Definition: formats.h:66
static int width