Go to the documentation of this file.
71 #define OFFSET(x) offsetof(SignalstatsContext, x)
72 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
96 s->filters |= 1 <<
s->outfilter;
100 b =
s->rgba_color[2];
101 s->yuv_color[0] = (( 66*
r + 129*
g + 25*
b + (1<<7)) >> 8) + 16;
102 s->yuv_color[1] = ((-38*
r + -74*
g + 112*
b + (1<<7)) >> 8) + 128;
103 s->yuv_color[2] = ((112*
r + -94*
g + -18*
b + (1<<7)) >> 8) + 128;
160 s->hsub =
desc->log2_chroma_w;
161 s->vsub =
desc->log2_chroma_h;
162 s->depth =
desc->comp[0].depth;
163 s->maxsize = 1 <<
s->depth;
169 if (!
s->histy || !
s->histu || !
s->histv || !
s->histsat)
179 s->cfs =
s->chromaw *
s->chromah;
188 if (!
s->frame_sat || !
s->frame_hue)
196 const int chromax = x >>
s->hsub;
197 const int chromay = y >>
s->vsub;
198 f->data[0][y *
f->linesize[0] + x] =
s->yuv_color[0];
199 f->data[1][chromay *
f->linesize[1] + chromax] =
s->yuv_color[1];
200 f->data[2][chromay *
f->linesize[2] + chromax] =
s->yuv_color[2];
205 const int chromax = x >>
s->hsub;
206 const int chromay = y >>
s->vsub;
207 const int mult = 1 << (
s->depth - 8);
208 AV_WN16(
f->data[0] + y *
f->linesize[0] + x * 2,
s->yuv_color[0] *
mult);
209 AV_WN16(
f->data[1] + chromay *
f->linesize[1] + chromax * 2,
s->yuv_color[1] *
mult);
210 AV_WN16(
f->data[2] + chromay *
f->linesize[2] + chromax * 2,
s->yuv_color[2] *
mult);
221 const int slice_start = (
h * jobnr ) / nb_jobs;
222 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
225 for (y = slice_start; y <
slice_end; y++) {
226 const int yc = y >>
s->vsub;
227 const uint8_t *pluma = &in->
data[0][y * in->
linesize[0]];
228 const uint8_t *pchromau = &in->
data[1][yc * in->
linesize[1]];
229 const uint8_t *pchromav = &in->
data[2][yc * in->
linesize[2]];
231 for (x = 0; x <
w; x++) {
232 const int xc = x >>
s->hsub;
233 const int luma = pluma[x];
234 const int chromau = pchromau[xc];
235 const int chromav = pchromav[xc];
236 const int filt = luma < 16 || luma > 235 ||
237 chromau < 16 || chromau > 240 ||
238 chromav < 16 || chromav > 240;
253 const int mult = 1 << (
s->depth - 8);
256 const int slice_start = (
h * jobnr ) / nb_jobs;
257 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
260 for (y = slice_start; y <
slice_end; y++) {
261 const int yc = y >>
s->vsub;
262 const uint16_t *pluma = (uint16_t *)&in->
data[0][y * in->
linesize[0]];
263 const uint16_t *pchromau = (uint16_t *)&in->
data[1][yc * in->
linesize[1]];
264 const uint16_t *pchromav = (uint16_t *)&in->
data[2][yc * in->
linesize[2]];
266 for (x = 0; x <
w; x++) {
267 const int xc = x >>
s->hsub;
268 const int luma = pluma[x];
269 const int chromau = pchromau[xc];
270 const int chromav = pchromav[xc];
271 const int filt = luma < 16 * mult || luma > 235 *
mult ||
272 chromau < 16 * mult || chromau > 240 *
mult ||
273 chromav < 16 * mult || chromav > 240 *
mult;
284 return ((
abs(x - y) +
abs (z - y)) / 2) -
abs(z - x) > 4;
295 const int slice_start = (
h * jobnr ) / nb_jobs;
296 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
297 const uint8_t *p = in->
data[0];
299 int x, y, score = 0,
filt;
301 for (y = slice_start; y <
slice_end; y++) {
303 if (y - 1 < 0 || y + 1 >=
h)
309 #define FILTER(i, j) \
310 filter_tout_outlier(p[(y-j) * lw + x + i], \
311 p[ y * lw + x + i], \
312 p[(y+j) * lw + x + i])
314 #define FILTER3(j) (FILTER(-1, j) && FILTER(0, j) && FILTER(1, j))
316 if (y - 2 >= 0 && y + 2 <
h) {
317 for (x = 1; x <
w - 1; x++) {
324 for (x = 1; x <
w - 1; x++) {
343 const int slice_start = (
h * jobnr ) / nb_jobs;
344 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
345 const uint16_t *p = (uint16_t *)in->
data[0];
347 int x, y, score = 0,
filt;
351 if (y - 1 < 0 || y + 1 >=
h)
357 if (y - 2 >= 0 && y + 2 <
h) {
358 for (x = 1; x <
w - 1; x++) {
365 for (x = 1; x <
w - 1; x++) {
386 const int slice_start = (
h * jobnr ) / nb_jobs;
387 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
388 const uint8_t *p = in->
data[0];
392 for (y = slice_start; y <
slice_end; y++) {
394 const int ylw = y * lw;
395 int filt, totdiff = 0;
400 for (x = 0; x <
w; x++)
401 totdiff +=
abs(p[y2lw + x] - p[ylw + x]);
406 for (x = 0; x <
w; x++)
420 const int slice_start = (
h * jobnr ) / nb_jobs;
421 const int slice_end = (
h * (jobnr+1)) / nb_jobs;
422 const uint16_t *p = (uint16_t *)in->
data[0];
428 const int ylw = y * lw;
435 for (x = 0; x <
w; x++)
436 totdiff +=
abs(p[y2lw + x] - p[ylw + x]);
441 for (x = 0; x <
w; x++)
447 static const struct {
467 const int slice_start = (
s->chromah * jobnr ) / nb_jobs;
468 const int slice_end = (
s->chromah * (jobnr+1)) / nb_jobs;
470 const int lsz_u =
src->linesize[1];
471 const int lsz_v =
src->linesize[2];
472 const uint8_t *p_u =
src->data[1] + slice_start * lsz_u;
473 const uint8_t *p_v =
src->data[2] + slice_start * lsz_v;
475 const int lsz_sat = dst_sat->
linesize[0];
476 const int lsz_hue = dst_hue->
linesize[0];
477 uint8_t *p_sat = dst_sat->
data[0] + slice_start * lsz_sat;
478 uint8_t *p_hue = dst_hue->
data[0] + slice_start * lsz_hue;
480 for (j = slice_start; j <
slice_end; j++) {
481 for (
i = 0;
i <
s->chromaw;
i++) {
482 const int yuvu = p_u[
i];
483 const int yuvv = p_v[
i];
484 p_sat[
i] = hypotf(yuvu - 128, yuvv - 128);
485 ((int16_t*)p_hue)[
i] = fmodf(
floorf((180.
f /
M_PI) *
atan2f(yuvu-128, yuvv-128) + 180.
f), 360.
f);
504 const int mid = 1 << (
s->depth - 1);
506 const int slice_start = (
s->chromah * jobnr ) / nb_jobs;
507 const int slice_end = (
s->chromah * (jobnr+1)) / nb_jobs;
509 const int lsz_u =
src->linesize[1] / 2;
510 const int lsz_v =
src->linesize[2] / 2;
511 const uint16_t *p_u = (uint16_t*)
src->data[1] + slice_start * lsz_u;
512 const uint16_t *p_v = (uint16_t*)
src->data[2] + slice_start * lsz_v;
514 const int lsz_sat = dst_sat->
linesize[0] / 2;
515 const int lsz_hue = dst_hue->
linesize[0] / 2;
516 uint16_t *p_sat = (uint16_t*)dst_sat->
data[0] + slice_start * lsz_sat;
517 uint16_t *p_hue = (uint16_t*)dst_hue->
data[0] + slice_start * lsz_hue;
519 for (j = slice_start; j <
slice_end; j++) {
520 for (
i = 0;
i <
s->chromaw;
i++) {
521 const int yuvu = p_u[
i];
522 const int yuvv = p_v[
i];
523 p_sat[
i] = hypotf(yuvu - mid, yuvv - mid);
524 ((int16_t*)p_hue)[
i] = fmodf(
floorf((180.
f /
M_PI) *
atan2f(yuvu-mid, yuvv-mid) + 180.
f), 360.
f);
551 unsigned int *histy =
s->histy,
555 *histsat =
s->histsat;
556 int miny = -1, minu = -1, minv = -1;
557 int maxy = -1, maxu = -1, maxv = -1;
558 int lowy = -1, lowu = -1, lowv = -1;
559 int highy = -1, highu = -1, highv = -1;
560 int minsat = -1, maxsat = -1, lowsat = -1, highsat = -1;
561 int lowp, highp, clowp, chighp;
562 int accy, accu, accv;
563 int accsat, acchue = 0;
565 int toty = 0, totu = 0, totv = 0, totsat=0;
567 int dify = 0, difu = 0, difv = 0;
568 uint16_t masky = 0, masku = 0, maskv = 0;
575 const uint8_t *p_sat = sat->
data[0];
576 const uint8_t *p_hue = hue->
data[0];
577 const int lsz_sat = sat->
linesize[0];
578 const int lsz_hue = hue->
linesize[0];
588 prev =
s->frame_prev;
608 memset(
s->histy, 0,
s->maxsize *
sizeof(*
s->histy));
609 for (j = 0; j <
link->h; j++) {
610 for (
i = 0;
i <
link->w;
i++) {
611 const int yuv = in->
data[0][
w +
i];
615 dify +=
abs(yuv - prev->
data[0][pw +
i]);
622 memset(
s->histu, 0,
s->maxsize *
sizeof(*
s->histu));
623 memset(
s->histv, 0,
s->maxsize *
sizeof(*
s->histv));
624 memset(
s->histsat, 0,
s->maxsize *
sizeof(*
s->histsat));
625 for (j = 0; j <
s->chromah; j++) {
626 for (
i = 0;
i <
s->chromaw;
i++) {
627 const int yuvu = in->
data[1][cw+
i];
628 const int yuvv = in->
data[2][cw+
i];
633 difu +=
abs(yuvu - prev->
data[1][cpw+
i]);
635 difv +=
abs(yuvv - prev->
data[2][cpw+
i]);
638 histhue[((int16_t*)p_hue)[
i]]++;
647 if (
s->filters & 1<<fil) {
650 .out =
out != in &&
s->outfilter == fil ?
out :
NULL,
652 memset(
s->jobs_rets, 0,
s->nb_jobs *
sizeof(*
s->jobs_rets));
654 &
td,
s->jobs_rets,
s->nb_jobs);
655 for (
i = 0;
i <
s->nb_jobs;
i++)
656 filtot[fil] +=
s->jobs_rets[
i];
663 lowp =
lrint(
s->fs * 10 / 100.);
664 highp =
lrint(
s->fs * 90 / 100.);
665 clowp =
lrint(
s->cfs * 10 / 100.);
666 chighp =
lrint(
s->cfs * 90 / 100.);
668 accy = accu = accv = accsat = 0;
669 for (fil = 0; fil <
s->maxsize; fil++) {
670 if (miny < 0 && histy[fil]) miny = fil;
671 if (minu < 0 && histu[fil]) minu = fil;
672 if (minv < 0 && histv[fil]) minv = fil;
673 if (minsat < 0 && histsat[fil]) minsat = fil;
675 if (histy[fil]) maxy = fil;
676 if (histu[fil]) maxu = fil;
677 if (histv[fil]) maxv = fil;
678 if (histsat[fil]) maxsat = fil;
680 toty += histy[fil] * fil;
681 totu += histu[fil] * fil;
682 totv += histv[fil] * fil;
683 totsat += histsat[fil] * fil;
688 accsat += histsat[fil];
690 if (lowy == -1 && accy >= lowp) lowy = fil;
691 if (lowu == -1 && accu >= clowp) lowu = fil;
692 if (lowv == -1 && accv >= clowp) lowv = fil;
693 if (lowsat == -1 && accsat >= clowp) lowsat = fil;
695 if (highy == -1 && accy >= highp) highy = fil;
696 if (highu == -1 && accu >= chighp) highu = fil;
697 if (highv == -1 && accv >= chighp) highv = fil;
698 if (highsat == -1 && accsat >= chighp) highsat = fil;
703 for (fil = 0; fil < 360; fil++) {
704 tothue += histhue[fil] * fil;
705 acchue += histhue[fil];
707 if (medhue == -1 && acchue >
s->cfs / 2)
709 if (histhue[fil] > maxhue) {
710 maxhue = histhue[fil];
717 #define SET_META(key, fmt, val) do { \
718 snprintf(metabuf, sizeof(metabuf), fmt, val); \
719 av_dict_set(&out->metadata, "lavfi.signalstats." key, metabuf, 0); \
724 SET_META(
"YAVG",
"%g", 1.0 * toty /
s->fs);
730 SET_META(
"UAVG",
"%g", 1.0 * totu /
s->cfs);
736 SET_META(
"VAVG",
"%g", 1.0 * totv /
s->cfs);
742 SET_META(
"SATAVG",
"%g", 1.0 * totsat /
s->cfs);
747 SET_META(
"HUEAVG",
"%g", 1.0 * tothue /
s->cfs);
749 SET_META(
"YDIF",
"%g", 1.0 * dify /
s->fs);
750 SET_META(
"UDIF",
"%g", 1.0 * difu /
s->cfs);
751 SET_META(
"VDIF",
"%g", 1.0 * difv /
s->cfs);
758 if (
s->filters & 1<<fil) {
760 snprintf(metabuf,
sizeof(metabuf),
"%g", 1.0 * filtot[fil] /
s->fs);
782 unsigned int *histy =
s->histy,
786 *histsat =
s->histsat;
787 int miny = -1, minu = -1, minv = -1;
788 int maxy = -1, maxu = -1, maxv = -1;
789 int lowy = -1, lowu = -1, lowv = -1;
790 int highy = -1, highu = -1, highv = -1;
791 int minsat = -1, maxsat = -1, lowsat = -1, highsat = -1;
792 int lowp, highp, clowp, chighp;
793 int accy, accu, accv;
794 int accsat, acchue = 0;
796 int64_t toty = 0, totu = 0, totv = 0, totsat=0;
798 int64_t dify = 0, difu = 0, difv = 0;
799 uint16_t masky = 0, masku = 0, maskv = 0;
806 const uint16_t *p_sat = (uint16_t *)sat->
data[0];
807 const uint16_t *p_hue = (uint16_t *)hue->
data[0];
808 const int lsz_sat = sat->
linesize[0] / 2;
809 const int lsz_hue = hue->
linesize[0] / 2;
819 prev =
s->frame_prev;
839 memset(
s->histy, 0,
s->maxsize *
sizeof(*
s->histy));
840 for (j = 0; j <
link->h; j++) {
841 for (
i = 0;
i <
link->w;
i++) {
853 memset(
s->histu, 0,
s->maxsize *
sizeof(*
s->histu));
854 memset(
s->histv, 0,
s->maxsize *
sizeof(*
s->histv));
855 memset(
s->histsat, 0,
s->maxsize *
sizeof(*
s->histsat));
856 for (j = 0; j <
s->chromah; j++) {
857 for (
i = 0;
i <
s->chromaw;
i++) {
869 histhue[((int16_t*)p_hue)[
i]]++;
878 if (
s->filters & 1<<fil) {
881 .out =
out != in &&
s->outfilter == fil ?
out :
NULL,
883 memset(
s->jobs_rets, 0,
s->nb_jobs *
sizeof(*
s->jobs_rets));
885 &
td,
s->jobs_rets,
s->nb_jobs);
886 for (
i = 0;
i <
s->nb_jobs;
i++)
887 filtot[fil] +=
s->jobs_rets[
i];
894 lowp =
lrint(
s->fs * 10 / 100.);
895 highp =
lrint(
s->fs * 90 / 100.);
896 clowp =
lrint(
s->cfs * 10 / 100.);
897 chighp =
lrint(
s->cfs * 90 / 100.);
899 accy = accu = accv = accsat = 0;
900 for (fil = 0; fil <
s->maxsize; fil++) {
901 if (miny < 0 && histy[fil]) miny = fil;
902 if (minu < 0 && histu[fil]) minu = fil;
903 if (minv < 0 && histv[fil]) minv = fil;
904 if (minsat < 0 && histsat[fil]) minsat = fil;
906 if (histy[fil]) maxy = fil;
907 if (histu[fil]) maxu = fil;
908 if (histv[fil]) maxv = fil;
909 if (histsat[fil]) maxsat = fil;
911 toty += histy[fil] * fil;
912 totu += histu[fil] * fil;
913 totv += histv[fil] * fil;
914 totsat += histsat[fil] * fil;
919 accsat += histsat[fil];
921 if (lowy == -1 && accy >= lowp) lowy = fil;
922 if (lowu == -1 && accu >= clowp) lowu = fil;
923 if (lowv == -1 && accv >= clowp) lowv = fil;
924 if (lowsat == -1 && accsat >= clowp) lowsat = fil;
926 if (highy == -1 && accy >= highp) highy = fil;
927 if (highu == -1 && accu >= chighp) highu = fil;
928 if (highv == -1 && accv >= chighp) highv = fil;
929 if (highsat == -1 && accsat >= chighp) highsat = fil;
934 for (fil = 0; fil < 360; fil++) {
935 tothue += histhue[fil] * fil;
936 acchue += histhue[fil];
938 if (medhue == -1 && acchue >
s->cfs / 2)
940 if (histhue[fil] > maxhue) {
941 maxhue = histhue[fil];
950 SET_META(
"YAVG",
"%g", 1.0 * toty /
s->fs);
956 SET_META(
"UAVG",
"%g", 1.0 * totu /
s->cfs);
962 SET_META(
"VAVG",
"%g", 1.0 * totv /
s->cfs);
968 SET_META(
"SATAVG",
"%g", 1.0 * totsat /
s->cfs);
973 SET_META(
"HUEAVG",
"%g", 1.0 * tothue /
s->cfs);
975 SET_META(
"YDIF",
"%g", 1.0 * dify /
s->fs);
976 SET_META(
"UDIF",
"%g", 1.0 * difu /
s->cfs);
977 SET_META(
"VDIF",
"%g", 1.0 * difv /
s->cfs);
984 if (
s->filters & 1<<fil) {
986 snprintf(metabuf,
sizeof(metabuf),
"%g", 1.0 * filtot[fil] /
s->fs);
1025 .
name =
"signalstats",
1026 .description =
"Generate statistics from video analysis.",
1033 .priv_class = &signalstats_class,
AVPixelFormat
Pixel format.
static int filter_frame8(AVFilterLink *link, AVFrame *in)
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
static int compute_sat_hue_metrics16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
static av_cold int init(AVFilterContext *ctx)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define SET_META(key, fmt, val)
#define FILTER_PIXFMTS_ARRAY(array)
static __device__ float floorf(float a)
static int filter8_brng(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
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
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
This structure describes decoded (raw) audio or video data.
#define AV_PIX_FMT_YUV420P10
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
AVFILTER_DEFINE_CLASS(signalstats)
const char * name
Filter name.
A link between two filters.
static int filter_frame16(AVFilterLink *link, AVFrame *in)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define AV_PIX_FMT_YUV422P9
static int filter16_tout(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define AV_PIX_FMT_GRAY16
static int filter_tout_outlier(uint8_t x, uint8_t y, uint8_t z)
static enum AVPixelFormat pix_fmts[]
A filter pad used for either input or output.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
#define AV_PIX_FMT_YUV444P10
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
static av_cold void uninit(AVFilterContext *ctx)
static int16_t mult(Float11 *f1, Float11 *f2)
#define AV_PIX_FMT_YUV422P16
static const uint16_t mask[17]
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
static AVFrame * alloc_frame(enum AVPixelFormat pixfmt, int w, int h)
#define AV_PIX_FMT_YUV444P16
#define AV_CEIL_RSHIFT(a, b)
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
#define filters(fmt, type, inverse, clp, inverset, clip, one, clip_fn, packed)
#define AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P16
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_INPUTS(array)
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 link
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
int ff_inlink_make_frame_writable(AVFilterLink *link, AVFrame **rframe)
Make sure a frame is writable.
Describe the class of an AVClass context structure.
static void burn_frame16(const SignalstatsContext *s, AVFrame *f, int x, int y)
static int filter8_tout(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
AVFilterLink ** inputs
array of pointers to input links
#define AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_YUV422P10
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
const AVFilter ff_vf_signalstats
static const AVFilterPad signalstats_inputs[]
static void burn_frame8(const SignalstatsContext *s, AVFrame *f, int x, int y)
static int filter_frame(AVFilterLink *link, AVFrame *in)
int format
agreed upon media format
#define AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV444P12
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
static const AVFilterPad signalstats_outputs[]
AVFilterContext * src
source filter
static const struct @272 filters_def[]
static int compute_sat_hue_metrics8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define i(width, name, range_min, range_max)
int(* process8)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
int w
agreed upon image width
#define av_malloc_array(a, b)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
static int config_output(AVFilterLink *outlink)
Used for passing data between threads.
int(* process16)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
static const int8_t filt[NUMTAPS *2]
const char * name
Pad name.
#define AV_PIX_FMT_YUV444P9
enum AVPixelFormat pixfmt
#define AV_PIX_FMT_YUV420P12
static int filter16_brng(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define AV_PIX_FMT_YUV422P14
int h
agreed upon image height
static const AVOption signalstats_options[]
static int filter8_vrep(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
static int filter16_vrep(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define FILTER_OUTPUTS(array)
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
#define AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV444P14
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
static unsigned compute_bit_depth(uint16_t mask)
#define AV_PIX_FMT_YUV420P14