FFmpeg
vf_shuffleplanes.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "libavutil/avstring.h"
20 #include "libavutil/common.h"
21 #include "libavutil/internal.h"
22 #include "libavutil/opt.h"
23 #include "libavutil/pixdesc.h"
24 #include "libavutil/pixfmt.h"
25 
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "video.h"
30 
31 typedef struct ShufflePlanesContext {
32  const AVClass *class;
33 
34  /* number of planes in the selected pixel format */
35  int planes;
36 
37  /* mapping indices */
38  int map[4];
39 
40  /* set to 1 if some plane is used more than once, so we need to make a copy */
41  int copy;
43 
45 {
47  ShufflePlanesContext *s = ctx->priv;
48  int fmt, ret, i;
49 
50  for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
53 
54  if (!(desc->flags & AV_PIX_FMT_FLAG_PAL) &&
55  !(desc->flags & AV_PIX_FMT_FLAG_HWACCEL)) {
56  for (i = 0; i < 4; i++) {
57  if (s->map[i] >= planes)
58  break;
59 
60  if ((desc->log2_chroma_h || desc->log2_chroma_w) &&
61  (i == 1 || i == 2) != (s->map[i] == 1 || s->map[i] == 2))
62  break;
63  }
64 
65  if (i != 4)
66  continue;
67  if ((ret = ff_add_format(&formats, fmt)) < 0) {
68  return ret;
69  }
70  }
71  }
72 
74 }
75 
77 {
78  AVFilterContext *ctx = inlink->dst;
79  ShufflePlanesContext *s = ctx->priv;
80  int used[4] = { 0 };
81  int i;
82 
83  s->copy = 0;
84  s->planes = av_pix_fmt_count_planes(inlink->format);
85 
86  for (i = 0; i < s->planes; i++) {
87  if (used[s->map[i]])
88  s->copy = 1;
89  used[s->map[i]]++;
90  }
91 
92  return 0;
93 }
94 
96 {
97  AVFilterContext *ctx = inlink->dst;
98  ShufflePlanesContext *s = ctx->priv;
99  uint8_t *shuffled_data[4] = { NULL };
100  int shuffled_linesize[4] = { 0 };
101  int i, ret;
102 
103  for (i = 0; i < s->planes; i++) {
104  shuffled_data[i] = frame->data[s->map[i]];
105  shuffled_linesize[i] = frame->linesize[s->map[i]];
106  }
107  memcpy(frame->data, shuffled_data, sizeof(shuffled_data));
108  memcpy(frame->linesize, shuffled_linesize, sizeof(shuffled_linesize));
109 
110  if (s->copy) {
111  AVFrame *copy = ff_get_video_buffer(ctx->outputs[0], frame->width, frame->height);
112 
113  if (!copy) {
114  ret = AVERROR(ENOMEM);
115  goto fail;
116  }
117 
119 
121  if (ret < 0) {
123  goto fail;
124  }
125 
127  frame = copy;
128  }
129 
130  return ff_filter_frame(ctx->outputs[0], frame);
131 fail:
133  return ret;
134 }
135 
136 #define OFFSET(x) offsetof(ShufflePlanesContext, x)
137 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
138 static const AVOption shuffleplanes_options[] = {
139  { "map0", "Index of the input plane to be used as the first output plane ", OFFSET(map[0]), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 3, FLAGS },
140  { "map1", "Index of the input plane to be used as the second output plane ", OFFSET(map[1]), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 3, FLAGS },
141  { "map2", "Index of the input plane to be used as the third output plane ", OFFSET(map[2]), AV_OPT_TYPE_INT, { .i64 = 2 }, 0, 3, FLAGS },
142  { "map3", "Index of the input plane to be used as the fourth output plane ", OFFSET(map[3]), AV_OPT_TYPE_INT, { .i64 = 3 }, 0, 3, FLAGS },
143  { NULL },
144 };
145 
146 AVFILTER_DEFINE_CLASS(shuffleplanes);
147 
149  {
150  .name = "default",
151  .type = AVMEDIA_TYPE_VIDEO,
152  .config_props = shuffleplanes_config_input,
153  .filter_frame = shuffleplanes_filter_frame,
154  },
155 };
156 
158  .name = "shuffleplanes",
159  .description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
160  .priv_size = sizeof(ShufflePlanesContext),
161  .priv_class = &shuffleplanes_class,
166 };
formats
formats
Definition: signature.h:48
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:112
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(shuffleplanes)
AVERROR
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
opt.h
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1015
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2965
inlink
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
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
pixdesc.h
AVOption
AVOption.
Definition: opt.h:346
FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:159
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
ShufflePlanesContext::copy
int copy
Definition: vf_shuffleplanes.c:41
video.h
ShufflePlanesContext
Definition: vf_shuffleplanes.c:31
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
formats.h
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3005
shuffleplanes_config_input
static av_cold int shuffleplanes_config_input(AVFilterLink *inlink)
Definition: vf_shuffleplanes.c:76
fail
#define fail()
Definition: checkasm.h:179
AV_PIX_FMT_FLAG_HWACCEL
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition: pixdesc.h:128
ff_vf_shuffleplanes
const AVFilter ff_vf_shuffleplanes
Definition: vf_shuffleplanes.c:157
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
ShufflePlanesContext::map
int map[4]
Definition: vf_shuffleplanes.c:38
av_cold
#define av_cold
Definition: attributes.h:90
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:868
ff_video_default_filterpad
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition: video.c:37
s
#define s(width, name)
Definition: cbs_vp9.c:198
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_shuffleplanes.c:44
ctx
AVFormatContext * ctx
Definition: movenc.c:49
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:709
OFFSET
#define OFFSET(x)
Definition: vf_shuffleplanes.c:136
ff_add_format
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition: formats.c:505
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
copy
static void copy(const float *p1, float *p2, const int length)
Definition: vf_vaguedenoiser.c:186
av_frame_copy
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
Definition: frame.c:999
ShufflePlanesContext::planes
int planes
Definition: vf_shuffleplanes.c:35
internal.h
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:147
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
internal.h
shuffleplanes_options
static const AVOption shuffleplanes_options[]
Definition: vf_shuffleplanes.c:138
common.h
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
AVFilter
Filter definition.
Definition: avfilter.h:166
ret
ret
Definition: filter_design.txt:187
pixfmt.h
frame
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
Definition: filter_design.txt:264
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
avfilter.h
shuffleplanes_inputs
static const AVFilterPad shuffleplanes_inputs[]
Definition: vf_shuffleplanes.c:148
planes
static const struct @400 planes[]
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
desc
const char * desc
Definition: libsvtav1.c:75
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
map
const VDPAUPixFmtMap * map
Definition: hwcontext_vdpau.c:71
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
shuffleplanes_filter_frame
static int shuffleplanes_filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_shuffleplanes.c:95
avstring.h
FLAGS
#define FLAGS
Definition: vf_shuffleplanes.c:137
AV_PIX_FMT_FLAG_PAL
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition: pixdesc.h:120