Go to the documentation of this file.
65 #define OFFSET(x) offsetof(GuidedContext, x)
66 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
102 const int slice_start = (
height * jobnr) / nb_jobs;
104 const int radius =
s->radius;
105 const float *
src = t->
src;
110 w = (radius << 1) + 1;
113 for (
int j = 0;j <
width;j++) {
115 for (
int row = -radius;row <= radius;row++) {
116 for (
int col = -radius;col <= radius;col++) {
120 y = (y < 0) ? 0 : (y >=
width ?
width - 1 : y);
121 temp +=
src[x * src_stride + y];
124 dst[
i * dst_stride + j] =
temp / numPix;
159 }
else if (
s->mode ==
FAST) {
160 if (
s->radius >=
s->sub)
161 s->radius =
s->radius /
s->sub;
167 s->depth =
desc->comp[0].depth;
168 s->width =
ctx->inputs[0]->w;
169 s->height =
ctx->inputs[0]->h;
172 s->planewidth[0] =
s->planewidth[3] =
inlink->w;
174 s->planeheight[0] =
s->planeheight[3] =
inlink->h;
181 #define GUIDED(type, name) \
182 static int guided_##name(AVFilterContext *ctx, GuidedContext *s, \
183 const uint8_t *ssrc, const uint8_t *ssrcRef, \
184 uint8_t *ddst, int radius, float eps, int width, int height, \
185 int src_stride, int src_ref_stride, int dst_stride, \
189 type *dst = (type *)ddst; \
190 const type *src = (const type *)ssrc; \
191 const type *srcRef = (const type *)ssrcRef; \
194 int h = (height % sub) == 0 ? height / sub : height / sub + 1; \
195 int w = (width % sub) == 0 ? width / sub : width / sub + 1; \
198 const int nb_threads = ff_filter_get_nb_threads(ctx); \
212 I = av_calloc(w * h, sizeof(float)); \
213 II = av_calloc(w * h, sizeof(float)); \
214 P = av_calloc(w * h, sizeof(float)); \
215 IP = av_calloc(w * h, sizeof(float)); \
216 meanI = av_calloc(w * h, sizeof(float)); \
217 meanII = av_calloc(w * h, sizeof(float)); \
218 meanP = av_calloc(w * h, sizeof(float)); \
219 meanIP = av_calloc(w * h, sizeof(float)); \
221 A = av_calloc(w * h, sizeof(float)); \
222 B = av_calloc(w * h, sizeof(float)); \
223 meanA = av_calloc(w * h, sizeof(float)); \
224 meanB = av_calloc(w * h, sizeof(float)); \
226 if (!I || !II || !P || !IP || !meanI || !meanII || !meanP || \
227 !meanIP || !A || !B || !meanA || !meanB) { \
228 ret = AVERROR(ENOMEM); \
231 for (int i = 0;i < h;i++) { \
232 for (int j = 0;j < w;j++) { \
234 I[x] = src[(i * src_stride + j) * sub] / maxval; \
235 II[x] = I[x] * I[x]; \
236 P[x] = srcRef[(i * src_ref_stride + j) * sub] / maxval; \
237 IP[x] = I[x] * P[x]; \
247 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
250 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
253 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
256 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
258 for (int i = 0;i < h;i++) { \
259 for (int j = 0;j < w;j++) { \
261 float varI = meanII[x] - (meanI[x] * meanI[x]); \
262 float covIP = meanIP[x] - (meanI[x] * meanP[x]); \
263 A[x] = covIP / (varI + eps); \
264 B[x] = meanP[x] - A[x] * meanI[x]; \
270 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
273 ff_filter_execute(ctx, s->box_slice, &t, NULL, FFMIN(h, nb_threads)); \
275 for (int i = 0;i < height;i++) { \
276 for (int j = 0;j < width;j++) { \
277 int x = i / sub * w + j / sub; \
278 dst[i * dst_stride + j] = meanA[x] * src[i * src_stride + j] + \
310 for (
int plane = 0; plane <
s->nb_planes; plane++) {
311 if (!(
s->planes & (1 << plane))) {
313 in->data[plane], in->linesize[plane],
314 s->planewidth[plane] * ((
s->depth + 7) / 8),
s->planeheight[plane]);
318 guided_byte(
ctx,
s, in->data[plane],
ref->data[plane], (*out)->data[plane],
s->radius,
s->eps,
319 s->planewidth[plane],
s->planeheight[plane],
320 in->linesize[plane],
ref->linesize[plane], (*out)->linesize[plane], (1 <<
s->depth) - 1.f);
322 guided_word(
ctx,
s, in->data[plane],
ref->data[plane], (*out)->data[plane],
s->radius,
s->eps,
323 s->planewidth[plane],
s->planeheight[plane],
324 in->linesize[plane] / 2,
ref->linesize[plane] / 2, (*out)->linesize[plane] / 2, (1 <<
s->depth) - 1.f);
358 if (
s->guidance ==
ON) {
359 if (
ctx->inputs[0]->w !=
ctx->inputs[1]->w ||
360 ctx->inputs[0]->h !=
ctx->inputs[1]->h) {
366 outlink->
w = mainlink->
w;
367 outlink->
h = mainlink->
h;
372 if (
s->guidance ==
OFF)
438 if (
s->guidance ==
ON) {
440 pad.
name =
"guidance";
453 if (
s->guidance ==
ON)
487 .priv_class = &guided_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
AVRational time_base
Time base for the incoming frames.
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
AVPixelFormat
Pixel format.
they must not be accessed directly The fifo field contains the frames that are queued in the input for processing by the filter The status_in and status_out fields contains the queued status(EOF or error) of the link
static int config_input(AVFilterLink *inlink)
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
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
static int filter_frame(AVFilterContext *ctx, AVFrame **out, AVFrame *in, AVFrame *ref)
static float sub(float src0, float src1)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define FILTER_PIXFMTS_ARRAY(array)
static int activate(AVFilterContext *ctx)
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.
#define AV_PIX_FMT_YUVA422P9
This structure describes decoded (raw) audio or video data.
AVFILTER_DEFINE_CLASS(guided)
#define AV_PIX_FMT_YUVA420P16
#define GUIDED(type, name)
#define AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUV420P10
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
static const AVFilterPad guided_outputs[]
const char * name
Filter name.
@ EXT_INFINITY
Extend the frame to infinity.
A link between two filters.
#define AV_PIX_FMT_YUVA422P10
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_YUVA420P9
static const AVOption guided_options[]
#define AV_PIX_FMT_GBRP14
int ff_append_inpad(AVFilterContext *f, AVFilterPad *p)
Append a new input/output pad to the filter's list of such pads.
@ 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
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events.
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
A filter pad used for either input or output.
#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 ...
const AVFilter ff_vf_guided
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define AV_PIX_FMT_YUV422P16
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
#define AV_PIX_FMT_GBRAP10
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
#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.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0,...
#define AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_GRAY14
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
static const struct @321 planes[]
#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.
#define fs(width, name, subs,...)
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
#define AV_PIX_FMT_YUV422P10
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 inputs
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
static int box_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
int(* config_props)(AVFilterLink *link)
Link configuration callback.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV444P12
AVFilterContext * src
source filter
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
static av_cold int init(AVFilterContext *ctx)
#define AV_PIX_FMT_YUVA444P10
#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
#define AV_PIX_FMT_GBRP12
Used for passing data between threads.
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
const char * name
Pad name.
#define AV_PIX_FMT_YUV444P9
static enum AVPixelFormat pix_fmts[]
enum AVMediaType type
AVFilterPad type.
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 or at least make progress towards producing a frame
#define AV_PIX_FMT_YUVA444P9
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
#define AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUV422P14
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
int(* box_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
int h
agreed upon image height
static av_cold void uninit(AVFilterContext *ctx)
static int ref[MAX_W *MAX_W]
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
@ 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...
@ 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...
#define FILTER_OUTPUTS(array)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
static int config_output(AVFilterLink *outlink)
#define flags(name, subs,...)
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
#define AV_PIX_FMT_YUV440P12
the definition of that something depends on the semantic of the filter The callback must examine the status of the filter s links and proceed accordingly The status of output links is stored in the status_in and status_out fields and tested by the ff_outlink_frame_wanted() function. If this function returns true
#define AV_PIX_FMT_YUV444P14
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
int ff_framesync_dualinput_get(FFFrameSync *fs, AVFrame **f0, AVFrame **f1)
#define AV_PIX_FMT_GRAY12
static int process_frame(FFFrameSync *fs)
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
#define AV_PIX_FMT_YUV420P14