Go to the documentation of this file.
36 #define MAX_NB_THREADS 32
45 static const char *
const var_names[] = {
"X",
"Y",
"W",
"H",
"N",
"SW",
"SH",
"T",
NULL };
68 #define OFFSET(x) offsetof(GEQContext, x)
69 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
97 static inline double getpix(
void *priv,
double x,
double y,
int plane)
102 const uint8_t *
src = picref->
data[plane];
103 int linesize = picref->
linesize[plane];
118 const uint16_t *src16 = (
const uint16_t*)
src;
121 return (1-y)*((1-x)*src16[
xi + yi * linesize] + x*src16[
xi + 1 + yi * linesize])
122 + y *((1-x)*src16[
xi + (yi+1) * linesize] + x*src16[
xi + 1 + (yi+1) * linesize]);
124 return (1-y)*((1-x)*
src[
xi + yi * linesize] + x*
src[
xi + 1 + yi * linesize])
125 + y *((1-x)*
src[
xi + (yi+1) * linesize] + x*
src[
xi + 1 + (yi+1) * linesize]);
132 const uint16_t *src16 = (
const uint16_t*)
src;
135 return src16[
xi + yi * linesize];
137 return src[
xi + yi * linesize];
146 const uint8_t *
src = picref->
data[plane];
147 int linesize = picref->
linesize[plane];
155 for (yi = 0; yi <
h; yi ++) {
157 const uint16_t *src16 = (
const uint16_t*)
src;
161 linesum += src16[
xi + yi * linesize];
168 linesum +=
src[
xi + yi * linesize];
185 }
else if (y >
h - 1) {
189 if (x == -1)
return 0;
192 if (y == -1)
return 0;
202 const uint8_t *
src = picref->
data[plane];
214 static double lum(
void *priv,
double x,
double y) {
return getpix(priv, x, y, 0); }
215 static double cb(
void *priv,
double x,
double y) {
return getpix(priv, x, y, 1); }
216 static double cr(
void *priv,
double x,
double y) {
return getpix(priv, x, y, 2); }
217 static double alpha(
void *priv,
double x,
double y) {
return getpix(priv, x, y, 3); }
270 for (plane = 0; plane <
NB_PLANES; plane++) {
271 static double (*
const p[])(
void *, double, double) = {
275 static const char *
const func2_yuv_names[] = {
276 "lum" ,
"cb" ,
"cr" ,
"alpha" ,
"p",
277 "lumsum",
"cbsum",
"crsum",
"alphasum",
"psum",
279 static const char *
const func2_rgb_names[] = {
280 "g" ,
"b" ,
"r" ,
"alpha" ,
"p",
281 "gsum",
"bsum",
"rsum",
"alphasum",
"psum",
283 const char *
const *
func2_names = geq->
is_rgb ? func2_rgb_names : func2_yuv_names;
284 double (*
const func2[])(
void *, double, double) = {
288 int counter[10] = {0};
298 geq->
needs_sum[plane] = counter[5] + counter[6] + counter[7] + counter[8] + counter[9];
350 geq->
bps =
desc->comp[0].depth;
368 const int plane =
td->plane;
369 const int linesize =
td->linesize;
370 const int slice_start = (
height * jobnr) / nb_jobs;
383 uint8_t *ptr = geq->
dst + linesize * slice_start;
384 for (y = slice_start; y <
slice_end; y++) {
387 for (x = 0; x <
width; x++) {
394 uint16_t *ptr16 = geq->
dst16 + (linesize/2) * slice_start;
395 for (y = slice_start; y <
slice_end; y++) {
397 for (x = 0; x <
width; x++) {
428 for (plane = 0; plane < geq->
planes &&
out->data[plane]; plane++) {
431 const int linesize =
out->linesize[plane];
434 geq->
dst =
out->data[plane];
435 geq->
dst16 = (uint16_t*)
out->data[plane];
445 td.linesize = linesize;
495 .priv_class = &geq_class,
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
#define AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_GBRAP16
AVPixelFormat
Pixel format.
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 double getpix(void *priv, double x, double y, int plane)
static const char *const var_names[]
static double cb(void *priv, double x, double y)
static int geq_query_formats(AVFilterContext *ctx)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
static av_cold void geq_uninit(AVFilterContext *ctx)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
static const AVFilterPad geq_outputs[]
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
char * av_asprintf(const char *fmt,...)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define AV_PIX_FMT_YUVA422P9
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
#define AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUVA420P10
#define FILTER_QUERY_FUNC(func)
#define AV_PIX_FMT_YUV420P10
int av_expr_count_func(AVExpr *e, unsigned *counter, int size, int arg)
Track the presence of user provided functions and their number of occurrences in a parsed expression.
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
const char * name
Filter name.
int planes
number of planes
A link between two filters.
#define AV_PIX_FMT_YUVA422P10
static double lumsum(void *priv, double x, double y)
static double crsub(void *priv, double x, double y)
static const char *const func2_names[]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
double * pixel_sums[NB_PLANES]
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
static int geq_config_props(AVFilterLink *inlink)
#define AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_GBRP14
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
#define AV_PIX_FMT_GBRP10
#define AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_GRAY16
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
A filter pad used for either input or output.
#define AV_PIX_FMT_YUV444P10
static double(*const func2[])(void *, double, double)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define FF_ARRAY_ELEMS(a)
#define AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_GBRAP12
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
#define AV_PIX_FMT_YUV444P16
#define AV_CEIL_RSHIFT(a, b)
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
static double av_q2d(AVRational a)
Convert an AVRational to a double.
int vsub
chroma subsampling
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static enum AVPixelFormat pix_fmts[]
#define AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P16
#define xi(width, name, var, range_min, range_max, subs,...)
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
static const AVOption geq_options[]
#define AV_PIX_FMT_GRAY14
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_INPUTS(array)
static double alpha(void *priv, double x, double y)
#define AV_PIX_FMT_GRAY10
#define AV_PIX_FMT_GBRP16
Describe the class of an AVClass context structure.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
static double getpix_integrate(void *priv, double x, double y, int plane)
AVFrame * picref
current input buffer
#define AV_PIX_FMT_YUV440P10
static int calculate_sums(GEQContext *geq, int plane, int w, int h)
#define AV_PIX_FMT_YUV422P10
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
static double cbsum(void *priv, double x, double y)
AVExpr * e[NB_PLANES][MAX_NB_THREADS]
expressions for each plane and thread
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define AV_PIX_FMT_YUV422P12
double values[VAR_VARS_NB]
expression values
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define AV_PIX_FMT_YUV444P12
static av_cold int geq_init(AVFilterContext *ctx)
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
#define AV_PIX_FMT_YUVA444P10
static int interpolation(DeclickChannel *c, const double *src, int ar_order, double *acoefficients, int *index, int nb_errors, double *auxiliary, double *interpolated)
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
#define i(width, name, range_min, range_max)
int w
agreed upon image width
static double lum(void *priv, double x, double y)
#define AV_PIX_FMT_GBRP12
#define av_malloc_array(a, b)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Used for passing data between threads.
const char * name
Pad name.
char * expr_str[4+3]
expression strings for each plane
uint8_t * dst
reference pointer to the 8bits output
uint16_t * dst16
reference pointer to the 16bits output
#define AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV422P14
int h
agreed upon image height
static int geq_filter_frame(AVFilterLink *inlink, AVFrame *in)
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return values
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
AVFILTER_DEFINE_CLASS(geq)
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
char * av_strdup(const char *s)
Duplicate a string.
static double alphasum(void *priv, double x, double y)
@ 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 enum AVPixelFormat yuv_pix_fmts[]
static double cr(void *priv, double x, double y)
#define FILTER_OUTPUTS(array)
@ 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...
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
static av_cold int uninit(AVCodecContext *avctx)
#define AV_PIX_FMT_YUV444P14
static enum AVPixelFormat rgb_pix_fmts[]
#define AV_PIX_FMT_GRAY12
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
static int slice_geq_filter(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static const AVFilterPad geq_inputs[]
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
#define AV_PIX_FMT_YUV420P14
static double getpix_integrate_internal(GEQContext *geq, int x, int y, int plane, int w, int h)