mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-04 14:38:48 +00:00
gl: consolidate egl header includes to egl-only headers
They may conflict with other headers.
This commit is contained in:
parent
31b770af0b
commit
26df88cd24
8 changed files with 70 additions and 27 deletions
|
@ -89,7 +89,7 @@ extern GType gst_ca_opengl_layer_sink_bin_get_type (void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_EGL_RPI
|
#ifdef USE_EGL_RPI
|
||||||
#include <bcm_host.h>
|
extern void bcm_host_init (void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if GST_GL_HAVE_WINDOW_X11
|
#if GST_GL_HAVE_WINDOW_X11
|
||||||
|
|
|
@ -23,8 +23,25 @@
|
||||||
|
|
||||||
#include <gst/video/gstvideosink.h>
|
#include <gst/video/gstvideosink.h>
|
||||||
#include <gst/gl/gl.h>
|
#include <gst/gl/gl.h>
|
||||||
|
#include <gst/gl/egl/gstegl.h>
|
||||||
|
|
||||||
|
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
||||||
|
#ifndef __VCCOREVER__
|
||||||
|
#define __VCCOREVER__ 0x04000000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
||||||
|
#pragma GCC optimize ("gnu89-inline")
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <bcm_host.h>
|
#include <bcm_host.h>
|
||||||
|
|
||||||
|
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
||||||
|
#pragma GCC reset_options
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GST_GL_TYPE_WINDOW_DISPMANX_EGL (gst_gl_window_dispmanx_egl_get_type())
|
#define GST_GL_TYPE_WINDOW_DISPMANX_EGL (gst_gl_window_dispmanx_egl_get_type())
|
||||||
|
|
|
@ -13,7 +13,8 @@ libgstgl_eglincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl/egl
|
||||||
libgstgl_eglinclude_HEADERS = \
|
libgstgl_eglinclude_HEADERS = \
|
||||||
gstgldisplay_egl.h \
|
gstgldisplay_egl.h \
|
||||||
gstglcontext_egl.h \
|
gstglcontext_egl.h \
|
||||||
gsteglimagememory.h
|
gsteglimagememory.h \
|
||||||
|
gstegl.h
|
||||||
|
|
||||||
libgstgl_egl_la_CFLAGS = \
|
libgstgl_egl_la_CFLAGS = \
|
||||||
-I$(top_srcdir)/gst-libs \
|
-I$(top_srcdir)/gst-libs \
|
||||||
|
|
47
gst-libs/gst/gl/egl/gstegl.h
Normal file
47
gst-libs/gst/gl/egl/gstegl.h
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
/*
|
||||||
|
* GStreamer
|
||||||
|
* Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||||
|
* Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _GST_EGL_H_
|
||||||
|
#define _GST_EGL_H_
|
||||||
|
|
||||||
|
#include <gst/gl/gstglconfig.h>
|
||||||
|
|
||||||
|
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
||||||
|
#ifndef __VCCOREVER__
|
||||||
|
#define __VCCOREVER__ 0x04000000
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
||||||
|
#pragma GCC optimize ("gnu89-inline")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef EGL_EGLEXT_PROTOTYPES
|
||||||
|
#define EGL_EGLEXT_PROTOTYPES 1
|
||||||
|
#endif
|
||||||
|
#include <EGL/egl.h>
|
||||||
|
#include <EGL/eglext.h>
|
||||||
|
|
||||||
|
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
||||||
|
#pragma GCC reset_options
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _GST_EGL_H_ */
|
|
@ -29,6 +29,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gstglcontext_egl.h"
|
#include "gstglcontext_egl.h"
|
||||||
|
#include <gst/gl/egl/gstegl.h>
|
||||||
|
|
||||||
#if GST_GL_HAVE_WINDOW_X11
|
#if GST_GL_HAVE_WINDOW_X11
|
||||||
#include "../x11/gstglwindow_x11.h"
|
#include "../x11/gstglwindow_x11.h"
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/gl/gl.h>
|
#include <gst/gl/gl.h>
|
||||||
|
#include <gst/gl/egl/gstegl.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/gl/gstgldisplay.h>
|
#include <gst/gl/gstgldisplay.h>
|
||||||
|
#include <gst/gl/egl/gstegl.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
|
|
@ -23,31 +23,6 @@
|
||||||
|
|
||||||
#include <gst/gl/gstglconfig.h>
|
#include <gst/gl/gstglconfig.h>
|
||||||
|
|
||||||
#if GST_GL_HAVE_PLATFORM_EGL
|
|
||||||
|
|
||||||
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
|
||||||
#ifndef __VCCOREVER__
|
|
||||||
#define __VCCOREVER__ 0x04000000
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#pragma GCC diagnostic push
|
|
||||||
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
|
||||||
#pragma GCC optimize ("gnu89-inline")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef EGL_EGLEXT_PROTOTYPES
|
|
||||||
#define EGL_EGLEXT_PROTOTYPES 1
|
|
||||||
#endif
|
|
||||||
#include <EGL/egl.h>
|
|
||||||
#include <EGL/eglext.h>
|
|
||||||
|
|
||||||
#if defined (USE_EGL_RPI) && defined(__GNUC__)
|
|
||||||
#pragma GCC reset_options
|
|
||||||
#pragma GCC diagnostic pop
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* OpenGL 2.0 for Embedded Systems */
|
/* OpenGL 2.0 for Embedded Systems */
|
||||||
#if GST_GL_HAVE_GLES2
|
#if GST_GL_HAVE_GLES2
|
||||||
#ifndef GL_GLEXT_PROTOTYPES
|
#ifndef GL_GLEXT_PROTOTYPES
|
||||||
|
|
Loading…
Reference in a new issue