From 83a9b0bc4840c1bb203c23194c5f07f898999034 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 24 May 2017 15:07:45 +0200 Subject: videotoolbox: support new libavcodec API The new API has literally no advantages (other than that we can drop mp_vt_download_image and other things later), but it's sort-of uniform with the other hwaccels. "--videotoolbox-format=no" is not supported with the new API, because it doesn't "fit in". Probably could be added later again. The iOS code change is untested (no way to test). --- video/decode/hw_videotoolbox.c | 61 ++++++++++++++++++++++++++++++++++++++++++ video/decode/vd_lavc.c | 3 +++ 2 files changed, 64 insertions(+) (limited to 'video/decode') diff --git a/video/decode/hw_videotoolbox.c b/video/decode/hw_videotoolbox.c index b343b1de0e..d73133582e 100644 --- a/video/decode/hw_videotoolbox.c +++ b/video/decode/hw_videotoolbox.c @@ -17,6 +17,10 @@ * License along with mpv. If not, see . */ +#include "config.h" + +#if !HAVE_VIDEOTOOLBOX_HWACCEL_NEW + #include #include @@ -183,3 +187,60 @@ const struct vd_lavc_hwdec mp_vd_lavc_videotoolbox_copy = { .process_image = copy_image, .delay_queue = HWDEC_DELAY_QUEUE_COUNT, }; + +#else + +#include + +#include "video/decode/lavc.h" + +static void vt_dummy_destroy(struct mp_hwdec_ctx *ctx) +{ + av_buffer_unref(&ctx->av_device_ref); + talloc_free(ctx); +} + +static struct mp_hwdec_ctx *vt_create_dummy(struct mpv_global *global, + struct mp_log *plog, bool probing) +{ + struct mp_hwdec_ctx *ctx = talloc_ptrtype(NULL, ctx); + *ctx = (struct mp_hwdec_ctx) { + .type = HWDEC_VIDEOTOOLBOX_COPY, + .ctx = "dummy", + .destroy = vt_dummy_destroy, + }; + + if (av_hwdevice_ctx_create(&ctx->av_device_ref, AV_HWDEVICE_TYPE_VIDEOTOOLBOX, + NULL, NULL, 0) < 0) + { + vt_dummy_destroy(ctx); + return NULL; + } + + return ctx; +} + +const struct vd_lavc_hwdec mp_vd_lavc_videotoolbox = { + .type = HWDEC_VIDEOTOOLBOX, + .image_format = IMGFMT_VIDEOTOOLBOX, + .generic_hwaccel = true, + .set_hwframes = true, + .pixfmt_map = (const enum AVPixelFormat[][2]) { + {AV_PIX_FMT_NONE} + }, +}; + +const struct vd_lavc_hwdec mp_vd_lavc_videotoolbox_copy = { + .type = HWDEC_VIDEOTOOLBOX_COPY, + .copying = true, + .image_format = IMGFMT_VIDEOTOOLBOX, + .generic_hwaccel = true, + .create_dev = vt_create_dummy, + .set_hwframes = true, + .pixfmt_map = (const enum AVPixelFormat[][2]) { + {AV_PIX_FMT_NONE} + }, + .delay_queue = HWDEC_DELAY_QUEUE_COUNT, +}; + +#endif diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c index 2e7d84e55b..6dda6302f3 100644 --- a/video/decode/vd_lavc.c +++ b/video/decode/vd_lavc.c @@ -819,6 +819,9 @@ static int init_generic_hwaccel(struct dec_video *vd) } } + if (hwdec->image_format == IMGFMT_VIDEOTOOLBOX) + av_sw_format = imgfmt2pixfmt(vd->opts->videotoolbox_format); + if (av_sw_format == AV_PIX_FMT_NONE) { MP_VERBOSE(ctx, "Unsupported hw decoding format: %s\n", mp_imgfmt_to_name(pixfmt2imgfmt(ctx->avctx->sw_pix_fmt))); -- cgit v1.2.3