2009-02-08 03:27:30 +00:00
|
|
|
/*
|
2009-05-04 16:55:05 +00:00
|
|
|
* CoreVideo video output driver
|
2009-03-07 13:45:48 +00:00
|
|
|
* Copyright (c) 2005 Nicolas Plourde <nicolasplourde@gmail.com>
|
2013-08-14 13:47:18 +00:00
|
|
|
* Copyright (c) 2012-2013 Stefano Pigozzi <stefano.pigozzi@gmail.com>
|
2009-03-07 13:45:48 +00:00
|
|
|
*
|
2009-02-08 03:27:30 +00:00
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-08-01 06:28:16 +00:00
|
|
|
#include <QuartzCore/QuartzCore.h>
|
2013-07-16 11:28:28 +00:00
|
|
|
#if HAVE_VDA_HWACCEL
|
2013-08-14 13:47:18 +00:00
|
|
|
#include <IOSurface/IOSurface.h>
|
|
|
|
#endif
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-08-01 06:28:16 +00:00
|
|
|
#include "talloc.h"
|
|
|
|
#include "video/out/vo.h"
|
2013-11-24 11:58:06 +00:00
|
|
|
#include "sub/osd.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.h"
|
2011-12-11 11:26:00 +00:00
|
|
|
|
2013-08-01 06:28:16 +00:00
|
|
|
#include "video/csputils.h"
|
|
|
|
#include "video/vfcap.h"
|
|
|
|
#include "video/mp_image.h"
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-01 06:28:16 +00:00
|
|
|
#include "gl_common.h"
|
|
|
|
#include "gl_osd.h"
|
|
|
|
#include "cocoa_common.h"
|
2005-04-29 11:05:16 +00:00
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
struct quad {
|
|
|
|
GLfloat lowerLeft[2];
|
|
|
|
GLfloat lowerRight[2];
|
|
|
|
GLfloat upperRight[2];
|
|
|
|
GLfloat upperLeft[2];
|
2005-04-29 11:05:16 +00:00
|
|
|
};
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
struct cv_priv {
|
|
|
|
CVPixelBufferRef pbuf;
|
|
|
|
CVOpenGLTextureCacheRef texture_cache;
|
|
|
|
CVOpenGLTextureRef texture;
|
|
|
|
OSType pixfmt;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dr_priv {
|
|
|
|
CVPixelBufferRef pbuf;
|
|
|
|
bool texture_allocated;
|
|
|
|
GLuint texture;
|
|
|
|
GLuint texture_target;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cv_functions {
|
|
|
|
void (*init)(struct vo *vo);
|
|
|
|
void (*uninit)(struct vo *vo);
|
|
|
|
void (*prepare_texture)(struct vo *vo, struct mp_image *mpi);
|
|
|
|
void (*bind_texture)(struct vo *vo);
|
|
|
|
void (*unbind_texture)(struct vo *vo);
|
|
|
|
mp_image_t *(*get_screenshot)(struct vo *vo);
|
2013-08-25 17:11:18 +00:00
|
|
|
int (*get_yuv_colorspace)(struct vo *vo, struct mp_csp_details *csp);
|
|
|
|
int (*set_yuv_colorspace)(struct vo *vo, struct mp_csp_details *csp);
|
2013-08-14 13:47:18 +00:00
|
|
|
};
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
struct priv {
|
|
|
|
MPGLContext *mpglctx;
|
|
|
|
unsigned int image_width;
|
|
|
|
unsigned int image_height;
|
|
|
|
struct mp_csp_details colorspace;
|
2013-03-14 14:50:19 +00:00
|
|
|
struct mp_rect src_rect;
|
|
|
|
struct mp_rect dst_rect;
|
|
|
|
struct mp_osd_res osd_res;
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
// state for normal CoreVideo rendering path: uploads mp_image data as
|
|
|
|
// OpenGL textures.
|
|
|
|
struct cv_priv cv;
|
|
|
|
|
|
|
|
// state for IOSurface based direct rendering path: accesses the IOSurface
|
|
|
|
// wrapped by the CVPixelBuffer returned by VDADecoder and directly
|
|
|
|
// renders it to the screen.
|
|
|
|
struct dr_priv dr;
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
struct quad *quad;
|
2012-10-04 00:48:05 +00:00
|
|
|
struct mpgl_osd *osd;
|
2013-08-14 13:47:18 +00:00
|
|
|
|
|
|
|
// functions to to deal with the the OpenGL texture for containing the
|
|
|
|
// video frame (behaviour changes depending on the rendering path).
|
|
|
|
struct cv_functions fns;
|
2011-12-17 19:47:15 +00:00
|
|
|
};
|
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
static void resize(struct vo *vo)
|
2011-12-11 11:26:00 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-17 19:47:15 +00:00
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
gl->Viewport(0, 0, vo->dwidth, vo->dheight);
|
2011-12-17 19:47:15 +00:00
|
|
|
gl->MatrixMode(GL_MODELVIEW);
|
|
|
|
gl->LoadIdentity();
|
2013-03-14 14:50:19 +00:00
|
|
|
gl->Ortho(0, vo->dwidth, vo->dheight, 0, -1, 1);
|
|
|
|
|
|
|
|
vo_get_src_dst_rects(vo, &p->src_rect, &p->dst_rect, &p->osd_res);
|
2011-12-11 11:26:00 +00:00
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
gl->Clear(GL_COLOR_BUFFER_BIT);
|
|
|
|
vo->want_redraw = true;
|
2011-12-11 11:26:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
static int init_gl(struct vo *vo, uint32_t d_width, uint32_t d_height)
|
2011-12-11 11:26:00 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-17 19:47:15 +00:00
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
gl->Disable(GL_BLEND);
|
|
|
|
gl->Disable(GL_DEPTH_TEST);
|
|
|
|
gl->DepthMask(GL_FALSE);
|
|
|
|
gl->Disable(GL_CULL_FACE);
|
|
|
|
gl->Enable(GL_TEXTURE_2D);
|
|
|
|
gl->DrawBuffer(GL_BACK);
|
|
|
|
gl->TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
|
|
|
|
|
2012-10-04 00:48:05 +00:00
|
|
|
if (!p->osd)
|
2013-09-11 23:33:33 +00:00
|
|
|
p->osd = mpgl_osd_init(gl, vo->log, true);
|
2012-10-04 00:48:05 +00:00
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
resize(vo);
|
2011-12-17 19:47:15 +00:00
|
|
|
|
|
|
|
gl->ClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
gl->Clear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
if (gl->SwapInterval)
|
|
|
|
gl->SwapInterval(1);
|
2011-12-11 11:26:00 +00:00
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
return 1;
|
2011-12-17 19:47:15 +00:00
|
|
|
}
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2013-08-25 18:47:46 +00:00
|
|
|
static int reconfig(struct vo *vo, struct mp_image_params *params, int flags)
|
2011-12-17 19:47:15 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.uninit(vo);
|
|
|
|
|
2013-08-25 18:47:46 +00:00
|
|
|
p->image_width = params->w;
|
|
|
|
p->image_height = params->h;
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2012-10-02 23:54:13 +00:00
|
|
|
int mpgl_caps = MPGL_CAP_GL_LEGACY;
|
2013-08-25 18:47:46 +00:00
|
|
|
if (!mpgl_config_window(
|
2013-08-25 19:11:36 +00:00
|
|
|
p->mpglctx, mpgl_caps, vo->dwidth, vo->dheight, flags))
|
2011-12-17 19:47:15 +00:00
|
|
|
return -1;
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
init_gl(vo, vo->dwidth, vo->dheight);
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.init(vo);
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
// map x/y (in range 0..1) to the video texture, and emit OpenGL vertexes
|
|
|
|
static void video_vertex(struct vo *vo, float x, float y)
|
2011-12-11 11:26:00 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-17 19:47:15 +00:00
|
|
|
struct quad *q = p->quad;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
double tx0 = q->upperLeft[0];
|
|
|
|
double ty0 = q->upperLeft[1];
|
|
|
|
double tw = q->lowerRight[0] - tx0;
|
|
|
|
double th = q->lowerRight[1] - ty0;
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
double sx0 = p->src_rect.x0 / (double)p->image_width;
|
|
|
|
double sy0 = p->src_rect.y0 / (double)p->image_height;
|
|
|
|
double sw = (p->src_rect.x1 - p->src_rect.x0) / (double)p->image_width;
|
|
|
|
double sh = (p->src_rect.y1 - p->src_rect.y0) / (double)p->image_height;
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
gl->TexCoord2f(tx0 + (sx0 + x * sw) * tw,
|
|
|
|
ty0 + (sy0 + y * sh) * th);
|
|
|
|
gl->Vertex2f(p->dst_rect.x1 * x + p->dst_rect.x0 * (1 - x),
|
|
|
|
p->dst_rect.y1 * y + p->dst_rect.y0 * (1 - y));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_render(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.bind_texture(vo);
|
2011-12-17 19:47:15 +00:00
|
|
|
|
|
|
|
gl->Begin(GL_QUADS);
|
2013-03-14 14:50:19 +00:00
|
|
|
video_vertex(vo, 0, 0);
|
|
|
|
video_vertex(vo, 0, 1);
|
|
|
|
video_vertex(vo, 1, 1);
|
|
|
|
video_vertex(vo, 1, 0);
|
2011-12-17 19:47:15 +00:00
|
|
|
gl->End();
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.unbind_texture(vo);
|
2011-12-11 11:26:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
static void flip_page(struct vo *vo)
|
2005-04-29 11:05:16 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-17 19:47:15 +00:00
|
|
|
p->mpglctx->swapGlBuffers(p->mpglctx);
|
|
|
|
p->mpglctx->gl->Clear(GL_COLOR_BUFFER_BIT);
|
2005-04-29 11:05:16 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static void draw_image(struct vo *vo, struct mp_image *mpi)
|
2005-04-29 11:05:16 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.prepare_texture(vo, mpi);
|
2011-12-17 19:47:15 +00:00
|
|
|
do_render(vo);
|
2005-04-29 11:05:16 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
static void uninit(struct vo *vo)
|
2005-04-29 11:05:16 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2012-10-04 00:48:05 +00:00
|
|
|
if (p->osd)
|
|
|
|
mpgl_osd_destroy(p->osd);
|
2013-08-14 13:47:18 +00:00
|
|
|
p->fns.uninit(vo);
|
2012-10-20 19:01:42 +00:00
|
|
|
mpgl_uninit(p->mpglctx);
|
2005-04-29 11:05:16 +00:00
|
|
|
}
|
|
|
|
|
2008-12-19 20:33:54 +00:00
|
|
|
|
2013-07-22 20:52:42 +00:00
|
|
|
static int preinit(struct vo *vo)
|
2005-04-29 11:05:16 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-11 10:48:33 +00:00
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
*p = (struct priv) {
|
2013-03-01 14:55:08 +00:00
|
|
|
.mpglctx = mpgl_init(vo, "cocoa"),
|
2011-12-17 19:47:15 +00:00
|
|
|
.colorspace = MP_CSP_DETAILS_DEFAULTS,
|
|
|
|
.quad = talloc_ptrtype(p, p->quad),
|
|
|
|
};
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2005-04-29 11:05:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
static void draw_osd(struct vo *vo, struct osd_state *osd)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
assert(p->osd);
|
|
|
|
|
2013-03-14 14:50:19 +00:00
|
|
|
mpgl_osd_draw_legacy(p->osd, osd, p->osd_res);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
}
|
|
|
|
|
2013-08-24 12:42:33 +00:00
|
|
|
static CFStringRef get_cv_csp_matrix(enum mp_csp format)
|
2011-12-17 19:47:15 +00:00
|
|
|
{
|
2013-08-24 12:42:33 +00:00
|
|
|
switch (format) {
|
2011-12-17 19:47:15 +00:00
|
|
|
case MP_CSP_BT_601:
|
|
|
|
return kCVImageBufferYCbCrMatrix_ITU_R_601_4;
|
|
|
|
case MP_CSP_BT_709:
|
|
|
|
return kCVImageBufferYCbCrMatrix_ITU_R_709_2;
|
|
|
|
case MP_CSP_SMPTE_240M:
|
|
|
|
return kCVImageBufferYCbCrMatrix_SMPTE_240M_1995;
|
2012-11-12 22:24:01 +00:00
|
|
|
default:
|
2013-08-14 13:47:18 +00:00
|
|
|
return NULL;
|
2011-12-17 19:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-24 12:42:33 +00:00
|
|
|
static void apply_csp(struct vo *vo, CVPixelBufferRef pbuf)
|
2011-12-17 19:47:15 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2013-08-24 12:42:33 +00:00
|
|
|
CFStringRef matrix = get_cv_csp_matrix(p->colorspace.format);
|
|
|
|
assert(matrix);
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-24 12:42:33 +00:00
|
|
|
CVPixelBufferLockBaseAddress(pbuf, 0);
|
|
|
|
CVBufferSetAttachment(pbuf, kCVImageBufferYCbCrMatrixKey, matrix,
|
|
|
|
kCVAttachmentMode_ShouldPropagate);
|
|
|
|
CVPixelBufferUnlockBaseAddress(pbuf, 0);
|
2013-08-14 13:47:18 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 17:11:18 +00:00
|
|
|
static int get_yuv_colorspace(struct vo *vo, struct mp_csp_details *csp)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
*(struct mp_csp_details *)csp = p->colorspace;
|
|
|
|
return VO_TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static int get_image_fmt(struct vo *vo, CVPixelBufferRef pbuf)
|
|
|
|
{
|
|
|
|
OSType pixfmt = CVPixelBufferGetPixelFormatType(pbuf);
|
|
|
|
switch (pixfmt) {
|
video: decouple internal pixel formats from FourCCs
mplayer's video chain traditionally used FourCCs for pixel formats. For
example, it used IMGFMT_YV12 for 4:2:0 YUV, which was defined to the
string 'YV12' interpreted as unsigned int. Additionally, it used to
encode information into the numeric values of some formats. The RGB
formats had their bit depth and endian encoded into the least
significant byte. Extended planar formats (420P10 etc.) had chroma
shift, endian, and component bit depth encoded. (This has been removed
in recent commits.)
Replace the FourCC mess with a simple enum. Remove all the redundant
formats like YV12/I420/IYUV. Replace some image format names by
something more intuitive, most importantly IMGFMT_YV12 -> IMGFMT_420P.
Add img_fourcc.h, which contains the old IDs for code that actually uses
FourCCs. Change the way demuxers, that output raw video, identify the
video format: they set either MP_FOURCC_RAWVIDEO or MP_FOURCC_IMGFMT to
request the rawvideo decoder, and sh_video->imgfmt specifies the pixel
format. Like the previous hack, this is supposed to avoid the need for
a complete codecs.cfg entry per format, or other lookup tables. (Note
that the RGB raw video FourCCs mostly rely on ffmpeg's mappings for NUT
raw video, but this is still considered better than adding a raw video
decoder - even if trivial, it would be full of annoying lookup tables.)
The TV code has not been tested.
Some corrective changes regarding endian and other image format flags
creep in.
2012-12-23 19:03:30 +00:00
|
|
|
case kYUVSPixelFormat: return IMGFMT_YUYV;
|
2013-08-15 09:08:15 +00:00
|
|
|
case k2vuyPixelFormat: return IMGFMT_UYVY;
|
2012-10-21 14:25:42 +00:00
|
|
|
case k24RGBPixelFormat: return IMGFMT_RGB24;
|
|
|
|
case k32ARGBPixelFormat: return IMGFMT_ARGB;
|
|
|
|
case k32BGRAPixelFormat: return IMGFMT_BGRA;
|
|
|
|
}
|
2013-08-01 06:38:29 +00:00
|
|
|
MP_ERR(vo, "Failed to convert pixel format. Please contact the "
|
2013-08-14 13:47:18 +00:00
|
|
|
"developers. PixelFormat: %d\n", pixfmt);
|
2012-10-21 14:25:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static mp_image_t *get_screenshot(struct vo *vo, CVPixelBufferRef pbuf)
|
2012-10-21 14:25:42 +00:00
|
|
|
{
|
2013-08-14 13:47:18 +00:00
|
|
|
int img_fmt = get_image_fmt(vo, pbuf);
|
2012-10-21 14:25:42 +00:00
|
|
|
if (img_fmt < 0) return NULL;
|
|
|
|
|
|
|
|
struct priv *p = vo->priv;
|
2013-08-14 13:47:18 +00:00
|
|
|
CVPixelBufferLockBaseAddress(pbuf, 0);
|
|
|
|
void *base = CVPixelBufferGetBaseAddress(pbuf);
|
|
|
|
size_t width = CVPixelBufferGetWidth(pbuf);
|
|
|
|
size_t height = CVPixelBufferGetHeight(pbuf);
|
|
|
|
size_t stride = CVPixelBufferGetBytesPerRow(pbuf);
|
2012-10-21 14:25:42 +00:00
|
|
|
|
2012-12-25 12:55:09 +00:00
|
|
|
struct mp_image img = {0};
|
|
|
|
mp_image_setfmt(&img, img_fmt);
|
|
|
|
mp_image_set_size(&img, width, height);
|
|
|
|
img.planes[0] = base;
|
|
|
|
img.stride[0] = stride;
|
2012-10-21 14:25:42 +00:00
|
|
|
|
2012-12-25 12:55:09 +00:00
|
|
|
struct mp_image *image = mp_image_new_copy(&img);
|
2012-11-10 01:02:24 +00:00
|
|
|
mp_image_set_display_size(image, vo->aspdat.prew, vo->aspdat.preh);
|
2012-10-26 17:29:47 +00:00
|
|
|
mp_image_set_colorspace_details(image, &p->colorspace);
|
2013-08-14 13:47:18 +00:00
|
|
|
CVPixelBufferUnlockBaseAddress(pbuf, 0);
|
2012-10-26 17:29:47 +00:00
|
|
|
|
2012-10-21 14:25:42 +00:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
static int control(struct vo *vo, uint32_t request, void *data)
|
2005-04-29 11:05:16 +00:00
|
|
|
{
|
2012-05-01 12:50:16 +00:00
|
|
|
struct priv *p = vo->priv;
|
2011-12-11 11:26:00 +00:00
|
|
|
switch (request) {
|
|
|
|
case VOCTRL_GET_PANSCAN:
|
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_SET_PANSCAN:
|
2013-03-14 14:50:19 +00:00
|
|
|
resize(vo);
|
2011-12-11 11:26:00 +00:00
|
|
|
return VO_TRUE;
|
2011-12-17 19:47:15 +00:00
|
|
|
case VOCTRL_REDRAW_FRAME:
|
|
|
|
do_render(vo);
|
|
|
|
return VO_TRUE;
|
2013-08-25 17:11:18 +00:00
|
|
|
case VOCTRL_SET_YUV_COLORSPACE:
|
|
|
|
return p->fns.set_yuv_colorspace(vo, data);
|
2011-12-17 19:47:15 +00:00
|
|
|
case VOCTRL_GET_YUV_COLORSPACE:
|
2013-08-25 17:11:18 +00:00
|
|
|
return p->fns.get_yuv_colorspace(vo, data);
|
2012-10-21 14:25:42 +00:00
|
|
|
case VOCTRL_SCREENSHOT: {
|
|
|
|
struct voctrl_screenshot_args *args = data;
|
|
|
|
if (args->full_window)
|
|
|
|
args->out_image = glGetWindowScreenshot(p->mpglctx->gl);
|
|
|
|
else
|
2013-08-14 13:47:18 +00:00
|
|
|
args->out_image = p->fns.get_screenshot(vo);
|
2012-10-21 14:25:42 +00:00
|
|
|
return VO_TRUE;
|
|
|
|
}
|
2011-12-11 10:48:33 +00:00
|
|
|
}
|
2013-05-15 16:17:18 +00:00
|
|
|
|
|
|
|
int events = 0;
|
|
|
|
int r = p->mpglctx->vo_control(vo, &events, request, data);
|
|
|
|
if (events & VO_EVENT_RESIZE)
|
|
|
|
resize(vo);
|
|
|
|
|
|
|
|
return r;
|
2005-04-29 11:05:16 +00:00
|
|
|
}
|
2011-12-17 19:47:15 +00:00
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static void dummy_cb(struct vo *vo) { }
|
|
|
|
|
|
|
|
static void cv_uninit(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
CVPixelBufferRelease(p->cv.pbuf);
|
|
|
|
p->cv.pbuf = NULL;
|
|
|
|
CVOpenGLTextureRelease(p->cv.texture);
|
|
|
|
p->cv.texture = NULL;
|
|
|
|
CVOpenGLTextureCacheRelease(p->cv.texture_cache);
|
|
|
|
p->cv.texture_cache = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cv_bind_texture(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
gl->Enable(CVOpenGLTextureGetTarget(p->cv.texture));
|
|
|
|
gl->BindTexture(CVOpenGLTextureGetTarget(p->cv.texture),
|
|
|
|
CVOpenGLTextureGetName(p->cv.texture));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cv_unbind_texture(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
gl->Disable(CVOpenGLTextureGetTarget(p->cv.texture));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void upload_opengl_texture(struct vo *vo, struct mp_image *mpi)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
if (!p->cv.texture_cache || !p->cv.pbuf) {
|
|
|
|
CVReturn error;
|
|
|
|
error = CVOpenGLTextureCacheCreate(NULL, 0, vo_cocoa_cgl_context(vo),
|
|
|
|
vo_cocoa_cgl_pixel_format(vo), 0, &p->cv.texture_cache);
|
|
|
|
if(error != kCVReturnSuccess)
|
|
|
|
MP_ERR(vo, "Failed to create OpenGL texture Cache(%d)\n", error);
|
|
|
|
|
|
|
|
error = CVPixelBufferCreateWithBytes(NULL, mpi->w, mpi->h,
|
|
|
|
p->cv.pixfmt, mpi->planes[0], mpi->stride[0],
|
|
|
|
NULL, NULL, NULL, &p->cv.pbuf);
|
|
|
|
if(error != kCVReturnSuccess)
|
|
|
|
MP_ERR(vo, "Failed to create PixelBuffer(%d)\n", error);
|
2013-08-24 12:42:33 +00:00
|
|
|
|
|
|
|
apply_csp(vo, p->cv.pbuf);
|
2013-08-14 13:47:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct quad *q = p->quad;
|
|
|
|
CVReturn error;
|
|
|
|
|
|
|
|
CVOpenGLTextureRelease(p->cv.texture);
|
|
|
|
error = CVOpenGLTextureCacheCreateTextureFromImage(NULL,
|
|
|
|
p->cv.texture_cache, p->cv.pbuf, 0, &p->cv.texture);
|
|
|
|
if(error != kCVReturnSuccess)
|
|
|
|
MP_ERR(vo, "Failed to create OpenGL texture(%d)\n", error);
|
|
|
|
|
|
|
|
CVOpenGLTextureGetCleanTexCoords(p->cv.texture,
|
|
|
|
q->lowerLeft, q->lowerRight, q->upperRight, q->upperLeft);
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_image_t *cv_get_screenshot(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
return get_screenshot(vo, p->cv.pbuf);
|
|
|
|
}
|
|
|
|
|
2013-08-25 17:11:18 +00:00
|
|
|
static int cv_set_yuv_colorspace(struct vo *vo, struct mp_csp_details *csp)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
|
|
|
|
if (get_cv_csp_matrix(csp->format)) {
|
|
|
|
p->colorspace = *csp;
|
|
|
|
return VO_TRUE;
|
|
|
|
} else
|
|
|
|
return VO_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static struct cv_functions cv_functions = {
|
2013-08-25 17:11:18 +00:00
|
|
|
.init = dummy_cb,
|
|
|
|
.uninit = cv_uninit,
|
|
|
|
.bind_texture = cv_bind_texture,
|
|
|
|
.unbind_texture = cv_unbind_texture,
|
|
|
|
.prepare_texture = upload_opengl_texture,
|
|
|
|
.get_screenshot = cv_get_screenshot,
|
|
|
|
.get_yuv_colorspace = get_yuv_colorspace,
|
|
|
|
.set_yuv_colorspace = cv_set_yuv_colorspace,
|
2013-08-14 13:47:18 +00:00
|
|
|
};
|
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
#if HAVE_VDA_HWACCEL
|
2013-08-14 13:47:18 +00:00
|
|
|
static void iosurface_init(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
p->dr.texture_target = GL_TEXTURE_RECTANGLE_ARB;
|
|
|
|
p->fns.bind_texture(vo);
|
|
|
|
gl->GenTextures(1, &p->dr.texture);
|
|
|
|
p->fns.unbind_texture(vo);
|
|
|
|
|
|
|
|
p->dr.texture_allocated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iosurface_uninit(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
if (p->dr.texture_allocated) {
|
|
|
|
gl->DeleteTextures(1, &p->dr.texture);
|
|
|
|
p->dr.texture_allocated = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iosurface_bind_texture(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
gl->Enable(p->dr.texture_target);
|
|
|
|
gl->BindTexture(p->dr.texture_target, p->dr.texture);
|
|
|
|
gl->MatrixMode(GL_TEXTURE);
|
|
|
|
gl->LoadIdentity();
|
|
|
|
gl->TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iosurface_unbind_texture(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
GL *gl = p->mpglctx->gl;
|
|
|
|
|
|
|
|
gl->BindTexture(p->dr.texture_target, 0);
|
|
|
|
gl->Disable(p->dr.texture_target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void extract_texture_from_iosurface(struct vo *vo, struct mp_image *mpi)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
CVPixelBufferRelease(p->dr.pbuf);
|
|
|
|
p->dr.pbuf = (CVPixelBufferRef)mpi->planes[3];
|
|
|
|
CVPixelBufferRetain(p->dr.pbuf);
|
|
|
|
IOSurfaceRef surface = CVPixelBufferGetIOSurface(p->dr.pbuf);
|
|
|
|
MP_DBG(vo, "iosurface id: %d\n", IOSurfaceGetID(surface));
|
|
|
|
|
|
|
|
p->fns.bind_texture(vo);
|
|
|
|
|
|
|
|
CGLError err = CGLTexImageIOSurface2D(
|
|
|
|
vo_cocoa_cgl_context(vo), p->dr.texture_target, GL_RGB8,
|
|
|
|
p->image_width, p->image_height,
|
|
|
|
GL_YCBCR_422_APPLE, GL_UNSIGNED_SHORT_8_8_APPLE, surface, 0);
|
|
|
|
|
|
|
|
if (err != kCGLNoError)
|
|
|
|
MP_ERR(vo, "error creating IOSurface texture: %s (%x)\n",
|
|
|
|
CGLErrorString(err), glGetError());
|
|
|
|
|
|
|
|
p->fns.unbind_texture(vo);
|
|
|
|
|
|
|
|
// video_vertex flips the coordinates.. so feed in a flipped quad
|
|
|
|
*p->quad = (struct quad) {
|
|
|
|
.lowerRight = { p->image_width, p->image_height },
|
|
|
|
.upperLeft = { 0.0, 0.0 },
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_image_t *iosurface_get_screenshot(struct vo *vo)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
return get_screenshot(vo, p->dr.pbuf);
|
|
|
|
}
|
|
|
|
|
2013-08-25 17:11:18 +00:00
|
|
|
static int iosurface_set_yuv_csp(struct vo *vo, struct mp_csp_details *csp)
|
|
|
|
{
|
|
|
|
if (csp->format == MP_CSP_BT_601) {
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
p->colorspace = *csp;
|
|
|
|
return VO_TRUE;
|
|
|
|
} else
|
|
|
|
return VO_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2013-08-14 13:47:18 +00:00
|
|
|
static struct cv_functions iosurface_functions = {
|
2013-08-25 17:11:18 +00:00
|
|
|
.init = iosurface_init,
|
|
|
|
.uninit = iosurface_uninit,
|
|
|
|
.bind_texture = iosurface_bind_texture,
|
|
|
|
.unbind_texture = iosurface_unbind_texture,
|
|
|
|
.prepare_texture = extract_texture_from_iosurface,
|
|
|
|
.get_screenshot = iosurface_get_screenshot,
|
|
|
|
.get_yuv_colorspace = get_yuv_colorspace,
|
|
|
|
.set_yuv_colorspace = iosurface_set_yuv_csp,
|
2013-08-14 13:47:18 +00:00
|
|
|
};
|
2013-07-16 11:28:28 +00:00
|
|
|
#endif /* HAVE_VDA_HWACCEL */
|
2013-08-14 13:47:18 +00:00
|
|
|
|
|
|
|
static int query_format(struct vo *vo, uint32_t format)
|
|
|
|
{
|
|
|
|
struct priv *p = vo->priv;
|
|
|
|
const int flags = VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW;
|
|
|
|
|
|
|
|
switch (format) {
|
2013-07-16 11:28:28 +00:00
|
|
|
#if HAVE_VDA_HWACCEL
|
2013-08-14 13:47:18 +00:00
|
|
|
case IMGFMT_VDA:
|
|
|
|
p->fns = iosurface_functions;
|
|
|
|
return flags;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case IMGFMT_YUYV:
|
|
|
|
p->fns = cv_functions;
|
|
|
|
p->cv.pixfmt = kYUVSPixelFormat;
|
|
|
|
return flags;
|
|
|
|
|
|
|
|
case IMGFMT_UYVY:
|
|
|
|
p->fns = cv_functions;
|
|
|
|
p->cv.pixfmt = k2vuyPixelFormat;
|
|
|
|
return flags;
|
|
|
|
|
|
|
|
case IMGFMT_RGB24:
|
|
|
|
p->fns = cv_functions;
|
|
|
|
p->cv.pixfmt = k24RGBPixelFormat;
|
|
|
|
return flags;
|
|
|
|
|
|
|
|
case IMGFMT_ARGB:
|
|
|
|
p->fns = cv_functions;
|
|
|
|
p->cv.pixfmt = k32ARGBPixelFormat;
|
|
|
|
return flags;
|
|
|
|
|
|
|
|
case IMGFMT_BGRA:
|
|
|
|
p->fns = cv_functions;
|
|
|
|
p->cv.pixfmt = k32BGRAPixelFormat;
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-17 19:47:15 +00:00
|
|
|
const struct vo_driver video_out_corevideo = {
|
2013-10-23 17:06:14 +00:00
|
|
|
.name = "corevideo",
|
|
|
|
.description = "Mac OS X Core Video",
|
2011-12-17 19:47:15 +00:00
|
|
|
.preinit = preinit,
|
2012-11-04 15:24:18 +00:00
|
|
|
.query_format = query_format,
|
2013-08-25 18:47:46 +00:00
|
|
|
.reconfig = reconfig,
|
2011-12-17 19:47:15 +00:00
|
|
|
.control = control,
|
2012-11-04 14:56:04 +00:00
|
|
|
.draw_image = draw_image,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
.draw_osd = draw_osd,
|
2011-12-17 19:47:15 +00:00
|
|
|
.flip_page = flip_page,
|
|
|
|
.uninit = uninit,
|
2012-08-08 19:11:43 +00:00
|
|
|
.priv_size = sizeof(struct priv),
|
2011-12-17 19:47:15 +00:00
|
|
|
};
|