FFmpeg
Loading...
Searching...
No Matches
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/opt.h"
22#include "libavutil/pixdesc.h"
23
24#include "avfilter.h"
25#include "filters.h"
26#include "scale_eval.h"
27#include "video.h"
28#include "vaapi_vpp.h"
29
55
56static const char *scale_vaapi_mode_name(int mode)
57{
58 switch (mode) {
59#define D(name) case VA_FILTER_SCALING_ ## name: return #name
60 D(DEFAULT);
61 D(FAST);
62 D(HQ);
63 D(NL_ANAMORPHIC);
64#undef D
65 default:
66 return "Invalid";
67 }
68}
69
70
72{
73 AVFilterLink *inlink = outlink->src->inputs[0];
74 AVFilterContext *avctx = outlink->src;
75 VAAPIVPPContext *vpp_ctx = avctx->priv;
76 ScaleVAAPIContext *ctx = avctx->priv;
77 double w_adj = 1.0;
78 int err;
79
81 ctx->w_expr, ctx->h_expr,
82 inlink, outlink,
83 &vpp_ctx->output_width, &vpp_ctx->output_height)) < 0)
84 return err;
85
86 if (ctx->reset_sar)
87 w_adj = inlink->sample_aspect_ratio.num ?
89
90 err = ff_scale_adjust_dimensions(inlink, &vpp_ctx->output_width, &vpp_ctx->output_height,
91 ctx->force_original_aspect_ratio,
92 ctx->force_divisible_by, w_adj);
93 if (err < 0)
94 return err;
95
96 if (inlink->w == vpp_ctx->output_width && inlink->h == vpp_ctx->output_height &&
97 (vpp_ctx->input_frames->sw_format == vpp_ctx->output_format ||
98 vpp_ctx->output_format == AV_PIX_FMT_NONE) &&
99 ctx->colour_primaries == AVCOL_PRI_UNSPECIFIED &&
100 ctx->colour_transfer == AVCOL_TRC_UNSPECIFIED &&
101 ctx->colour_matrix == AVCOL_SPC_UNSPECIFIED &&
102 ctx->colour_range == AVCOL_RANGE_UNSPECIFIED &&
103 ctx->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
104 vpp_ctx->passthrough = 1;
105
106 err = ff_vaapi_vpp_config_output(outlink);
107 if (err < 0)
108 return err;
109
110 if (ctx->reset_sar)
111 outlink->sample_aspect_ratio = (AVRational){1, 1};
112 else if (inlink->sample_aspect_ratio.num)
113 outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
114 else
115 outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
116
117 return 0;
118}
119
120static int scale_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
121{
122 AVFilterContext *avctx = inlink->dst;
123 AVFilterLink *outlink = avctx->outputs[0];
124 VAAPIVPPContext *vpp_ctx = avctx->priv;
125 ScaleVAAPIContext *ctx = avctx->priv;
127 VAProcPipelineParameterBuffer params;
128 int err;
129
130 av_log(avctx, AV_LOG_DEBUG, "Filter input: %s, %ux%u (%"PRId64").\n",
131 av_get_pix_fmt_name(input_frame->format),
132 input_frame->width, input_frame->height, input_frame->pts);
133
134 if (vpp_ctx->passthrough)
135 return ff_filter_frame(outlink, input_frame);
136
137 if (vpp_ctx->va_context == VA_INVALID_ID)
138 return AVERROR(EINVAL);
139
141 vpp_ctx->output_height);
142 if (!output_frame) {
143 err = AVERROR(ENOMEM);
144 goto fail;
145 }
146
147 err = av_frame_copy_props(output_frame, input_frame);
148 if (err < 0)
149 goto fail;
150
151 if (output_frame->width != input_frame->width || output_frame->height != input_frame->height) {
153 &output_frame->nb_side_data,
155 }
156
157 if (ctx->colour_primaries != AVCOL_PRI_UNSPECIFIED)
158 output_frame->color_primaries = ctx->colour_primaries;
159 if (ctx->colour_transfer != AVCOL_TRC_UNSPECIFIED)
160 output_frame->color_trc = ctx->colour_transfer;
161 if (ctx->colour_matrix != AVCOL_SPC_UNSPECIFIED)
162 output_frame->colorspace = ctx->colour_matrix;
163 if (ctx->colour_range != AVCOL_RANGE_UNSPECIFIED)
164 output_frame->color_range = ctx->colour_range;
165 if (ctx->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
166 output_frame->chroma_location = ctx->chroma_location;
167
168 err = ff_vaapi_vpp_init_params(avctx, &params,
169 input_frame, output_frame);
170 if (err < 0)
171 goto fail;
172
173 params.filter_flags |= ctx->mode;
174
176 if (err < 0)
177 goto fail;
178
179 av_frame_free(&input_frame);
180
181 av_log(avctx, AV_LOG_DEBUG, "Filter output: %s, %ux%u (%"PRId64"), mode: %s.\n",
183 output_frame->width, output_frame->height, output_frame->pts,
185
186 return ff_filter_frame(outlink, output_frame);
187
188fail:
189 av_frame_free(&input_frame);
191 return err;
192}
193
195{
196 VAAPIVPPContext *vpp_ctx = avctx->priv;
197 ScaleVAAPIContext *ctx = avctx->priv;
198
201
202 if (ctx->output_format_string) {
203 vpp_ctx->output_format = av_get_pix_fmt(ctx->output_format_string);
204 if (vpp_ctx->output_format == AV_PIX_FMT_NONE) {
205 av_log(avctx, AV_LOG_ERROR, "Invalid output format.\n");
206 return AVERROR(EINVAL);
207 }
208 } else {
209 // Use the input format once that is configured.
211 }
212
213#define STRING_OPTION(var_name, func_name, default_value) do { \
214 if (ctx->var_name ## _string) { \
215 int var = av_ ## func_name ## _from_name(ctx->var_name ## _string); \
216 if (var < 0) { \
217 av_log(avctx, AV_LOG_ERROR, "Invalid %s.\n", #var_name); \
218 return AVERROR(EINVAL); \
219 } \
220 ctx->var_name = var; \
221 } else { \
222 ctx->var_name = default_value; \
223 } \
224 } while (0)
225
227 STRING_OPTION(colour_transfer, color_transfer, AVCOL_TRC_UNSPECIFIED);
228 STRING_OPTION(colour_matrix, color_space, AVCOL_SPC_UNSPECIFIED);
229 STRING_OPTION(chroma_location, chroma_location, AVCHROMA_LOC_UNSPECIFIED);
230
231 return 0;
232}
233
234#define OFFSET(x) offsetof(ScaleVAAPIContext, x)
235#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM)
237 { "w", "Output video width",
238 OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, .flags = FLAGS },
239 { "h", "Output video height",
240 OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, .flags = FLAGS },
241 { "format", "Output video format (software format of hardware frames)",
242 OFFSET(output_format_string), AV_OPT_TYPE_STRING, .flags = FLAGS },
243 { "mode", "Scaling mode",
244 OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = VA_FILTER_SCALING_HQ },
245 0, VA_FILTER_SCALING_NL_ANAMORPHIC, FLAGS, .unit = "mode" },
246 { "default", "Use the default (depend on the driver) scaling algorithm",
247 0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_DEFAULT }, 0, 0, FLAGS, .unit = "mode" },
248 { "fast", "Use fast scaling algorithm",
249 0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_FAST }, 0, 0, FLAGS, .unit = "mode" },
250 { "hq", "Use high quality scaling algorithm",
251 0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_HQ }, 0, 0, FLAGS, .unit = "mode" },
252 { "nl_anamorphic", "Use nolinear anamorphic scaling algorithm",
253 0, AV_OPT_TYPE_CONST, { .i64 = VA_FILTER_SCALING_NL_ANAMORPHIC }, 0, 0, FLAGS, .unit = "mode" },
254
255 // These colour properties match the ones of the same name in vf_scale.
256 { "out_color_matrix", "Output colour matrix coefficient set",
257 OFFSET(colour_matrix_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
258 { "out_range", "Output colour range",
259 OFFSET(colour_range), AV_OPT_TYPE_INT, { .i64 = AVCOL_RANGE_UNSPECIFIED },
261 { "full", "Full range",
262 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, .unit = "range" },
263 { "limited", "Limited range",
264 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, .unit = "range" },
265 { "jpeg", "Full range",
266 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, .unit = "range" },
267 { "mpeg", "Limited range",
268 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, .unit = "range" },
269 { "tv", "Limited range",
270 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_MPEG }, 0, 0, FLAGS, .unit = "range" },
271 { "pc", "Full range",
272 0, AV_OPT_TYPE_CONST, { .i64 = AVCOL_RANGE_JPEG }, 0, 0, FLAGS, .unit = "range" },
273 // These colour properties are new here.
274 { "out_color_primaries", "Output colour primaries",
275 OFFSET(colour_primaries_string), AV_OPT_TYPE_STRING,
276 { .str = NULL }, .flags = FLAGS },
277 { "out_color_transfer", "Output colour transfer characteristics",
278 OFFSET(colour_transfer_string), AV_OPT_TYPE_STRING,
279 { .str = NULL }, .flags = FLAGS },
280 { "out_chroma_location", "Output chroma sample location",
281 OFFSET(chroma_location_string), AV_OPT_TYPE_STRING,
282 { .str = NULL }, .flags = FLAGS },
283 { "force_original_aspect_ratio", "decrease or increase w/h if necessary to keep the original AR", OFFSET(force_original_aspect_ratio), AV_OPT_TYPE_INT, { .i64 = 0}, 0, SCALE_FORCE_OAR_NB-1, FLAGS, .unit = "force_oar" },
284 { "disable", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = SCALE_FORCE_OAR_DISABLE }, 0, 0, FLAGS, .unit = "force_oar" },
285 { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = SCALE_FORCE_OAR_DECREASE }, 0, 0, FLAGS, .unit = "force_oar" },
286 { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = SCALE_FORCE_OAR_INCREASE }, 0, 0, FLAGS, .unit = "force_oar" },
287 { "force_divisible_by", "enforce that the output resolution is divisible by a defined integer when force_original_aspect_ratio is used", OFFSET(force_divisible_by), AV_OPT_TYPE_INT, { .i64 = 1}, 1, 256, FLAGS },
288 { "reset_sar", "reset SAR to 1 and scale to square pixels if scaling proportionally", OFFSET(reset_sar), AV_OPT_TYPE_BOOL, { .i64 = 0}, 0, 1, FLAGS },
289
290 { NULL },
291};
292
294
296 {
297 .name = "default",
298 .type = AVMEDIA_TYPE_VIDEO,
299 .filter_frame = &scale_vaapi_filter_frame,
300 .config_props = &ff_vaapi_vpp_config_input,
301 },
302};
303
305 {
306 .name = "default",
307 .type = AVMEDIA_TYPE_VIDEO,
308 .config_props = &scale_vaapi_config_output,
309 },
310};
311
313 .p.name = "scale_vaapi",
314 .p.description = NULL_IF_CONFIG_SMALL("Scale to/from VAAPI surfaces."),
315 .p.priv_class = &scale_vaapi_class,
316 .priv_size = sizeof(ScaleVAAPIContext),
322 .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
323};
SwsAArch64OpImplParams params
Definition ops.c:51
const FFFilter ff_vf_scale_vaapi
static AVFormatContext * ctx
#define DEFAULT
Definition avdct.c:30
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
static const AVColorPrimariesDesc color_primaries[AVCOL_PRI_NB]
Definition csp.c:76
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define fail
Definition test.h:479
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition opt.h:326
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AVERROR(e)
Definition error.h:45
void av_frame_side_data_remove_by_props(AVFrameSideData ***sd, int *nb_sd, int props)
Remove and free all side data instances that match any of the given side data properties.
Definition side_data.c:123
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
@ AV_SIDE_DATA_PROP_SIZE_DEPENDENT
Side data depends on the video dimensions.
Definition frame.h:354
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition rational.c:80
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
Definition h264dec.c:911
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
Definition filters.h:208
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
AVOptions.
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:3380
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
Definition pixdesc.c:3392
AVChromaLocation
Location of chroma samples.
Definition pixfmt.h:802
@ AVCHROMA_LOC_UNSPECIFIED
Definition pixfmt.h:803
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition pixfmt.h:766
@ AVCOL_RANGE_UNSPECIFIED
Definition pixfmt.h:749
@ AVCOL_RANGE_JPEG
Full range content.
Definition pixfmt.h:783
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
AVColorPrimaries
Chromaticity coordinates of the source primaries.
Definition pixfmt.h:642
@ AVCOL_PRI_UNSPECIFIED
Definition pixfmt.h:645
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition pixfmt.h:672
@ AVCOL_TRC_UNSPECIFIED
Definition pixfmt.h:675
AVColorSpace
YUV colorspace type.
Definition pixfmt.h:706
@ AVCOL_SPC_UNSPECIFIED
Definition pixfmt.h:709
int ff_scale_adjust_dimensions(AVFilterLink *inlink, int *ret_w, int *ret_h, int force_original_aspect_ratio, int force_divisible_by, double w_adj)
Transform evaluated width and height obtained from ff_scale_eval_dimensions into actual target width ...
Definition scale_eval.c:123
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)
Parse and evaluate string expressions for width and height.
Definition scale_eval.c:58
@ SCALE_FORCE_OAR_DISABLE
Definition scale_eval.h:25
@ SCALE_FORCE_OAR_NB
Definition scale_eval.h:28
@ SCALE_FORCE_OAR_INCREASE
Definition scale_eval.h:27
@ SCALE_FORCE_OAR_DECREASE
Definition scale_eval.h:26
An instance of a filter.
Definition avfilter.h:273
AVFilterLink ** inputs
array of pointers to input links
Definition avfilter.h:281
void * priv
private data for use by the filter
Definition avfilter.h:288
AVFilterLink ** outputs
array of pointers to output links
Definition avfilter.h:285
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
int width
Definition frame.h:544
int height
Definition frame.h:544
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition frame.h:559
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
Definition hwcontext.h:213
AVOption.
Definition opt.h:428
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
enum AVChromaLocation chroma_location
char * chroma_location_string
enum AVColorPrimaries colour_primaries
char * colour_transfer_string
char * colour_primaries_string
enum AVColorSpace colour_matrix
enum AVColorTransferCharacteristic colour_transfer
VAAPIVPPContext vpp_ctx
void(* pipeline_uninit)(AVFilterContext *avctx)
Definition vaapi_vpp.h:63
enum AVPixelFormat output_format
Definition vaapi_vpp.h:52
VAContextID va_context
Definition vaapi_vpp.h:46
AVHWFramesContext * input_frames
Definition vaapi_vpp.h:49
Definition swscale.c:71
#define av_log(a,...)
int ff_vaapi_vpp_config_output(AVFilterLink *outlink)
Definition vaapi_vpp.c:97
int ff_vaapi_vpp_config_input(AVFilterLink *inlink)
Definition vaapi_vpp.c:71
int ff_vaapi_vpp_query_formats(const AVFilterContext *avctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition vaapi_vpp.c:29
void ff_vaapi_vpp_pipeline_uninit(AVFilterContext *avctx)
Definition vaapi_vpp.c:45
void ff_vaapi_vpp_ctx_init(AVFilterContext *avctx)
Definition vaapi_vpp.c:714
int ff_vaapi_vpp_init_params(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, const AVFrame *input_frame, AVFrame *output_frame)
Definition vaapi_vpp.c:533
int ff_vaapi_vpp_render_picture(AVFilterContext *avctx, VAProcPipelineParameterBuffer *params, AVFrame *output_frame)
Definition vaapi_vpp.c:707
void ff_vaapi_vpp_ctx_uninit(AVFilterContext *avctx)
Definition vaapi_vpp.c:728
@ FAST
Definition vf_guided.c:32
#define D(name)
static const AVFilterPad scale_vaapi_outputs[]
static const char * scale_vaapi_mode_name(int mode)
static int scale_vaapi_config_output(AVFilterLink *outlink)
static int scale_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
static const AVFilterPad scale_vaapi_inputs[]
static av_cold int scale_vaapi_init(AVFilterContext *avctx)
static const AVOption scale_vaapi_options[]
#define OFFSET(x)
#define STRING_OPTION(var_name, func_name, default_value)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89