mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gl: Move GstGLMixer to the plugin for now
It depends on GstAggregator and we don't want to install headers for that yet. https://bugzilla.gnome.org/show_bug.cgi?id=732207
This commit is contained in:
parent
8196b9629c
commit
ab7a152cd4
8 changed files with 7 additions and 8 deletions
|
@ -25,6 +25,9 @@ OPENGL_SOURCES = \
|
|||
gltestsrc.h \
|
||||
gstgltestsrc.c \
|
||||
gstgltestsrc.h \
|
||||
gstglmixer.c \
|
||||
gstglmixer.h \
|
||||
gstglmixerpad.h \
|
||||
gstglmosaic.c \
|
||||
gstglmosaic.h \
|
||||
effects/gstgleffectscurves.h \
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <gst/gst.h>
|
||||
#include <gst/video/video.h>
|
||||
#include <gst/gl/gl.h>
|
||||
#include <gst/gl/gstglmixerpad.h>
|
||||
#include "gstglmixerpad.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
#ifndef _GST_GL_MOSAIC_H_
|
||||
#define _GST_GL_MOSAIC_H_
|
||||
|
||||
#include <gst/gl/gstglmixer.h>
|
||||
#include "gstglmixer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
#ifndef _GST_GL_VIDEO_MIXER_H_
|
||||
#define _GST_GL_VIDEO_MIXER_H_
|
||||
|
||||
#include <gst/gl/gstglmixer.h>
|
||||
#include <gst/gl/gstglmixerpad.h>
|
||||
#include "gstglmixer.h"
|
||||
#include "gstglmixerpad.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@ libgstgl_@GST_API_VERSION@_la_SOURCES = \
|
|||
gstglmemory.c \
|
||||
gstglbufferpool.c \
|
||||
gstglfilter.c \
|
||||
gstglmixer.c \
|
||||
gstglshader.c \
|
||||
gstglshadervariables.c \
|
||||
gstglcolorconvert.c \
|
||||
|
@ -35,8 +34,6 @@ libgstgl_@GST_API_VERSION@include_HEADERS = \
|
|||
gstglmemory.h \
|
||||
gstglbufferpool.h \
|
||||
gstglfilter.h \
|
||||
gstglmixer.h \
|
||||
gstglmixerpad.h \
|
||||
gstglshadervariables.h \
|
||||
gstglshader.h \
|
||||
gstglcolorconvert.h \
|
||||
|
|
|
@ -43,7 +43,6 @@
|
|||
#include <gst/gl/gstglbufferpool.h>
|
||||
#include <gst/gl/gstglframebuffer.h>
|
||||
#include <gst/gl/gstglfilter.h>
|
||||
#include <gst/gl/gstglmixer.h>
|
||||
#include <gst/gl/gstglshadervariables.h>
|
||||
|
||||
#endif /* __GST_GL_H__ */
|
||||
|
|
Loading…
Reference in a new issue