FFmpeg
vf_scale_vaapi.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 <string.h>
20 
21 #include "libavutil/avassert.h"
22 #include "libavutil/mem.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/pixdesc.h"
25 
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "scale.h"
30 #include "video.h"
31 #include "vaapi_vpp.h"
32 
33 typedef struct ScaleVAAPIContext {
34  VAAPIVPPContext vpp_ctx; // must be the first field
35 
37 
38  int mode;
39 
40  char *w_expr; // width expression string
41  char *h_expr; // height expression string
42 
48 
54 
55 static const char *scale_vaapi_mode_name(int mode)
56 {
57  switch (mode) {
58 #define D(name) case VA_FILTER_SCALING_ ## name: return #name
59  D(DEFAULT);
60  D(FAST);
61  D(HQ);
62  D(NL_ANAMORPHIC);
63 #undef D
64  default:
65  return "Invalid";
66  }
67 }
68 
69 
71 {
72  AVFilterLink *inlink = outlink->src->inputs[0];
73  AVFilterContext *avctx = outlink->src;
74  VAAPIVPPContext *vpp_ctx = avctx->priv;
75  ScaleVAAPIContext *ctx = avctx->priv;
76  int err;
77 
78  if ((err = ff_scale_eval_dimensions(ctx,
79  ctx->w_expr, ctx->h_expr,
80  inlink, outlink,
81  &vpp_ctx->output_width, &vpp_ctx->output_height)) < 0)
82  return err;
83 
84  err = ff_vaapi_vpp_config_output(outlink);
85  if (err < 0)
86  return err;
87 
88  if (inlink->sample_aspect_ratio.num)
89  outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
90  else
91  outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
92 
93  return 0;
94 }
95 
97 {
98  AVFilterContext *avctx = inlink->dst;
99  AVFilterLink *outlink = avctx->outputs[0];
100  VAAPIVPPContext *vpp_ctx = avctx->priv;
101  ScaleVAAPIContext *ctx = avctx->priv;
103  VAProcPipelineParameterBuffer params;
104  int err;
105 
106  av_log(avctx, AV_LOG_DEBUG, "Filter input: %s, %ux%u (%"PRId64").\n",
107  av_get_pix_fmt_name(input_frame->format),
108  input_frame->width, input_frame->height, input_frame->pts);
109 
110  if (vpp_ctx->va_context == VA_INVALID_ID)
111  return AVERROR(EINVAL);
112 
113  output_frame = ff_get_video_buffer(outlink, vpp_ctx->output_width,
114  vpp_ctx->output_height);
115  if (!output_frame) {
116  err = AVERROR(ENOMEM);
117  goto fail;
118  }
119 
120  err = av_frame_copy_props(output_frame, input_frame);
121  if (err < 0)
122  return err;
123 
124  if (ctx->colour_primaries != AVCOL_PRI_UNSPECIFIED)
125  output_frame->color_primaries = ctx->colour_primaries;
126  if (ctx->colour_transfer != AVCOL_TRC_UNSPECIFIED)
127  output_frame->color_trc = ctx->colour_transfer;
128  if (ctx->colour_matrix != AVCOL_SPC_UNSPECIFIED)
129  output_frame->colorspace = ctx->colour_matrix;
130  if (ctx->colour_range != AVCOL_RANGE_UNSPECIFIED)
131  output_frame->color_range = ctx->colour_range;
132  if (ctx->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
133  output_frame->chroma_location = ctx->chroma_location;
134 
135  err = ff_vaapi_vpp_init_params(avctx, &params,
136  input_frame, output_frame);
137  if (err < 0)
138  goto fail;
139 
140  params.filter_flags |= ctx->mode;
141 
143  if (err < 0)
144  goto fail;
145 
146  av_frame_free(&input_frame);
147 
148  av_log(avctx, AV_LOG_DEBUG, "Filter output: %s, %ux%u (%"PRId64"), mode: %s.\n",
150  output_frame->width, output_frame->height, output_frame->pts,
151  scale_vaapi_mode_name(ctx->mode));
152 
153  return ff_filter_frame(outlink, output_frame);
154 
155 fail:
156  av_frame_free(&input_frame);
158  return err;
159 }
160 
162 {
163  VAAPIVPPContext *vpp_ctx = avctx->priv;
164  ScaleVAAPIContext *ctx = avctx->priv;
165 
166  ff_vaapi_vpp_ctx_init(avctx);
168 
169  if (ctx->output_format_string) {
170  vpp_ctx->output_format = av_get_pix_fmt(ctx->output_format_string);
171  if (vpp_ctx->output_format == AV_PIX_FMT_NONE) {
172  av_log(avctx, AV_LOG_ERROR, "Invalid output format.\n");
173  return AVERROR(EINVAL);
174  }
175  } else {
176  // Use the input format once that is configured.
177  vpp_ctx->output_format = AV_PIX_FMT_NONE;
178  }
179 
180 #define STRING_OPTION(var_name, func_name, default_value) do { \
181  if (ctx->var_name ## _string) { \
182  int var = av_ ## func_name ## _from_name(ctx->var_name ## _string); \
183  if (var < 0) { \
184  av_log(avctx, AV_LOG_ERROR, "Invalid %s.\n", #var_name); \
185  return AVERROR(EINVAL); \
186  } \
187  ctx->var_name = var; \
188  } else { \
189  ctx->var_name = default_value; \
190  } \
191  } while (0)
192 
194  STRING_OPTION(colour_transfer, color_transfer, AVCOL_TRC_UNSPECIFIED);
195  STRING_OPTION(colour_matrix, color_space, AVCOL_SPC_UNSPECIFIED);
196  STRING_OPTION(chroma_location, chroma_location, AVCHROMA_LOC_UNSPECIFIED);
197 
198  return 0;
199 }
200 
201 #define OFFSET(x) offsetof(ScaleVAAPIContext, x)
202 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM)
203 static const AVOption scale_vaapi_options[] = {
204  { "w", "Output video width",
205  OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, .flags = FLAGS },
206  { "h", "Output video height",
207  OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, .flags = FLAGS },
208  { "format", "Output video format (software format of hardware frames)",
209  OFFSET(output_format_string), AV_OPT_TYPE_STRING, .flags = FLAGS },
210  { "mode", "Scaling mode",
211  OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = VA_FILTER_SCALING_HQ },
212  0, VA_FILTER_SCALING_NL_ANAMORPHIC, FLAGS, "mode" },
213  { "default", "Use the default (depend on the driver) scaling algorithm",
214  0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_DEFAULT }, 0, 0, FLAGS, "mode" },
215  { "fast", "Use fast scaling algorithm",
216  0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_FAST }, 0, 0, FLAGS, "mode" },
217  { "hq", "Use high quality scaling algorithm",
218  0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_HQ }, 0, 0, FLAGS, "mode" },
219  { "nl_anamorphic", "Use nolinear anamorphic scaling algorithm",
220  0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_NL_ANAMORPHIC }, 0, 0, FLAGS, "mode" },
221 
222  // These colour properties match the ones of the same name in vf_scale.
223  { "out_color_matrix", "Output colour matrix coefficient set",
224  OFFSET(colour_matrix_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
225  { "out_range", "Output colour range",
226  OFFSET(colour_range), AV_OPT_TYPE_INT, { .i64 = AVCOL_RANGE_UNSPECIFIED },
228  { "full", "Full range",
229  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, "range" },
230  { "limited", "Limited range",
231  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, "range" },
232  { "jpeg", "Full range",
233  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, "range" },
234  { "mpeg", "Limited range",
235  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, "range" },
236  { "tv", "Limited range",
237  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, "range" },
238  { "pc", "Full range",
239  0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, "range" },
240  // These colour properties are new here.
241  { "out_color_primaries", "Output colour primaries",
242  OFFSET(colour_primaries_string), AV_OPT_TYPE_STRING,
243  { .str = NULL }, .flags = FLAGS },
244  { "out_color_transfer", "Output colour transfer characteristics",
245  OFFSET(colour_transfer_string), AV_OPT_TYPE_STRING,
246  { .str = NULL }, .flags = FLAGS },
247  { "out_chroma_location", "Output chroma sample location",
248  OFFSET(chroma_location_string), AV_OPT_TYPE_STRING,
249  { .str = NULL }, .flags = FLAGS },
250 
251  { NULL },
252 };
253 
254 AVFILTER_DEFINE_CLASS(scale_vaapi);
255 
256 static const AVFilterPad scale_vaapi_inputs[] = {
257  {
258  .name = "default",
259  .type = AVMEDIA_TYPE_VIDEO,
260  .filter_frame = &scale_vaapi_filter_frame,
261  .config_props = &ff_vaapi_vpp_config_input,
262  },
263  { NULL }
264 };
265 
267  {
268  .name = "default",
269  .type = AVMEDIA_TYPE_VIDEO,
270  .config_props = &scale_vaapi_config_output,
271  },
272  { NULL }
273 };
274 
276  .name = "scale_vaapi",
277  .description = NULL_IF_CONFIG_SMALL("Scale to/from VAAPI surfaces."),
278  .priv_size = sizeof(ScaleVAAPIContext),
284  .priv_class = &scale_vaapi_class,
285  .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
286 };
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:99
ff_vaapi_vpp_pipeline_uninit
void ff_vaapi_vpp_pipeline_uninit(AVFilterContext *avctx)
Definition: vaapi_vpp.c:44
ff_vaapi_vpp_ctx_init
void ff_vaapi_vpp_ctx_init(AVFilterContext *avctx)
Definition: vaapi_vpp.c:666
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
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
AVColorTransferCharacteristic
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:467
ff_vaapi_vpp_render_picture
int ff_vaapi_vpp_render_picture(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, AVFrame *output_frame)
Definition: vaapi_vpp.c:592
FF_FILTER_FLAG_HWFRAME_AWARE
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition: internal.h:385
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1080
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:202
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
pixdesc.h
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:388
AVFrame::width
int width
Definition: frame.h:353
ScaleVAAPIContext::colour_transfer_string
char * colour_transfer_string
Definition: vf_scale_vaapi.c:44
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:522
AVOption
AVOption.
Definition: opt.h:246
AVCOL_TRC_UNSPECIFIED
@ AVCOL_TRC_UNSPECIFIED
Definition: pixfmt.h:470
STRING_OPTION
#define STRING_OPTION(var_name, func_name, default_value)
ScaleVAAPIContext::colour_primaries
enum AVColorPrimaries colour_primaries
Definition: vf_scale_vaapi.c:49
AVColorPrimaries
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition: pixfmt.h:443
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
ScaleVAAPIContext::colour_primaries_string
char * colour_primaries_string
Definition: vf_scale_vaapi.c:43
video.h
formats.h
ScaleVAAPIContext::mode
int mode
Definition: vf_scale_vaapi.c:38
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:353
fail
#define fail()
Definition: checkasm.h:120
ScaleVAAPIContext::vpp_ctx
VAAPIVPPContext vpp_ctx
Definition: vf_scale_vaapi.c:34
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
avassert.h
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
av_cold
#define av_cold
Definition: attributes.h:84
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
VAAPIVPPContext::output_width
int output_width
Definition: vaapi_vpp.h:48
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
D
#define D(name)
ctx
AVFormatContext * ctx
Definition: movenc.c:48
VAAPIVPPContext::output_format
enum AVPixelFormat output_format
Definition: vaapi_vpp.h:47
scale_vaapi_mode_name
static const char * scale_vaapi_mode_name(int mode)
Definition: vf_scale_vaapi.c:55
AVCOL_PRI_UNSPECIFIED
@ AVCOL_PRI_UNSPECIFIED
Definition: pixfmt.h:446
ScaleVAAPIContext::colour_range
int colour_range
Definition: vf_scale_vaapi.c:46
scale.h
ScaleVAAPIContext::chroma_location
enum AVChromaLocation chroma_location
Definition: vf_scale_vaapi.c:52
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:654
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVFilterContext::inputs
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:346
scale_vaapi_inputs
static const AVFilterPad scale_vaapi_inputs[]
Definition: vf_scale_vaapi.c:256
ff_vaapi_vpp_config_input
int ff_vaapi_vpp_config_input(AVFilterLink *inlink)
Definition: vaapi_vpp.c:70
ff_vf_scale_vaapi
AVFilter ff_vf_scale_vaapi
Definition: vf_scale_vaapi.c:275
inputs
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
Definition: filter_design.txt:243
ff_vaapi_vpp_ctx_uninit
void ff_vaapi_vpp_ctx_uninit(AVFilterContext *avctx)
Definition: vaapi_vpp.c:680
AVCOL_RANGE_UNSPECIFIED
@ AVCOL_RANGE_UNSPECIFIED
Definition: pixfmt.h:520
ScaleVAAPIContext::output_format_string
char * output_format_string
Definition: vf_scale_vaapi.c:36
ff_vaapi_vpp_query_formats
int ff_vaapi_vpp_query_formats(AVFilterContext *avctx)
Definition: vaapi_vpp.c:27
vaapi_vpp.h
ScaleVAAPIContext::colour_transfer
enum AVColorTransferCharacteristic colour_transfer
Definition: vf_scale_vaapi.c:50
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:188
scale_vaapi_config_output
static int scale_vaapi_config_output(AVFilterLink *outlink)
Definition: vf_scale_vaapi.c:70
OFFSET
#define OFFSET(x)
Definition: vf_scale_vaapi.c:201
AVCHROMA_LOC_UNSPECIFIED
@ AVCHROMA_LOC_UNSPECIFIED
Definition: pixfmt.h:542
ScaleVAAPIContext::colour_matrix
enum AVColorSpace colour_matrix
Definition: vf_scale_vaapi.c:51
AVFrame::format
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition: frame.h:368
scale_vaapi_filter_frame
static int scale_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
Definition: vf_scale_vaapi.c:96
output_frame
static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
Definition: h264dec.c:837
internal.h
AVChromaLocation
AVChromaLocation
Location of chroma samples.
Definition: pixfmt.h:541
ff_scale_eval_dimensions
int ff_scale_eval_dimensions(void *log_ctx, const char *w_expr, const char *h_expr, AVFilterLink *inlink, AVFilterLink *outlink, int *ret_w, int *ret_h)
Definition: scale.c:106
ScaleVAAPIContext::h_expr
char * h_expr
Definition: vf_scale_vaapi.c:41
VAAPIVPPContext::output_height
int output_height
Definition: vaapi_vpp.h:49
scale_vaapi_init
static av_cold int scale_vaapi_init(AVFilterContext *avctx)
Definition: vf_scale_vaapi.c:161
AVColorSpace
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:496
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(scale_vaapi)
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AVCOL_SPC_UNSPECIFIED
@ AVCOL_SPC_UNSPECIFIED
Definition: pixfmt.h:499
AVCOL_RANGE_MPEG
@ AVCOL_RANGE_MPEG
the normal 219*2^(n-8) "MPEG" YUV ranges
Definition: pixfmt.h:521
scale_vaapi_options
static const AVOption scale_vaapi_options[]
Definition: vf_scale_vaapi.c:203
AVFilter
Filter definition.
Definition: avfilter.h:144
VAAPIVPPContext
Definition: vaapi_vpp.h:33
params
const char const char * params
Definition: avisynth_c.h:867
VAAPIVPPContext::va_context
VAContextID va_context
Definition: vaapi_vpp.h:41
av_get_pix_fmt
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
Definition: pixdesc.c:2450
scale_vaapi_outputs
static const AVFilterPad scale_vaapi_outputs[]
Definition: vf_scale_vaapi.c:266
AVFrame::height
int height
Definition: frame.h:353
ff_vaapi_vpp_config_output
int ff_vaapi_vpp_config_output(AVFilterLink *outlink)
Definition: vaapi_vpp.c:95
mode
mode
Definition: ebur128.h:83
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
ScaleVAAPIContext::w_expr
char * w_expr
Definition: vf_scale_vaapi.c:40
ScaleVAAPIContext::chroma_location_string
char * chroma_location_string
Definition: vf_scale_vaapi.c:47
VAAPIVPPContext::pipeline_uninit
void(* pipeline_uninit)(AVFilterContext *avctx)
Definition: vaapi_vpp.h:56
av_mul_q
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition: rational.c:80
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
ScaleVAAPIContext
Definition: vf_scale_vaapi.c:33
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
mem.h
DEFAULT
#define DEFAULT
Definition: avdct.c:28
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: aeval.c:244
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
uninit
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:279
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
color_primaries
static const struct ColorPrimaries color_primaries[AVCOL_PRI_NB]
Definition: vf_colorspace.c:209
FLAGS
#define FLAGS
Definition: vf_scale_vaapi.c:202
ScaleVAAPIContext::colour_matrix_string
char * colour_matrix_string
Definition: vf_scale_vaapi.c:45
av_get_pix_fmt_name
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2438
ff_vaapi_vpp_init_params
int ff_vaapi_vpp_init_params(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, const AVFrame *input_frame, AVFrame *output_frame)
Definition: vaapi_vpp.c:515
AVFilterContext::outputs
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350