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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/*
* Copyright (c) 2023 Zhao Zhili <zhilizhao@tencent.com>
*
* 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 <VideoToolbox/VideoToolbox.h>
#include "libavutil/hwcontext.h"
#include "libavutil/hwcontext_videotoolbox.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "filters.h"
#include "scale_eval.h"
#include "video.h"
typedef struct ScaleVtContext {
AVClass *class;
VTPixelTransferSessionRef transfer;
int output_width;
int output_height;
char *w_expr;
char *h_expr;
enum AVColorPrimaries colour_primaries;
enum AVColorTransferCharacteristic colour_transfer;
enum AVColorSpace colour_matrix;
char *colour_primaries_string;
char *colour_transfer_string;
char *colour_matrix_string;
} ScaleVtContext;
static av_cold int scale_vt_init(AVFilterContext *avctx)
{
ScaleVtContext *s = avctx->priv;
int ret;
CFStringRef value;
ret = VTPixelTransferSessionCreate(kCFAllocatorDefault, &s->transfer);
if (ret != noErr) {
av_log(avctx, AV_LOG_ERROR, "transfer session create failed, %d\n", ret);
return AVERROR_EXTERNAL;
}
#define STRING_OPTION(var_name, func_name, default_value) \
do { \
if (s->var_name##_string) { \
int var = av_##func_name##_from_name(s->var_name##_string); \
if (var < 0) { \
av_log(avctx, AV_LOG_ERROR, "Invalid %s.\n", #var_name); \
return AVERROR(EINVAL); \
} \
s->var_name = var; \
} else { \
s->var_name = default_value; \
} \
} while (0)
STRING_OPTION(colour_primaries, color_primaries, AVCOL_PRI_UNSPECIFIED);
STRING_OPTION(colour_transfer, color_transfer, AVCOL_TRC_UNSPECIFIED);
STRING_OPTION(colour_matrix, color_space, AVCOL_SPC_UNSPECIFIED);
if (s->colour_primaries != AVCOL_PRI_UNSPECIFIED) {
value = av_map_videotoolbox_color_primaries_from_av(s->colour_primaries);
if (!value) {
av_log(avctx, AV_LOG_ERROR,
"Doesn't support converting to colour primaries %s\n",
s->colour_primaries_string);
return AVERROR(ENOTSUP);
}
VTSessionSetProperty(s->transfer, kVTPixelTransferPropertyKey_DestinationColorPrimaries, value);
}
if (s->colour_transfer != AVCOL_TRC_UNSPECIFIED) {
value = av_map_videotoolbox_color_trc_from_av(s->colour_transfer);
if (!value) {
av_log(avctx, AV_LOG_ERROR,
"Doesn't support converting to trc %s\n",
s->colour_transfer_string);
return AVERROR(ENOTSUP);
}
VTSessionSetProperty(s->transfer, kVTPixelTransferPropertyKey_DestinationTransferFunction, value);
}
if (s->colour_matrix != AVCOL_SPC_UNSPECIFIED) {
value = av_map_videotoolbox_color_matrix_from_av(s->colour_matrix);
if (!value) {
av_log(avctx, AV_LOG_ERROR,
"Doesn't support converting to colorspace %s\n",
s->colour_matrix_string);
return AVERROR(ENOTSUP);
}
VTSessionSetProperty(s->transfer, kVTPixelTransferPropertyKey_DestinationYCbCrMatrix, value);
}
VTSessionSetProperty(s->transfer, kVTPixelTransferPropertyKey_ScalingMode, kVTScalingMode_CropSourceToCleanAperture);
return 0;
}
static av_cold void scale_vt_uninit(AVFilterContext *avctx)
{
ScaleVtContext *s = avctx->priv;
if (s->transfer) {
VTPixelTransferSessionInvalidate(s->transfer);
CFRelease(s->transfer);
s->transfer = NULL;
}
}
static int scale_vt_filter_frame(AVFilterLink *link, AVFrame *in)
{
int ret;
AVFilterContext *ctx = link->dst;
ScaleVtContext *s = ctx->priv;
AVFilterLink *outlink = ctx->outputs[0];
CVPixelBufferRef src;
CVPixelBufferRef dst;
int left;
int top;
int width;
int height;
CFNumberRef crop_width_num;
CFNumberRef crop_height_num;
CFNumberRef crop_offset_left_num;
CFNumberRef crop_offset_top_num;
const void *clean_aperture_keys[4];
const void *source_clean_aperture_values[4];
CFDictionaryRef source_clean_aperture;
AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out) {
ret = AVERROR(ENOMEM);
goto fail;
}
ret = av_frame_copy_props(out, in);
if (ret < 0)
goto fail;
out->crop_left = 0;
out->crop_top = 0;
out->crop_right = 0;
out->crop_bottom = 0;
if (out->width != in->width || out->height != in->height) {
av_frame_side_data_remove_by_props(&out->side_data, &out->nb_side_data,
AV_SIDE_DATA_PROP_SIZE_DEPENDENT);
}
av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
(int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
(int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
INT_MAX);
if (s->colour_primaries != AVCOL_PRI_UNSPECIFIED)
out->color_primaries = s->colour_primaries;
if (s->colour_transfer != AVCOL_TRC_UNSPECIFIED)
out->color_trc = s->colour_transfer;
if (s->colour_matrix != AVCOL_SPC_UNSPECIFIED)
out->colorspace = s->colour_matrix;
width = (in->width - in->crop_right) - in->crop_left;
height = (in->height - in->crop_bottom) - in->crop_top;
// The crop offsets are relative to the center of the frame.
// the crop width and crop height are relative to the center of the crop rect, not top left as normal.
left = in->crop_left - in->width / 2 + width / 2;
top = in->crop_top - in->height / 2 + height / 2;
crop_width_num = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &width);
crop_height_num = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &height);
crop_offset_left_num = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &left);
crop_offset_top_num = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &top);
clean_aperture_keys[0] = kCVImageBufferCleanApertureWidthKey;
clean_aperture_keys[1] = kCVImageBufferCleanApertureHeightKey;
clean_aperture_keys[2] = kCVImageBufferCleanApertureHorizontalOffsetKey;
clean_aperture_keys[3] = kCVImageBufferCleanApertureVerticalOffsetKey;
source_clean_aperture_values[0] = crop_width_num;
source_clean_aperture_values[1] = crop_height_num;
source_clean_aperture_values[2] = crop_offset_left_num;
source_clean_aperture_values[3] = crop_offset_top_num;
source_clean_aperture = CFDictionaryCreate(kCFAllocatorDefault,
clean_aperture_keys,
source_clean_aperture_values,
4,
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFRelease(crop_width_num);
CFRelease(crop_height_num);
CFRelease(crop_offset_left_num);
CFRelease(crop_offset_top_num);
src = (CVPixelBufferRef)in->data[3];
dst = (CVPixelBufferRef)out->data[3];
CVBufferSetAttachment(src, kCVImageBufferCleanApertureKey,
source_clean_aperture, kCVAttachmentMode_ShouldPropagate);
ret = VTPixelTransferSessionTransferImage(s->transfer, src, dst);
CFRelease(source_clean_aperture);
if (ret != noErr) {
av_log(ctx, AV_LOG_ERROR, "transfer image failed, %d\n", ret);
ret = AVERROR_EXTERNAL;
goto fail;
}
av_frame_free(&in);
return ff_filter_frame(outlink, out);
fail:
av_frame_free(&in);
av_frame_free(&out);
return ret;
}
static int scale_vt_config_output(AVFilterLink *outlink)
{
int err;
FilterLink *outl = ff_filter_link(outlink);
AVFilterContext *avctx = outlink->src;
ScaleVtContext *s = avctx->priv;
AVFilterLink *inlink = outlink->src->inputs[0];
FilterLink *inl = ff_filter_link(inlink);
AVHWFramesContext *hw_frame_ctx_in;
AVHWFramesContext *hw_frame_ctx_out;
err = ff_scale_eval_dimensions(s, s->w_expr, s->h_expr, inlink, outlink,
&s->output_width,
&s->output_height);
if (err < 0)
return err;
ff_scale_adjust_dimensions(inlink, &s->output_width, &s->output_height,
SCALE_FORCE_OAR_DISABLE, 1, 1.f);
outlink->w = s->output_width;
outlink->h = s->output_height;
if (inlink->sample_aspect_ratio.num) {
AVRational r = {outlink->h * inlink->w, outlink->w * inlink->h};
outlink->sample_aspect_ratio = av_mul_q(r, inlink->sample_aspect_ratio);
} else {
outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
}
hw_frame_ctx_in = (AVHWFramesContext *)inl->hw_frames_ctx->data;
av_buffer_unref(&outl->hw_frames_ctx);
outl->hw_frames_ctx = av_hwframe_ctx_alloc(hw_frame_ctx_in->device_ref);
hw_frame_ctx_out = (AVHWFramesContext *)outl->hw_frames_ctx->data;
hw_frame_ctx_out->format = AV_PIX_FMT_VIDEOTOOLBOX;
hw_frame_ctx_out->sw_format = hw_frame_ctx_in->sw_format;
hw_frame_ctx_out->width = outlink->w;
hw_frame_ctx_out->height = outlink->h;
((AVVTFramesContext *)hw_frame_ctx_out->hwctx)->color_range = ((AVVTFramesContext *)hw_frame_ctx_in->hwctx)->color_range;
err = ff_filter_init_hw_frames(avctx, outlink, 1);
if (err < 0)
return err;
err = av_hwframe_ctx_init(outl->hw_frames_ctx);
if (err < 0) {
av_log(avctx, AV_LOG_ERROR,
"Failed to init videotoolbox frame context, %s\n",
av_err2str(err));
return err;
}
return 0;
}
#define OFFSET(x) offsetof(ScaleVtContext, x)
#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
static const AVOption scale_vt_options[] = {
{ "w", "Output video width",
OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, .flags = FLAGS },
{ "h", "Output video height",
OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, .flags = FLAGS },
{ "color_matrix", "Output colour matrix coefficient set",
OFFSET(colour_matrix_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
{ "color_primaries", "Output colour primaries",
OFFSET(colour_primaries_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
{ "color_transfer", "Output colour transfer characteristics",
OFFSET(colour_transfer_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
{ NULL },
};
AVFILTER_DEFINE_CLASS(scale_vt);
static const AVFilterPad scale_vt_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.filter_frame = &scale_vt_filter_frame,
},
};
static const AVFilterPad scale_vt_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.config_props = &scale_vt_config_output,
},
};
const FFFilter ff_vf_scale_vt = {
.p.name = "scale_vt",
.p.description = NULL_IF_CONFIG_SMALL("Scale Videotoolbox frames"),
.p.priv_class = &scale_vt_class,
.p.flags = AVFILTER_FLAG_HWDEVICE,
.priv_size = sizeof(ScaleVtContext),
.init = scale_vt_init,
.uninit = scale_vt_uninit,
FILTER_INPUTS(scale_vt_inputs),
FILTER_OUTPUTS(scale_vt_outputs),
FILTER_SINGLE_PIXFMT(AV_PIX_FMT_VIDEOTOOLBOX),
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
};
|