2015-03-29 13:12:11 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
2016-01-19 17:36:34 +00:00
|
|
|
* mpv 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.
|
2015-03-29 13:12:11 +00:00
|
|
|
*
|
|
|
|
* mpv 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
|
2016-01-19 17:36:34 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2015-03-29 13:12:11 +00:00
|
|
|
*
|
2016-01-19 17:36:34 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2015-03-29 13:12:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "common/common.h"
|
2015-12-19 11:59:07 +00:00
|
|
|
#include "context.h"
|
2015-03-29 13:12:11 +00:00
|
|
|
|
2015-12-26 18:18:47 +00:00
|
|
|
#include "context_rpi.h"
|
2015-03-29 13:12:11 +00:00
|
|
|
|
|
|
|
static void *get_proc_address(const GLubyte *name)
|
|
|
|
{
|
|
|
|
void *p = eglGetProcAddress(name);
|
2015-09-27 14:07:18 +00:00
|
|
|
// EGL 1.4 (supported by the RPI firmware) does not necessarily return
|
|
|
|
// function pointers for core functions.
|
2015-03-29 13:12:11 +00:00
|
|
|
if (!p) {
|
|
|
|
void *h = dlopen("/opt/vc/lib/libGLESv2.so", RTLD_LAZY);
|
|
|
|
if (h) {
|
|
|
|
p = dlsym(h, name);
|
|
|
|
dlclose(h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2015-08-18 20:00:40 +00:00
|
|
|
static EGLConfig select_fb_config_egl(struct mp_egl_rpi *p)
|
2015-03-29 13:12:11 +00:00
|
|
|
{
|
|
|
|
EGLint attributes[] = {
|
|
|
|
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
|
|
|
EGL_RED_SIZE, 8,
|
|
|
|
EGL_GREEN_SIZE, 8,
|
|
|
|
EGL_BLUE_SIZE, 8,
|
|
|
|
EGL_DEPTH_SIZE, 0,
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
EGLint config_count;
|
|
|
|
EGLConfig config;
|
|
|
|
|
|
|
|
eglChooseConfig(p->egl_display, attributes, &config, 1, &config_count);
|
|
|
|
|
|
|
|
if (!config_count) {
|
2015-08-18 20:00:40 +00:00
|
|
|
MP_FATAL(p, "Could find EGL configuration!\n");
|
2015-03-29 13:12:11 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2015-08-18 20:00:40 +00:00
|
|
|
int mp_egl_rpi_init(struct mp_egl_rpi *p, DISPMANX_ELEMENT_HANDLE_T window,
|
|
|
|
int w, int h)
|
|
|
|
{
|
|
|
|
p->egl_display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
|
|
|
|
if (!eglInitialize(p->egl_display, NULL, NULL)) {
|
|
|
|
MP_FATAL(p, "EGL failed to initialize.\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
eglBindAPI(EGL_OPENGL_ES_API);
|
|
|
|
|
|
|
|
EGLConfig config = select_fb_config_egl(p);
|
|
|
|
if (!config)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
p->egl_window = (EGL_DISPMANX_WINDOW_T){
|
|
|
|
.element = window,
|
|
|
|
.width = w,
|
|
|
|
.height = h,
|
|
|
|
};
|
|
|
|
p->egl_surface = eglCreateWindowSurface(p->egl_display, config,
|
|
|
|
&p->egl_window, NULL);
|
|
|
|
|
|
|
|
if (p->egl_surface == EGL_NO_SURFACE) {
|
|
|
|
MP_FATAL(p, "Could not create EGL surface!\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLint context_attributes[] = {
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, 2,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
p->egl_context = eglCreateContext(p->egl_display, config,
|
|
|
|
EGL_NO_CONTEXT, context_attributes);
|
|
|
|
|
|
|
|
if (p->egl_context == EGL_NO_CONTEXT) {
|
|
|
|
MP_FATAL(p, "Could not create EGL context!\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
eglMakeCurrent(p->egl_display, p->egl_surface, p->egl_surface,
|
|
|
|
p->egl_context);
|
|
|
|
|
|
|
|
p->gl = talloc_zero(NULL, struct GL);
|
|
|
|
|
|
|
|
const char *exts = eglQueryString(p->egl_display, EGL_EXTENSIONS);
|
|
|
|
mpgl_load_functions(p->gl, get_proc_address, exts, p->log);
|
|
|
|
|
|
|
|
if (!p->gl->version && !p->gl->es)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
mp_egl_rpi_destroy(p);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_egl_rpi_destroy(struct mp_egl_rpi *p)
|
|
|
|
{
|
2015-08-20 13:21:01 +00:00
|
|
|
if (p->egl_display) {
|
2015-08-18 20:00:40 +00:00
|
|
|
eglMakeCurrent(p->egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE,
|
|
|
|
EGL_NO_CONTEXT);
|
|
|
|
}
|
2015-08-20 13:21:01 +00:00
|
|
|
if (p->egl_surface)
|
|
|
|
eglDestroySurface(p->egl_display, p->egl_surface);
|
|
|
|
if (p->egl_context)
|
|
|
|
eglDestroyContext(p->egl_display, p->egl_context);
|
2015-08-18 20:00:40 +00:00
|
|
|
p->egl_context = EGL_NO_CONTEXT;
|
2015-08-31 17:46:02 +00:00
|
|
|
eglReleaseThread();
|
2015-08-18 20:00:40 +00:00
|
|
|
p->egl_display = EGL_NO_DISPLAY;
|
|
|
|
talloc_free(p->gl);
|
|
|
|
p->gl = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct priv {
|
|
|
|
DISPMANX_DISPLAY_HANDLE_T display;
|
|
|
|
DISPMANX_ELEMENT_HANDLE_T window;
|
|
|
|
DISPMANX_UPDATE_HANDLE_T update;
|
|
|
|
struct mp_egl_rpi egl;
|
|
|
|
int w, h;
|
|
|
|
};
|
|
|
|
|
2015-10-02 16:28:03 +00:00
|
|
|
static void rpi_uninit(MPGLContext *ctx)
|
|
|
|
{
|
|
|
|
struct priv *p = ctx->priv;
|
|
|
|
mp_egl_rpi_destroy(&p->egl);
|
|
|
|
if (p->display)
|
|
|
|
vc_dispmanx_display_close(p->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rpi_init(struct MPGLContext *ctx, int flags)
|
2015-03-29 13:12:11 +00:00
|
|
|
{
|
|
|
|
struct priv *p = ctx->priv;
|
|
|
|
struct vo *vo = ctx->vo;
|
|
|
|
|
2015-08-18 20:00:40 +00:00
|
|
|
p->egl.log = vo->log;
|
|
|
|
|
2015-03-29 13:12:11 +00:00
|
|
|
bcm_host_init();
|
|
|
|
|
|
|
|
p->display = vc_dispmanx_display_open(0);
|
|
|
|
p->update = vc_dispmanx_update_start(0);
|
|
|
|
if (!p->display || !p->update) {
|
|
|
|
MP_FATAL(ctx->vo, "Could not get DISPMANX objects.\n");
|
2015-10-02 16:28:03 +00:00
|
|
|
goto fail;
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t w, h;
|
|
|
|
if (graphics_get_display_size(0, &w, &h) < 0) {
|
|
|
|
MP_FATAL(ctx->vo, "Could not get display size.\n");
|
2015-10-02 16:28:03 +00:00
|
|
|
goto fail;
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dispmanx is like a neanderthal version of Wayland - you can add an
|
|
|
|
// overlay any place on the screen. Just use the whole screen.
|
|
|
|
VC_RECT_T dst = {.width = w, .height = h};
|
|
|
|
VC_RECT_T src = {.width = w << 16, .height = h << 16};
|
|
|
|
VC_DISPMANX_ALPHA_T alpha = {
|
|
|
|
.flags = DISPMANX_FLAGS_ALPHA_FIXED_ALL_PIXELS,
|
|
|
|
.opacity = 0xFF,
|
|
|
|
};
|
|
|
|
p->window = vc_dispmanx_element_add(p->update, p->display, 1, &dst, 0,
|
|
|
|
&src, DISPMANX_PROTECTION_NONE, &alpha, 0, 0);
|
|
|
|
if (!p->window) {
|
|
|
|
MP_FATAL(ctx->vo, "Could not add DISPMANX element.\n");
|
2015-10-02 16:28:03 +00:00
|
|
|
goto fail;
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vc_dispmanx_update_submit_sync(p->update);
|
|
|
|
|
2015-08-18 20:00:40 +00:00
|
|
|
if (mp_egl_rpi_init(&p->egl, p->window, w, h) < 0)
|
2015-10-02 16:28:03 +00:00
|
|
|
goto fail;
|
2015-03-29 13:12:11 +00:00
|
|
|
|
2015-08-18 20:00:40 +00:00
|
|
|
ctx->gl = p->egl.gl;
|
2015-03-29 13:12:11 +00:00
|
|
|
|
|
|
|
vo->dwidth = p->w = w;
|
|
|
|
vo->dheight = p->h = h;
|
|
|
|
|
2015-10-02 16:28:03 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
rpi_uninit(ctx);
|
|
|
|
return -1;
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
2015-10-03 16:20:16 +00:00
|
|
|
static int rpi_reconfig(struct MPGLContext *ctx)
|
2015-03-29 13:12:11 +00:00
|
|
|
{
|
|
|
|
struct priv *p = ctx->priv;
|
2015-10-02 16:28:03 +00:00
|
|
|
ctx->vo->dwidth = p->w;
|
|
|
|
ctx->vo->dheight = p->h;
|
|
|
|
return 0;
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 16:28:03 +00:00
|
|
|
static void rpi_swap_buffers(MPGLContext *ctx)
|
2015-03-29 13:12:11 +00:00
|
|
|
{
|
|
|
|
struct priv *p = ctx->priv;
|
2015-08-18 20:00:40 +00:00
|
|
|
eglSwapBuffers(p->egl.egl_display, p->egl.egl_surface);
|
2015-03-29 13:12:11 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 16:28:03 +00:00
|
|
|
static int rpi_control(MPGLContext *ctx, int *events, int request, void *arg)
|
2015-03-29 13:12:11 +00:00
|
|
|
{
|
|
|
|
return VO_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2015-10-02 16:28:03 +00:00
|
|
|
const struct mpgl_driver mpgl_driver_rpi = {
|
|
|
|
.name = "rpi",
|
|
|
|
.priv_size = sizeof(struct priv),
|
|
|
|
.init = rpi_init,
|
|
|
|
.reconfig = rpi_reconfig,
|
|
|
|
.swap_buffers = rpi_swap_buffers,
|
|
|
|
.control = rpi_control,
|
|
|
|
.uninit = rpi_uninit,
|
|
|
|
};
|