59#define OFFSET(x) offsetof(MergePlanesContext, x)
60#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
85 s->outdesc->nb_components < 2) {
91 for (
i =
s->nb_planes - 1;
i >= 0;
i--) {
92 if (m >= 0 && m <= 0x33333333) {
93 s->map[
i].plane = m & 0xf;
95 s->map[
i].input = m & 0xf;
99 if (
s->map[
i].plane > 3 ||
s->map[
i].input > 3) {
104 s->nb_inputs =
FFMAX(
s->nb_inputs,
s->map[
i].input + 1);
109 for (
i = 0;
i <
s->nb_inputs;
i++) {
134 if (
desc->comp[0].depth ==
s->outdesc->comp[0].depth &&
141 for (
i = 0;
i <
s->nb_inputs;
i++)
162 for (
i = 0;
i <
s->nb_inputs;
i++) {
172 for (
i = 0;
i <
s->nb_planes;
i++) {
173 const int input =
s->map[
i].input;
174 const int plane =
s->map[
i].plane;
178 s->planewidth[
i] * ((
s->indesc[input]->comp[plane].depth + 7) / 8),
202 outlink->
w =
ctx->inputs[0]->w;
203 outlink->
h =
ctx->inputs[0]->h;
211 s->planewidth[3] = outlink->
w;
215 s->planeheight[3] = outlink->
h;
217 for (
i = 0;
i <
s->nb_inputs;
i++) {
225 "does not match output link %s SAR %d:%d\n",
226 i,
ctx->input_pads[
i].name,
229 ctx->output_pads[0].name,
245 for (
int j = 0; j < inputp->
nb_planes; j++)
246 inputp->
depth[j] =
s->indesc[
i]->comp[j].depth;
254 for (
i = 0;
i <
s->nb_planes;
i++) {
255 const int input =
s->map[
i].input;
256 const int plane =
s->map[
i].plane;
264 if (
s->outdesc->comp[
i].depth != inputp->
depth[plane]) {
266 "match input %d plane %d depth %d\n",
267 i,
s->outdesc->comp[
i].depth,
268 input, plane, inputp->
depth[plane]);
273 "match input %d plane %d width %d\n",
280 "match input %d plane %d height %d\n",
281 i,
s->planeheight[
i],
314 .p.name =
"mergeplanes",
316 .p.priv_class = &mergeplanes_class,
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
const FFFilter ff_vf_mergeplanes
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int ff_append_inpad_free_name(AVFilterContext *f, AVFilterPad *p)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Main libavfilter public API header.
char * av_asprintf(const char *fmt,...)
#define i(width, name, range_min, range_max)
#define fs(width, name, subs,...)
#define AV_CEIL_RSHIFT(a, b)
int(* init)(AVBSFContext *ctx)
static av_always_inline int process_frame(AVTextFormatContext *tfc, InputFile *ifile, AVFrame *frame, const AVPacket *pkt, int *packet_new)
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
#define AV_OPT_FLAG_DEPRECATED
Set if option is deprecated, users should refer to AVOption.help text for more information.
@ AV_OPT_TYPE_PIXEL_FMT
Underlying C type is enum AVPixelFormat.
@ AV_OPT_TYPE_INT
Underlying C type is int.
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
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.
const VDPAUPixFmtMap * map
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_OUTPUTS(array)
static FilterLink * ff_filter_link(AVFilterLink *link)
#define AVFILTER_DEFINE_CLASS(fname)
#define FILTER_QUERY_FUNC2(func)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
@ EXT_STOP
Completely stop all streams with this one.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
#define AV_PIX_FMT_FLAG_BE
Pixel format is big-endian.
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Describe the class of an AVClass context structure.
A link between two filters.
int w
agreed upon image width
int h
agreed upon image height
AVFilterContext * src
source filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
int format
agreed upon media format
A filter pad used for either input or output.
enum AVMediaType type
AVFilterPad type.
const char * name
Pad name.
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
AVRational time_base
Time base for the incoming frames.
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events.
Link properties exposed to filter code, but not external callers.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable.
const AVPixFmtDescriptor * indesc[4]
const AVPixFmtDescriptor * outdesc
enum AVPixelFormat out_fmt
static AVFormatContext * ctx
static const AVFilterPad mergeplanes_outputs[]
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int activate(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption mergeplanes_options[]
static int config_output(AVFilterLink *outlink)
static int process_frame(FFFrameSync *fs)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.