1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
/*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <string.h>
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "filters.h"
#include "transpose.h"
#include "vaapi_vpp.h"
#include "video.h"
typedef struct TransposeVAAPIContext {
VAAPIVPPContext vpp_ctx; // must be the first field
int passthrough; // PassthroughType, landscape passthrough mode enabled
int dir; // TransposeDir
int rotation_state;
int mirror_state;
} TransposeVAAPIContext;
static int transpose_vaapi_build_filter_params(AVFilterContext *avctx)
{
VAAPIVPPContext *vpp_ctx = avctx->priv;
TransposeVAAPIContext *ctx = avctx->priv;
VAStatus vas;
int support_flag;
VAProcPipelineCaps pipeline_caps;
memset(&pipeline_caps, 0, sizeof(pipeline_caps));
vas = vaQueryVideoProcPipelineCaps(vpp_ctx->hwctx->display,
vpp_ctx->va_context,
NULL, 0,
&pipeline_caps);
if (vas != VA_STATUS_SUCCESS) {
av_log(avctx, AV_LOG_ERROR, "Failed to query pipeline "
"caps: %d (%s).\n", vas, vaErrorStr(vas));
return AVERROR(EIO);
}
if (!pipeline_caps.rotation_flags) {
av_log(avctx, AV_LOG_ERROR, "VAAPI driver doesn't support transpose\n");
return AVERROR(EINVAL);
}
switch (ctx->dir) {
case TRANSPOSE_CCLOCK_FLIP:
ctx->rotation_state = VA_ROTATION_270;
ctx->mirror_state = VA_MIRROR_VERTICAL;
break;
case TRANSPOSE_CLOCK:
ctx->rotation_state = VA_ROTATION_90;
ctx->mirror_state = VA_MIRROR_NONE;
break;
case TRANSPOSE_CCLOCK:
ctx->rotation_state = VA_ROTATION_270;
ctx->mirror_state = VA_MIRROR_NONE;
break;
case TRANSPOSE_CLOCK_FLIP:
ctx->rotation_state = VA_ROTATION_90;
ctx->mirror_state = VA_MIRROR_VERTICAL;
break;
case TRANSPOSE_REVERSAL:
ctx->rotation_state = VA_ROTATION_180;
ctx->mirror_state = VA_MIRROR_NONE;
break;
case TRANSPOSE_HFLIP:
ctx->rotation_state = VA_ROTATION_NONE;
ctx->mirror_state = VA_MIRROR_HORIZONTAL;
break;
case TRANSPOSE_VFLIP:
ctx->rotation_state = VA_ROTATION_NONE;
ctx->mirror_state = VA_MIRROR_VERTICAL;
break;
default:
av_log(avctx, AV_LOG_ERROR, "Failed to set direction to %d\n", ctx->dir);
return AVERROR(EINVAL);
}
if (VA_ROTATION_NONE != ctx->rotation_state) {
support_flag = pipeline_caps.rotation_flags & (1 << ctx->rotation_state);
if (!support_flag) {
av_log(avctx, AV_LOG_ERROR, "VAAPI driver doesn't support rotation %d\n",
ctx->rotation_state);
return AVERROR(EINVAL);
}
}
if (VA_MIRROR_NONE != ctx->mirror_state) {
support_flag = pipeline_caps.mirror_flags & ctx->mirror_state;
if (!support_flag) {
av_log(avctx, AV_LOG_ERROR, "VAAPI driver doesn't support mirror %d\n",
ctx->mirror_state);
return AVERROR(EINVAL);
}
}
return 0;
}
static int transpose_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
{
AVFilterContext *avctx = inlink->dst;
AVFilterLink *outlink = avctx->outputs[0];
VAAPIVPPContext *vpp_ctx = avctx->priv;
TransposeVAAPIContext *ctx = avctx->priv;
AVFrame *output_frame = NULL;
VAProcPipelineParameterBuffer params;
int err;
if (ctx->passthrough)
return ff_filter_frame(outlink, input_frame);
av_log(avctx, AV_LOG_DEBUG, "Filter input: %s, %ux%u (%"PRId64").\n",
av_get_pix_fmt_name(input_frame->format),
input_frame->width, input_frame->height, input_frame->pts);
if (vpp_ctx->va_context == VA_INVALID_ID)
return AVERROR(EINVAL);
output_frame = ff_get_video_buffer(outlink, vpp_ctx->output_width,
vpp_ctx->output_height);
if (!output_frame) {
err = AVERROR(ENOMEM);
goto fail;
}
err = av_frame_copy_props(output_frame, input_frame);
if (err < 0)
goto fail;
err = ff_vaapi_vpp_init_params(avctx, ¶ms,
input_frame, output_frame);
if (err < 0)
goto fail;
params.rotation_state = ctx->rotation_state;
params.mirror_state = ctx->mirror_state;
err = ff_vaapi_vpp_render_picture(avctx, ¶ms, output_frame);
if (err < 0)
goto fail;
av_frame_free(&input_frame);
av_log(avctx, AV_LOG_DEBUG, "Filter output: %s, %ux%u (%"PRId64").\n",
av_get_pix_fmt_name(output_frame->format),
output_frame->width, output_frame->height, output_frame->pts);
return ff_filter_frame(outlink, output_frame);
fail:
av_frame_free(&input_frame);
av_frame_free(&output_frame);
return err;
}
static av_cold int transpose_vaapi_init(AVFilterContext *avctx)
{
VAAPIVPPContext *vpp_ctx = avctx->priv;
ff_vaapi_vpp_ctx_init(avctx);
vpp_ctx->pipeline_uninit = ff_vaapi_vpp_pipeline_uninit;
vpp_ctx->build_filter_params = transpose_vaapi_build_filter_params;
vpp_ctx->output_format = AV_PIX_FMT_NONE;
return 0;
}
static int transpose_vaapi_vpp_config_output(AVFilterLink *outlink)
{
FilterLink *outl = ff_filter_link(outlink);
AVFilterContext *avctx = outlink->src;
VAAPIVPPContext *vpp_ctx = avctx->priv;
TransposeVAAPIContext *ctx = avctx->priv;
AVFilterLink *inlink = avctx->inputs[0];
FilterLink *inl = ff_filter_link(inlink);
if ((inlink->w >= inlink->h && ctx->passthrough == TRANSPOSE_PT_TYPE_LANDSCAPE) ||
(inlink->w <= inlink->h && ctx->passthrough == TRANSPOSE_PT_TYPE_PORTRAIT)) {
outl->hw_frames_ctx = av_buffer_ref(inl->hw_frames_ctx);
if (!outl->hw_frames_ctx)
return AVERROR(ENOMEM);
av_log(avctx, AV_LOG_VERBOSE,
"w:%d h:%d -> w:%d h:%d (passthrough mode)\n",
inlink->w, inlink->h, inlink->w, inlink->h);
return 0;
}
ctx->passthrough = TRANSPOSE_PT_TYPE_NONE;
switch (ctx->dir) {
case TRANSPOSE_CCLOCK_FLIP:
case TRANSPOSE_CCLOCK:
case TRANSPOSE_CLOCK:
case TRANSPOSE_CLOCK_FLIP:
vpp_ctx->output_width = avctx->inputs[0]->h;
vpp_ctx->output_height = avctx->inputs[0]->w;
av_log(avctx, AV_LOG_DEBUG, "swap width and height for clock/cclock rotation\n");
break;
default:
break;
}
return ff_vaapi_vpp_config_output(outlink);
}
static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
{
TransposeVAAPIContext *ctx = inlink->dst->priv;
return ctx->passthrough ?
ff_null_get_video_buffer(inlink, w, h) :
ff_default_get_video_buffer(inlink, w, h);
}
#define OFFSET(x) offsetof(TransposeVAAPIContext, x)
#define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM)
static const AVOption transpose_vaapi_options[] = {
{ "dir", "set transpose direction", OFFSET(dir), AV_OPT_TYPE_INT, { .i64 = TRANSPOSE_CCLOCK_FLIP }, 0, 6, FLAGS, .unit = "dir" },
{ "cclock_flip", "rotate counter-clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK_FLIP }, .flags=FLAGS, .unit = "dir" },
{ "clock", "rotate clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK }, .flags=FLAGS, .unit = "dir" },
{ "cclock", "rotate counter-clockwise", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CCLOCK }, .flags=FLAGS, .unit = "dir" },
{ "clock_flip", "rotate clockwise with vertical flip", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_CLOCK_FLIP }, .flags=FLAGS, .unit = "dir" },
{ "reversal", "rotate by half-turn", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_REVERSAL }, .flags=FLAGS, .unit = "dir" },
{ "hflip", "flip horizontally", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_HFLIP }, .flags=FLAGS, .unit = "dir" },
{ "vflip", "flip vertically", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_VFLIP }, .flags=FLAGS, .unit = "dir" },
{ "passthrough", "do not apply transposition if the input matches the specified geometry",
OFFSET(passthrough), AV_OPT_TYPE_INT, {.i64=TRANSPOSE_PT_TYPE_NONE}, 0, INT_MAX, FLAGS, .unit = "passthrough" },
{ "none", "always apply transposition", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_NONE}, INT_MIN, INT_MAX, FLAGS, .unit = "passthrough" },
{ "portrait", "preserve portrait geometry", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_PORTRAIT}, INT_MIN, INT_MAX, FLAGS, .unit = "passthrough" },
{ "landscape", "preserve landscape geometry", 0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_LANDSCAPE}, INT_MIN, INT_MAX, FLAGS, .unit = "passthrough" },
{ NULL }
};
AVFILTER_DEFINE_CLASS(transpose_vaapi);
static const AVFilterPad transpose_vaapi_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.filter_frame = &transpose_vaapi_filter_frame,
.get_buffer.video = get_video_buffer,
.config_props = &ff_vaapi_vpp_config_input,
},
};
static const AVFilterPad transpose_vaapi_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.config_props = &transpose_vaapi_vpp_config_output,
},
};
const FFFilter ff_vf_transpose_vaapi = {
.p.name = "transpose_vaapi",
.p.description = NULL_IF_CONFIG_SMALL("VAAPI VPP for transpose"),
.p.priv_class = &transpose_vaapi_class,
.priv_size = sizeof(TransposeVAAPIContext),
.init = &transpose_vaapi_init,
.uninit = &ff_vaapi_vpp_ctx_uninit,
FILTER_INPUTS(transpose_vaapi_inputs),
FILTER_OUTPUTS(transpose_vaapi_outputs),
FILTER_QUERY_FUNC2(&ff_vaapi_vpp_query_formats),
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
};
|