summaryrefslogtreecommitdiffstats
path: root/video/out/gl_hwdec_vda.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-08-17 23:49:07 +0200
committerwm4 <wm4@nowhere>2015-08-17 23:51:31 +0200
commit6894858bf23d48f62cb28b309481cded8bcd43b4 (patch)
tree7042f0a72fd035e4c3a3fd61e11c6159d4330290 /video/out/gl_hwdec_vda.c
parent2b280f4522a288429253b396b778d60ed018312c (diff)
downloadmpv-6894858bf23d48f62cb28b309481cded8bcd43b4.tar.bz2
mpv-6894858bf23d48f62cb28b309481cded8bcd43b4.tar.xz
video: fix VideoToolbox/VDA autodetection
This affects vo_opengl_cb in particular: it'll most likely auto-load VDA, and then the VideoToolbox decoder won't work. And everything fails. This is mainly caused by FFmpeg using separate pixfmts for the _same_ thing (CVPixelBuffers), simply because libavcodec's architecture demands that hwaccel backends are selected by pixfmts. (Which makes no sense, but now we have the mess.) So instead of duplicating FFmpeg's misdesign, just change the format to our own canonical one on the image output by the decoder. Now the GL interop code is exactly the same for VDA and VT, and we use the VT name only.
Diffstat (limited to 'video/out/gl_hwdec_vda.c')
-rw-r--r--video/out/gl_hwdec_vda.c40
1 files changed, 5 insertions, 35 deletions
diff --git a/video/out/gl_hwdec_vda.c b/video/out/gl_hwdec_vda.c
index a94cdbc594..668a20f440 100644
--- a/video/out/gl_hwdec_vda.c
+++ b/video/out/gl_hwdec_vda.c
@@ -17,6 +17,8 @@
* with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
+// Note: handles both VDA and VideoToolbox
+
#include <IOSurface/IOSurface.h>
#include <CoreVideo/CoreVideo.h>
#include <OpenGL/OpenGL.h>
@@ -116,11 +118,6 @@ static struct mp_image *download_image(struct mp_hwdec_ctx *ctx,
static bool check_hwdec(struct gl_hwdec *hw)
{
- if (hw->gl_texture_target != GL_TEXTURE_RECTANGLE) {
- MP_ERR(hw, "must use rectangle video textures with VDA\n");
- return false;
- }
-
if (!CGLGetCurrentContext()) {
MP_ERR(hw, "need cocoa opengl backend to be active");
return false;
@@ -150,9 +147,9 @@ static int create_common(struct gl_hwdec *hw, struct vda_format *format)
return 0;
}
-#if HAVE_VDA_GL
-static int create_vda(struct gl_hwdec *hw)
+static int create(struct gl_hwdec *hw)
{
+ // For videotoolbox, we always request NV12.
#if HAVE_VDA_DEFAULT_INIT2
struct vda_format *f = vda_get_gl_format_from_imgfmt(IMGFMT_NV12);
#else
@@ -161,24 +158,10 @@ static int create_vda(struct gl_hwdec *hw)
if (create_common(hw, f))
return -1;
- hw->hwctx->type = HWDEC_VDA;
-
- return 0;
-}
-#endif
-
-#if HAVE_VIDEOTOOLBOX_GL
-static int create_videotoolbox(struct gl_hwdec *hw)
-{
- struct vda_format *f = vda_get_gl_format_from_imgfmt(IMGFMT_NV12);
- if (create_common(hw, f))
- return -1;
-
hw->hwctx->type = HWDEC_VIDEOTOOLBOX;
return 0;
}
-#endif
static int reinit(struct gl_hwdec *hw, struct mp_image_params *params)
{
@@ -242,24 +225,11 @@ static void destroy(struct gl_hwdec *hw)
gl->DeleteTextures(MP_MAX_PLANES, p->gl_planes);
}
-#if HAVE_VDA_GL
-const struct gl_hwdec_driver gl_hwdec_vda = {
- .api_name = "vda",
- .imgfmt = IMGFMT_VDA,
- .create = create_vda,
- .reinit = reinit,
- .map_image = map_image,
- .destroy = destroy,
-};
-#endif
-
-#if HAVE_VIDEOTOOLBOX_GL
const struct gl_hwdec_driver gl_hwdec_videotoolbox = {
.api_name = "videotoolbox",
.imgfmt = IMGFMT_VIDEOTOOLBOX,
- .create = create_videotoolbox,
+ .create = create,
.reinit = reinit,
.map_image = map_image,
.destroy = destroy,
};
-#endif