summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/hwdec_osx.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-04-07 18:47:03 +0200
committerwm4 <wm4@nowhere>2016-04-07 19:54:58 +0200
commitf03348155152b982f6eede1ec021a00a94a21d5a (patch)
tree8c866356eb98a42b84fea6d40c1c34ca72519577 /video/out/opengl/hwdec_osx.c
parentf34d086cb9e0930c734254e19b41d2964d9d113e (diff)
downloadmpv-f03348155152b982f6eede1ec021a00a94a21d5a.tar.bz2
mpv-f03348155152b982f6eede1ec021a00a94a21d5a.tar.xz
videotoolbox: change how videotoolbox format is managed
The underlying intention of this code is to make changing --videotoolbox-format at runtime work. For this reason, the format can't just be statically setup, but must be read from the option at runtime. This means the format is not fixed anymore, and we have to make sure the renderer is property reinitialized if the format changes. There is currently no way to trigger reinit on this level, which is why the mp_image_params.hw_subfmt field was introduced. One sketchy thing remains: normally, the renderer is supposed to be involved with VO format negotiation, which would ensure that the VO can take the format at all. Since the hw_subfmt is not part of this format negotiation, it's implied the get_vt_fmt() callback only returns formats supported by the renderer. This is not necessarily clear because vo_opengl checks this with converted_imgfmt separately. None of this matters in practice though, because we know all formats are always supported. (This still requires somehow triggering decoder reinit to make the change effective.)
Diffstat (limited to 'video/out/opengl/hwdec_osx.c')
-rw-r--r--video/out/opengl/hwdec_osx.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/video/out/opengl/hwdec_osx.c b/video/out/opengl/hwdec_osx.c
index 78d01b3894..3046768604 100644
--- a/video/out/opengl/hwdec_osx.c
+++ b/video/out/opengl/hwdec_osx.c
@@ -146,14 +146,21 @@ static bool check_hwdec(struct gl_hwdec *hw)
return true;
}
+static uint32_t get_vt_fmt(struct mp_hwdec_ctx *ctx)
+{
+ struct gl_hwdec *hw = ctx->priv;
+ struct vt_format *f =
+ vt_get_gl_format_from_imgfmt(hw->global->opts->videotoolbox_format);
+ return f ? f->cvpixfmt : (uint32_t)-1;
+}
+
static int create(struct gl_hwdec *hw)
{
if (!check_hwdec(hw))
return -1;
struct priv *p = talloc_zero(hw, struct priv);
- struct vt_format *f =
- vt_get_gl_format_from_imgfmt(hw->global->opts->videotoolbox_format);
+ struct vt_format *f = vt_get_gl_format_from_imgfmt(IMGFMT_NV12);
if (!f)
return -1;
@@ -162,17 +169,26 @@ static int create(struct gl_hwdec *hw)
hw->hwctx = &p->hwctx;
hw->hwctx->download_image = download_image;
hw->hwctx->type = HWDEC_VIDEOTOOLBOX;
- hw->hwctx->priv = (void *)(uintptr_t)f->cvpixfmt;
+ hw->hwctx->get_vt_fmt = get_vt_fmt;
hw->gl_texture_target = GL_TEXTURE_RECTANGLE;
hw->gl->GenTextures(MP_MAX_PLANES, p->gl_planes);
+ hw->hwctx->priv = hw;
return 0;
}
static int reinit(struct gl_hwdec *hw, struct mp_image_params *params)
{
assert(params->imgfmt == hw->driver->imgfmt);
+
+ struct vt_format *f = vt_get_gl_format(params->hw_subfmt);
+ if (!f) {
+ MP_ERR(hw, "Unsupported CVPixelBuffer format.\n");
+ return -1;
+ }
+
+ hw->converted_imgfmt = f->imgfmt;
return 0;
}