summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Isorce <julien.isorce@gmail.com>2008-06-23 23:12:37 +0000
committerDavid Schleef <ds@schleef.org>2008-07-15 14:21:37 -0700
commita8ad658c6630127dd92e6cd140e9aba2932b54e4 (patch)
treeb15d398c5a0c9da95a88e81eb4c3b240016dd58a
parentbe91ecda2bfb72f51824bb82babd857d33b5ae06 (diff)
git-svn-id: svn://svn.wobow.com/GStreamer_playground/gst-plugins-gl@544 93df14bb-0f41-7a43-8087-d3e2a2f0e464
-rw-r--r--gst/gl/gstglfiltercube.c28
-rw-r--r--tests/examples/filterxoverlay/Makefile48
-rw-r--r--tests/examples/filterxoverlay/filterxoverlay.sln20
-rw-r--r--tests/examples/filterxoverlay/filterxoverlay.vcproj203
-rw-r--r--tests/examples/filterxoverlay/main.cpp100
-rw-r--r--tests/examples/readme.txt32
-rw-r--r--win32/codeblock/gstopengl/gstopengl.depend869
7 files changed, 417 insertions, 883 deletions
diff --git a/gst/gl/gstglfiltercube.c b/gst/gl/gstglfiltercube.c
index 8b0f353..e0fc862 100644
--- a/gst/gl/gstglfiltercube.c
+++ b/gst/gl/gstglfiltercube.c
@@ -35,7 +35,7 @@ static const GstElementDetails element_details =
enum
{
- PROP_0
+ PROP_0
};
#define DEBUG_INIT(bla) \
@@ -44,34 +44,34 @@ enum
GST_BOILERPLATE_FULL (GstGLFilterCube, gst_gl_filter_cube, GstGLFilter,
GST_TYPE_GL_FILTER, DEBUG_INIT);
-static void gst_gl_filter_cube_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec);
-static void gst_gl_filter_cube_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec);
+static void gst_gl_filter_cube_set_property (GObject* object, guint prop_id,
+ const GValue* value, GParamSpec * pspec);
+static void gst_gl_filter_cube_get_property (GObject* object, guint prop_id,
+ GValue* value, GParamSpec* pspec);
-static gboolean gst_gl_filter_cube_filter (GstGLFilter * filter,
- GstGLBuffer * inbuf, GstGLBuffer * outbuf);
+static gboolean gst_gl_filter_cube_filter (GstGLFilter* filter,
+ GstGLBuffer* inbuf, GstGLBuffer* outbuf);
static void gst_gl_filter_cube_callback (guint width, guint height, guint texture, GLhandleARB shader);
static void
gst_gl_filter_cube_base_init (gpointer klass)
{
- GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
+ GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
- gst_element_class_set_details (element_class, &element_details);
+ gst_element_class_set_details (element_class, &element_details);
}
static void
gst_gl_filter_cube_class_init (GstGLFilterCubeClass * klass)
{
- GObjectClass* gobject_class;
+ GObjectClass* gobject_class;
- gobject_class = (GObjectClass *) klass;
- gobject_class->set_property = gst_gl_filter_cube_set_property;
- gobject_class->get_property = gst_gl_filter_cube_get_property;
+ gobject_class = (GObjectClass *) klass;
+ gobject_class->set_property = gst_gl_filter_cube_set_property;
+ gobject_class->get_property = gst_gl_filter_cube_get_property;
- GST_GL_FILTER_CLASS (klass)->filter = gst_gl_filter_cube_filter;
+ GST_GL_FILTER_CLASS (klass)->filter = gst_gl_filter_cube_filter;
}
static void
diff --git a/tests/examples/filterxoverlay/Makefile b/tests/examples/filterxoverlay/Makefile
new file mode 100644
index 0000000..0bb2291
--- /dev/null
+++ b/tests/examples/filterxoverlay/Makefile
@@ -0,0 +1,48 @@
+SRC=main.cpp
+OBJ=$(SRC:.cpp=.o)
+EXE=filterxoverlay
+
+CPP=g++
+CPPFLAGS=-Wall -Werror -O3 -march=i686 -msse2 -mfpmath=sse
+LDFLAGS=
+LIBS=-lgstreamer-0.10
+RM=rm
+
+ifeq ($(OS),Windows_NT)
+# Put Windows-specific stuff here (usefull for mingw32)
+REXE=$(EXE).exe
+CPPFLAGS=-I../../../../libxml2-2.6.30+.win32/include \
+ -I../../../../libiconv/include \
+ -I../../../../glib/include \
+ -I../../../../gstreamer/include \
+ -I../../../../gtk+/include \
+ -I../../../../pango/include \
+ -I../../../../cairo/include \
+ -I../../../../atk/include
+#ld tool from mingw needs dll too
+LDFLAGS+=-L../../../../glib/lib \
+ -L../../../../gstreamer/lib \
+ -L../../../../gtk+/lib \
+ -L../../../../glib/bin \
+ -L../../../../gstreamer/bin/bin
+LIBS+=-lglib-2.0 -lgmodule-2.0 -lgobject-2.0 -lgthread-2.0 -lgstinterfaces-0.10 -lgtk-win32-2.0 -lgdk-win32-2.0
+else
+# Put Linux-specific stuff here
+REXE=$(EXE)
+CPPFLAGS+=-I/usr/include/gstreamer-0.10 \
+ -I/usr/include/glib-2.0 \
+ -I/usr/lib/glib-2.0/include \
+ -I/usr/include/libxml2
+LIBS+=-lgstreamer-0.10 -lglib-2.0 -lgmodule-2.0 -lgobject-2.0 -lgthread-2.0
+endif
+
+
+.PHONY : all
+all: $(REXE)
+
+$(REXE): $(OBJ)
+ $(CPP) $(OBJ) $(LDFLAGS) $(LIBS) -o $@
+
+.PHONY : clean
+clean:
+ -$(RM) $(OBJ) core
diff --git a/tests/examples/filterxoverlay/filterxoverlay.sln b/tests/examples/filterxoverlay/filterxoverlay.sln
new file mode 100644
index 0000000..1d45091
--- /dev/null
+++ b/tests/examples/filterxoverlay/filterxoverlay.sln
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "filterxoverlay", "filterxoverlay.vcproj", "{F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}.Debug|Win32.Build.0 = Debug|Win32
+ {F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}.Release|Win32.ActiveCfg = Release|Win32
+ {F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/tests/examples/filterxoverlay/filterxoverlay.vcproj b/tests/examples/filterxoverlay/filterxoverlay.vcproj
new file mode 100644
index 0000000..28c2e5b
--- /dev/null
+++ b/tests/examples/filterxoverlay/filterxoverlay.vcproj
@@ -0,0 +1,203 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8,00"
+ Name="filterxoverlay"
+ ProjectGUID="{F9CC027E-CC9F-4B34-AA8F-58852EC32CD0}"
+ RootNamespace="filterxoverlay"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories="&quot;..\..\..\..\libxml2-2.6.30+.win32\include&quot;;..\..\..\..\libiconv\include;..\..\..\..\glib\include;&quot;..\..\..\..\gtk+\include&quot;;..\..\..\..\gstreamer\include;..\..\..\..\cairo\include;..\..\..\..\pango\include;..\..\..\..\atk\include"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="libgstreamer-0.10.lib glib-2.0.lib gmodule-2.0.lib gobject-2.0.lib gthread-2.0.lib libgstinterfaces-0.10.lib gtk-win32-2.0.lib gdk-win32-2.0.lib"
+ LinkIncremental="2"
+ AdditionalLibraryDirectories="..\..\..\..\glib\lib;..\..\..\..\gstreamer\lib;&quot;..\..\..\..\gtk+\lib&quot;"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories="&quot;..\..\..\..\libxml2-2.6.30+.win32\include&quot;;..\..\..\..\libiconv\include;..\..\..\..\glib\include;&quot;..\..\..\..\gtk+\include&quot;;..\..\..\..\gstreamer\include;..\..\..\..\cairo\include;..\..\..\..\pango\include;..\..\..\..\atk\include"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ RuntimeLibrary="2"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="libgstreamer-0.10.lib glib-2.0.lib gmodule-2.0.lib gobject-2.0.lib gthread-2.0.lib libgstinterfaces-0.10.lib gtk-win32-2.0.lib gdk-win32-2.0.lib"
+ LinkIncremental="1"
+ AdditionalLibraryDirectories="..\..\..\..\glib\lib;..\..\..\..\gstreamer\lib;&quot;..\..\..\..\gtk+\lib&quot;"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath=".\main.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Header Files"
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+ >
+ </Filter>
+ <Filter
+ Name="Resource Files"
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+ >
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
diff --git a/tests/examples/filterxoverlay/main.cpp b/tests/examples/filterxoverlay/main.cpp
new file mode 100644
index 0000000..575a19b
--- /dev/null
+++ b/tests/examples/filterxoverlay/main.cpp
@@ -0,0 +1,100 @@
+#include <gst/gst.h>
+#include <gtk/gtk.h>
+#include <gdk/gdk.h>
+
+#ifdef WIN32
+#include <gdk/gdkwin32.h>
+#else
+#include <gdk/gdkx.h>
+#endif
+#include <gst/interfaces/xoverlay.h>
+
+static GstBusSyncReply create_window (GstBus* bus, GstMessage* message, GtkWidget* widget)
+{
+ // ignore anything but 'prepare-xwindow-id' element messages
+ if (GST_MESSAGE_TYPE (message) != GST_MESSAGE_ELEMENT)
+ return GST_BUS_PASS;
+
+ if (!gst_structure_has_name (message->structure, "prepare-xwindow-id"))
+ return GST_BUS_PASS;
+
+ g_print ("setting xwindow id\n");
+
+ gst_x_overlay_set_xwindow_id (GST_X_OVERLAY (GST_MESSAGE_SRC (message)),
+ reinterpret_cast<gulong>GDK_WINDOW_HWND(widget->window));
+
+ gst_message_unref (message);
+
+ return GST_BUS_DROP;
+}
+
+static gboolean expose_cb(GtkWidget* widget, GdkEventExpose* event, GstElement* videosink)
+{
+ gst_x_overlay_expose (GST_X_OVERLAY (videosink));
+
+ return FALSE;
+}
+
+static void destroy_cb(GstElement* pipeline)
+{
+ gst_element_set_state(pipeline, GST_STATE_NULL);
+ gst_object_unref(pipeline);
+
+ gtk_main_quit();
+}
+
+gint main (gint argc, gchar *argv[])
+{
+ gtk_init (&argc, &argv);
+ gst_init (&argc, &argv);
+
+ GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+ gtk_widget_set_size_request (window, 320, 240);
+
+ GstElement* pipeline = gst_pipeline_new ("pipeline");
+
+ g_signal_connect(G_OBJECT(window), "delete-event", G_CALLBACK(destroy_cb), pipeline);
+ g_signal_connect(G_OBJECT(window), "destroy-event", G_CALLBACK(destroy_cb), pipeline);
+
+ GstElement* videosrc = gst_element_factory_make ("videotestsrc", "videotestsrc");
+ GstElement* glupload = gst_element_factory_make ("glupload", "glupload");
+ GstElement* glfilter = gst_element_factory_make ("glfiltercube", "glfiltercube");
+ GstElement* videosink = gst_element_factory_make ("glimagesink", "glimagesink");
+
+ gst_bin_add_many (GST_BIN (pipeline), videosrc, glupload, glfilter, videosink, NULL);
+
+ if (!gst_element_link_many (videosrc, glupload, glfilter, videosink, NULL))
+ {
+ g_print ("Failed to link one or more elements!\n");
+ return -1;
+ }
+
+ GtkWidget* screen = gtk_drawing_area_new();
+
+ gtk_container_add (GTK_CONTAINER(window), screen);
+
+ GstBus* bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
+ gst_bus_set_sync_handler (bus, (GstBusSyncHandler) create_window, screen);
+ gst_object_unref (bus);
+
+ g_signal_connect(screen, "expose-event", G_CALLBACK(expose_cb), videosink);
+
+ GstStateChangeReturn ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
+ if (ret == GST_STATE_CHANGE_FAILURE)
+ {
+ g_print ("Failed to start up pipeline!\n");
+ return -1;
+ }
+
+ //From GTK+ doc: "The application is then entirely responsible for drawing the widget background"
+ //It seems to be not working, the background is still drawn when resizing the window ...
+ gtk_widget_set_app_paintable (window, TRUE);
+ gtk_widget_set_app_paintable (screen, TRUE);
+
+ gtk_widget_show_all (window);
+
+ gtk_main();
+
+ return 0;
+}
+
diff --git a/tests/examples/readme.txt b/tests/examples/readme.txt
new file mode 100644
index 0000000..0f9f50d
--- /dev/null
+++ b/tests/examples/readme.txt
@@ -0,0 +1,32 @@
+--- Description of the examples ---
+
+cube:
+Show how to have a graphic FPS greater than the input video frame rate.
+The source is the videotestsrc rgb.
+
+cubeyuv:
+Show how to have a graphic FPS greater than the input video frame rate.
+The source is a dvix file.
+The colorspace conversion is maded by the glupload element.
+
+doublecube:
+The dvix source is displayed into two renderer.
+The first one is a normal 2D screen, the second is a 3D cube.
+
+filterxoverlay:
+Show how to use the xoverlay interface through GTK.
+The pipeline uses a glfilter.
+
+mousexoverlay:
+Show how to use the xoverlay interface through Qt (ThrollTech).
+The cube is rotating when moving the mouse (+ click maintained)
+
+recordgraphic:
+Show how to use the glfilterapp to define the draw callback in a gstreamer client code.
+The scene is recorded into an avi file using mpeg4 encoder.
+The colorspace conversion is maded by the gldownload element.
+
+videoxoverlay:
+Show how to use the xoverlay interface through Qt (ThrollTech).
+The video is displayed as normal 2D scene.
+
diff --git a/win32/codeblock/gstopengl/gstopengl.depend b/win32/codeblock/gstopengl/gstopengl.depend
deleted file mode 100644
index ab24282..0000000
--- a/win32/codeblock/gstopengl/gstopengl.depend
+++ /dev/null
@@ -1,869 +0,0 @@
-# depslib dependency file v1.0
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_callbacks.c
- "gstfreeglut.h"
- "freeglut_internal.h"
-
-1211459603 d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\gstfreeglut.h
- "freeglut_std.h"
- "freeglut_ext.h"
-
-1211459603 d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_std.h
- <windows.h>
- <GL/gl.h>
- <GL/glu.h>
-
-1211274293 d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_ext.h
-
-1211274293 d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_internal.h
- <windows.h>
- <windowsx.h>
- <mmsystem.h>
- <TCHAR.H>
- <GL/gl.h>
- <GL/glu.h>
- <stdio.h>
- <string.h>
- <math.h>
- <stdlib.h>
- <sys/types.h>
- <unistd.h>
- <sys/time.h>
- <time.h>
- <sys/time.h>
- <time.h>
- <GL/glx.h>
- <X11/Xlib.h>
- <X11/Xatom.h>
- <X11/keysym.h>
- <X11/extensions/xf86vmode.h>
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_display.c
- "gstfreeglut.h"
- "freeglut_internal.h"
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_init.c
- "gstfreeglut.h"
- "freeglut_internal.h"
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_main.c
- "gstfreeglut.h"
- "freeglut_internal.h"
- <errno.h>
- <stdarg.h>
- <gx.h>
- <sys/time.h>
- <unistd.h>
- <limits.h>
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_state.c
- "gstfreeglut.h"
- "freeglut_internal.h"
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_structure.c
- "gstfreeglut.h"
- "freeglut_internal.h"
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\freeglut\freeglut_window.c
- "gstfreeglut.h"
- "freeglut_internal.h"
- <aygshell.h>
-
-1211274293 source:d:\wobow\gst-plugins-gl\gst-libs\gst\gl\gstglbuffer.c
- "config.h"
- "gstglbuffer.h"
-
-1211274293 d:\wobow\gst-plugins-gl\gst-libs\gst\gl\gstglbuffer.h
- <gst/gst.h>
- <gst/video/video.h>
- "gstgldisplay.h"
-
-1196086560 d:\wobow\gstreamer\include\gst\gst.h
- <glib.h>
- <gst/glib-compat.h>
- <gst/gstenumtypes.h>
- <gst/gstversion.h>
- <gst/gstbin.h>
- <gst/gstbuffer.h>
- <gst/gstcaps.h>
- <gst/gstchildproxy.h>
- <gst/gstclock.h>
- <gst/gstdebugutils.h>
- <gst/gstelement.h>
- <gst/gsterror.h>
- <gst/gstevent.h>
- <gst/gstghostpad.h>
- <gst/gstindex.h>
- <gst/gstindexfactory.h>
- <gst/gstinfo.h>
- <gst/gstinterface.h>
- <gst/gstiterator.h>
- <gst/gstmarshal.h>
- <gst/gstmessage.h>
- <gst/gstminiobject.h>
- <gst/gstobject.h>
- <gst/gstpad.h>
- <gst/gstparamspecs.h>
- <gst/gstpipeline.h>
- <gst/gstplugin.h>
- <gst/gstquery.h>
- <gst/gstregistry.h>
- <gst/gstsegment.h>
- <gst/gststructure.h>
- <gst/gstsystemclock.h>
- <gst/gsttaglist.h>
- <gst/gsttagsetter.h>
- <gst/gsttask.h>
- <gst/gsttrace.h>
- <gst/gsttypefind.h>
- <gst/gsttypefindfactory.h>
- <gst/gsturi.h>
- <gst/gstutils.h>
- <gst/gstvalue.h>
- <gst/gstxml.h>
- <gst/gstparse.h>
- <gst/gstcompat.h>
-
-1202823376 d:\wobow\glib\include\glib.h
- <glib/galloca.h>
- <glib/garray.h>
- <glib/gasyncqueue.h>
- <glib/gatomic.h>
- <glib/gbacktrace.h>
- <glib/gbase64.h>
- <glib/gbookmarkfile.h>
- <glib/gcache.h>
- <glib/gcompletion.h>
- <glib/gconvert.h>
- <glib/gdataset.h>
- <glib/gdate.h>
- <glib/gdir.h>
- <glib/gerror.h>
- <glib/gfileutils.h>
- <glib/ghash.h>
- <glib/ghook.h>
- <glib/giochannel.h>
- <glib/gkeyfile.h>
- <glib/glist.h>
- <glib/gmacros.h>
- <glib/gmain.h>
- <glib/gmappedfile.h>
- <glib/gmarkup.h>
- <glib/gmem.h>
- <glib/gmessages.h>
- <glib/gnode.h>
- <glib/goption.h>
- <glib/gpattern.h>
- <glib/gprimes.h>
- <glib/gqsort.h>
- <glib/gquark.h>
- <glib/gqueue.h>
- <glib/grand.h>
- <glib/grel.h>
- <glib/gregex.h>
- <glib/gscanner.h>
- <glib/gsequence.h>
- <glib/gshell.h>
- <glib/gslist.h>
- <glib/gspawn.h>
- <glib/gstrfuncs.h>
- <glib/gstring.h>
- <glib/gthread.h>
- <glib/gthreadpool.h>
- <glib/gtimer.h>
- <glib/gtree.h>
- <glib/gtypes.h>
- <glib/gunicode.h>
- <glib/gutils.h>
- <glib/gwin32.h>
-
-1202823375 d:\wobow\glib\include\glib\galloca.h
- <glib/gtypes.h>
- <alloca.h>
- <malloc.h>
-
-1202823375 d:\wobow\glib\include\glib\gtypes.h
- <glibconfig.h>
-
-1202823376 d:\wobow\glib\include\glibconfig.h
- <glib/gmacros.h>
- <limits.h>
- <float.h>
-
-1202823375 d:\wobow\glib\include\glib\gmacros.h
- <stddef.h>
-
-1202823375 d:\wobow\glib\include\glib\garray.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gasyncqueue.h
- <glib/gthread.h>
-
-1202823375 d:\wobow\glib\include\glib\gthread.h
- <glib/gerror.h>
- <glib/gtypes.h>
- <glib/gutils.h>
- <glib/gatomic.h>
-
-1202823375 d:\wobow\glib\include\glib\gerror.h
- <glib/gquark.h>
-
-1202823375 d:\wobow\glib\include\glib\gquark.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gutils.h
- <glib/gtypes.h>
- <stdarg.h>
-
-1202823375 d:\wobow\glib\include\glib\gatomic.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gbacktrace.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gbase64.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gbookmarkfile.h
- <glib/gerror.h>
- <time.h>
-
-1202823375 d:\wobow\glib\include\glib\gcache.h
- <glib/glist.h>
-
-1202823375 d:\wobow\glib\include\glib\glist.h
- <glib/gmem.h>
-
-1202823375 d:\wobow\glib\include\glib\gmem.h
- <glib/gslice.h>
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gslice.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gcompletion.h
- <glib/glist.h>
-
-1202823375 d:\wobow\glib\include\glib\gconvert.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gdataset.h
- <glib/gquark.h>
-
-1202823375 d:\wobow\glib\include\glib\gdate.h
- <time.h>
- <glib/gtypes.h>
- <glib/gquark.h>
-
-1202823375 d:\wobow\glib\include\glib\gdir.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gfileutils.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\ghash.h
- <glib/gtypes.h>
- <glib/glist.h>
-
-1202823375 d:\wobow\glib\include\glib\ghook.h
- <glib/gmem.h>
-
-1202823375 d:\wobow\glib\include\glib\giochannel.h
- <glib/gconvert.h>
- <glib/gmain.h>
- <glib/gstring.h>
-
-1202823375 d:\wobow\glib\include\glib\gmain.h
- <glib/gslist.h>
- <glib/gthread.h>
-
-1202823375 d:\wobow\glib\include\glib\gslist.h
- <glib/gmem.h>
-
-1202823375 d:\wobow\glib\include\glib\gstring.h
- <glib/gtypes.h>
- <glib/gunicode.h>
- <glib/gutils.h>
-
-1202823375 d:\wobow\glib\include\glib\gunicode.h
- <glib/gerror.h>
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gkeyfile.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gmappedfile.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gmarkup.h
- <stdarg.h>
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gmessages.h
- <stdarg.h>
- <glib/gtypes.h>
- <glib/gmacros.h>
-
-1202823375 d:\wobow\glib\include\glib\gnode.h
- <glib/gmem.h>
-
-1202823375 d:\wobow\glib\include\glib\goption.h
- <glib/gerror.h>
- <glib/gquark.h>
-
-1202823375 d:\wobow\glib\include\glib\gpattern.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gprimes.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gqsort.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gqueue.h
- <glib/glist.h>
-
-1202823375 d:\wobow\glib\include\glib\grand.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\grel.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gregex.h
- <glib/gerror.h>
- <glib/gstring.h>
-
-1202823375 d:\wobow\glib\include\glib\gscanner.h
- <glib/gdataset.h>
- <glib/ghash.h>
-
-1202823375 d:\wobow\glib\include\glib\gsequence.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gshell.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gspawn.h
- <glib/gerror.h>
-
-1202823375 d:\wobow\glib\include\glib\gstrfuncs.h
- <stdarg.h>
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gthreadpool.h
- <glib/gthread.h>
-
-1202823375 d:\wobow\glib\include\glib\gtimer.h
- <glib/gtypes.h>
-
-1202823375 d:\wobow\glib\include\glib\gtree.h
- <glib/gnode.h>
-
-1202823375 d:\wobow\glib\include\glib\gwin32.h
- <glib/gtypes.h>
-
-1150186824 d:\wobow\gstreamer\include\gst\glib-compat.h
-
-1194394630 d:\wobow\gstreamer\include\gst\gstenumtypes.h
- <glib-object.h>
-
-1202823376 d:\wobow\glib\include\glib-object.h
- <gobject/gboxed.h>
- <gobject/genums.h>
- <gobject/gobject.h>
- <gobject/gparam.h>
- <gobject/gparamspecs.h>
- <gobject/gsignal.h>
- <gobject/gsourceclosure.h>
- <gobject/gtype.h>
- <gobject/gtypemodule.h>
- <gobject/gtypeplugin.h>
- <gobject/gvalue.h>
- <gobject/gvaluearray.h>
- <gobject/gvaluetypes.h>
-
-1202823376 d:\wobow\glib\include\gobject\gboxed.h
- <gobject/gtype.h>
-
-1202823376 d:\wobow\glib\include\gobject\gtype.h
- <glib.h>
-
-1202823376 d:\wobow\glib\include\gobject\genums.h
- <gobject/gtype.h>
-
-1202823376 d:\wobow\glib\include\gobject\gobject.h
- <gobject/gtype.h>
- <gobject/gvalue.h>
- <gobject/gparam.h>
- <gobject/gclosure.h>
- <gobject/gsignal.h>
-
-1202823376 d:\wobow\glib\include\gobject\gvalue.h
- <gobject/gtype.h>
-
-1202823376 d:\wobow\glib\include\gobject\gparam.h
- <gobject/gvalue.h>
-
-1202823376 d:\wobow\glib\include\gobject\gclosure.h
- <gobject/gtype.h>
-
-1202823376 d:\wobow\glib\include\gobject\gsignal.h
- <gobject/gclosure.h>
- <gobject/gvalue.h>
- <gobject/gparam.h>
- <gobject/gmarshal.h>
-
-1202823376 d:\wobow\glib\include\gobject\gmarshal.h
-
-1202823376 d:\wobow\glib\include\gobject\gparamspecs.h
- <gobject/gvalue.h>
- <gobject/genums.h>
- <gobject/gboxed.h>
- <gobject/gobject.h>
-
-1202823376 d:\wobow\glib\include\gobject\gsourceclosure.h
- <gobject/gclosure.h>
-
-1202823376 d:\wobow\glib\include\gobject\gtypemodule.h
- <gobject/gobject.h>
- <gobject/genums.h>
-
-1202823376 d:\wobow\glib\include\gobject\gtypeplugin.h
- <gobject/gtype.h>
-
-1202823376 d:\wobow\glib\include\gobject\gvaluearray.h
- <gobject/gvalue.h>
-
-1202823376 d:\wobow\glib\include\gobject\gvaluetypes.h
- <gobject/gvalue.h>
-
-1191876308 d:\wobow\gstreamer\include\gst\gstversion.h
-
-1190274154 d:\wobow\gstreamer\include\gst\gstbin.h
- <gst/gstelement.h>
- <gst/gstiterator.h>
- <gst/gstbus.h>
-
-1186055478 d:\wobow\gstreamer\include\gst\gstelement.h
- <gst/gstconfig.h>
- <gst/gstobject.h>
- <gst/gstpad.h>
- <gst/gstbus.h>
- <gst/gstclock.h>
- <gst/gstelementfactory.h>
- <gst/gstplugin.h>
- <gst/gstpluginfeature.h>
- <gst/gstindex.h>
- <gst/gstindexfactory.h>
- <gst/gstiterator.h>
- <gst/gstmessage.h>
- <gst/gsttaglist.h>
-
-1162047800 d:\wobow\gstreamer\include\gst\gstconfig.h
- <libxml/parser.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\parser.h
- <stdarg.h>
- <libxml/xmlversion.h>
- <libxml/tree.h>
- <libxml/dict.h>
- <libxml/hash.h>
- <libxml/valid.h>
- <libxml/entities.h>
- <libxml/xmlerror.h>
- <libxml/xmlstring.h>
- <libxml/encoding.h>
- <libxml/xmlIO.h>
- <libxml/globals.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlversion.h
- <libxml/xmlexports.h>
- <ansidecl.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlexports.h
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\tree.h
- <stdio.h>
- <libxml/xmlversion.h>
- <libxml/xmlstring.h>
- <libxml/xmlregexp.h>
- <libxml/xmlmemory.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlstring.h
- <stdarg.h>
- <libxml/xmlversion.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlregexp.h
- <libxml/xmlversion.h>
- <libxml/tree.h>
- <libxml/dict.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\dict.h
- <libxml/xmlversion.h>
- <libxml/tree.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlmemory.h
- <stdio.h>
- <libxml/xmlversion.h>
- <libxml/threads.h>
- <libxml/globals.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\threads.h
- <libxml/xmlversion.h>
- <libxml/globals.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\globals.h
- <libxml/xmlversion.h>
- <libxml/parser.h>
- <libxml/xmlerror.h>
- <libxml/SAX.h>
- <libxml/SAX2.h>
- <libxml/xmlmemory.h>
- <libxml/threads.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlerror.h
- <libxml/parser.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\sax.h
- <stdio.h>
- <stdlib.h>
- <libxml/xmlversion.h>
- <libxml/parser.h>
- <libxml/xlink.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xlink.h
- <libxml/xmlversion.h>
- <libxml/tree.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\sax2.h
- <stdio.h>
- <stdlib.h>
- <libxml/xmlversion.h>
- <libxml/parser.h>
- <libxml/xlink.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\hash.h
- <libxml/xmlversion.h>
- <libxml/parser.h>
- <libxml/dict.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\valid.h
- <libxml/xmlversion.h>
- <libxml/xmlerror.h>
- <libxml/tree.h>
- <libxml/list.h>
- <libxml/xmlautomata.h>
- <libxml/xmlregexp.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\list.h
- <libxml/xmlversion.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlautomata.h
- <libxml/xmlversion.h>
- <libxml/tree.h>
- <libxml/xmlregexp.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\entities.h
- <libxml/xmlversion.h>
- <libxml/tree.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\encoding.h
- <libxml/xmlversion.h>
- <iconv.h>
- <libxml/tree.h>
-
-1202823241 d:\wobow\libiconv\include\iconv.h
- "iconv.h"
- <stddef.h>
- <errno.h>
-
-1202823342 d:\wobow\libxml2-2.6.30+.win32\include\libxml\xmlio.h
- <stdio.h>
- <libxml/xmlversion.h>
- <libxml/globals.h>
- <libxml/tree.h>
- <libxml/parser.h>
- <libxml/encoding.h>
-
-1190634396 d:\wobow\gstreamer\include\gst\gstobject.h
- <gst/gstconfig.h>
- <glib-object.h>
-
-1189526150 d:\wobow\gstreamer\include\gst\gstpad.h
- <gst/gstconfig.h>
- <gst/gstobject.h>
- <gst/gstbuffer.h>
- <gst/gstcaps.h>
- <gst/gstevent.h>
- <gst/gstquery.h>
- <gst/gsttask.h>
- <gst/gstpadtemplate.h>
-
-1194032136 d:\wobow\gstreamer\include\gst\gstbuffer.h
- <gst/gstminiobject.h>
- <gst/gstclock.h>
- <gst/gstcaps.h>
-
-1150103504 d:\wobow\gstreamer\include\gst\gstminiobject.h
- <gst/gstconfig.h>
- <glib-object.h>
-
-1199884942 d:\wobow\gstreamer\include\gst\gstclock.h
- <gst/gstobject.h>
-
-1158769046 d:\wobow\gstreamer\include\gst\gstcaps.h
- <gst/gstconfig.h>
- <gst/gststructure.h>
- <gst/glib-compat.h>
-
-1186936860 d:\wobow\gstreamer\include\gst\gststructure.h
- <gst/gstconfig.h>
- <glib-object.h>
- <gst/gstclock.h>
- <gst/glib-compat.h>
-
-1194032138 d:\wobow\gstreamer\include\gst\gstevent.h
- <gst/gstminiobject.h>
- <gst/gstformat.h>
- <gst/gstobject.h>
- <gst/gstclock.h>
- <gst/gststructure.h>
- <gst/gsttaglist.h>
-
-1194032138 d:\wobow\gstreamer\include\gst\gstformat.h
- <glib.h>
- <gst/gstiterator.h>
-
-1152177664 d:\wobow\gstreamer\include\gst\gstiterator.h
- <glib-object.h>
- <gst/gstconfig.h>
-
-1194032138 d:\wobow\gstreamer\include\gst\gsttaglist.h
- <gst/gststructure.h>
- <gst/glib-compat.h>
-
-1194032138 d:\wobow\gstreamer\include\gst\gstquery.h
- <glib.h>
- <gst/gstiterator.h>
- <gst/gstminiobject.h>
- <gst/gststructure.h>
- <gst/gstformat.h>
-
-1152177664 d:\wobow\gstreamer\include\gst\gsttask.h
- <gst/gstobject.h>
-
-1190208516 d:\wobow\gstreamer\include\gst\gstpadtemplate.h
- <gst/gstconfig.h>
- <gst/gstobject.h>
- <gst/gstbuffer.h>
- <gst/gstcaps.h>
- <gst/gstevent.h>
- <gst/gstquery.h>
- <gst/gsttask.h>
-
-1192566614 d:\wobow\gstreamer\include\gst\gstbus.h
- <gst/gstmessage.h>
- <gst/gstclock.h>
-
-1194032138 d:\wobow\gstreamer\include\gst\gstmessage.h
- <gst/gstminiobject.h>
- <gst/gstobject.h>
- <gst/gstelement.h>
- <gst/gsttaglist.h>
- <gst/gststructure.h>
-
-1197505198 d:\wobow\gstreamer\include\gst\gstelementfactory.h
- <gst/gstconfig.h>
- <gst/gstelement.h>
- <gst/gstobject.h>
- <gst/gstplugin.h>
- <gst/gstpluginfeature.h>
- <gst/gstiterator.h>
-
-1200612730 d:\wobow\gstreamer\include\gst\gstplugin.h
- <gst/gstconfig.h>
- <time.h>
- <sys/types.h>
- <sys/stat.h>
- <gmodule.h>
- <gst/gstobject.h>
- <gst/gstmacros.h>
-
-1202823376 d:\wobow\glib\include\gmodule.h
- <glib.h>
-
-1129390222 d:\wobow\gstreamer\include\gst\gstmacros.h
-
-1192296010 d:\wobow\gstreamer\include\gst\gstpluginfeature.h
- <glib-object.h>
- <gst/gstobject.h>
-
-1144519516 d:\wobow\gstreamer\include\gst\gstindex.h
- <gst/gstobject.h>
- <gst/gstformat.h>
- <gst/gstpluginfeature.h>
-
-1129390222 d:\wobow\gstreamer\include\gst\gstindexfactory.h
- <gst/gstobject.h>
- <gst/gstformat.h>
- <gst/gstpluginfeature.h>
-
-1171544708 d:\wobow\gstreamer\include\gst\gstchildproxy.h
- <glib-object.h>
- <gst/gst.h>
-
-1195750742 d:\wobow\gstreamer\include\gst\gstdebugutils.h
- <glib.h>
- <glib-object.h>
- <gst/gstconfig.h>
- <gst/gstbin.h>
-
-1176382790 d:\wobow\gstreamer\include\gst\gsterror.h
- <glib.h>
- <glib-object.h>
- <errno.h>
-
-1157021952 d:\wobow\gstreamer\include\gst\gstghostpad.h
- <gst/gstpad.h>
-
-1197505200 d:\wobow\gstreamer\include\gst\gstinfo.h
- <glib.h>
- <glib-object.h>
- <gst/gstconfig.h>
-
-1147256816 d:\wobow\gstreamer\include\gst\gstinterface.h
- <gst/gstelement.h>
-
-1201962270 d:\wobow\gstreamer\include\gst\gstmarshal.h
- "gst/gstconfig.h"
- <glib-object.h>
-
-1185368424 d:\wobow\gstreamer\include\gst\gstparamspecs.h
- <gst/gstvalue.h>
-
-1197471854 d:\wobow\gstreamer\include\gst\gstvalue.h
- <gst/gstconfig.h>
- <gst/gstcaps.h>
- <gst/gststructure.h>
-
-1172684624 d:\wobow\gstreamer\include\gst\gstpipeline.h
- <gst/gstbin.h>
-
-1186756826 d:\wobow\gstreamer\include\gst\gstregistry.h
- <stdio.h>
- <gst/gstconfig.h>
- <gst/gstplugin.h>
- <gst/gstpluginfeature.h>
-
-1160411610 d:\wobow\gstreamer\include\gst\gstsegment.h
- <gst/gstevent.h>
- <gst/gstformat.h>
-
-1130523264 d:\wobow\gstreamer\include\gst\gstsystemclock.h
- <gst/gstclock.h>
-
-1149186134 d:\wobow\gstreamer\include\gst\gsttagsetter.h
- <gst/gst.h>
-
-1153215752 d:\wobow\gstreamer\include\gst\gsttrace.h
- <glib.h>
-
-1147962300 d:\wobow\gstreamer\include\gst\gsttypefind.h
- <gst/gstcaps.h>
- <gst/gstplugin.h>
- <gst/gstpluginfeature.h>
-
-1133312180 d:\wobow\gstreamer\include\gst\gsttypefindfactory.h
- <gst/gstcaps.h>
- <gst/gstplugin.h>
- <gst/gstpluginfeature.h>
- <gst/gsttypefind.h>
-
-1193329146 d:\wobow\gstreamer\include\gst\gsturi.h
- <glib.h>
- <gst/gstelement.h>
- <gst/gstpluginfeature.h>
-
-1197408750 d:\wobow\gstreamer\include\gst\gstutils.h
- <glib.h>
- <gst/gstbin.h>
-
-1194029006 d:\wobow\gstreamer\include\gst\gstxml.h
- <gst/gstconfig.h>
- <gst/gstelement.h>
-
-1178728328 d:\wobow\gstreamer\include\gst\gstparse.h
- <gst/gstelement.h>
-
-1125389868 d:\wobow\gstreamer\include\gst\gstcompat.h
-
-1198304340 d:\wobow\gstreamer\include\gst\video\video.h
- <gst/gst.h>
-
-1211467741 d:\wobow\gst-plugins-gl\gst-libs\gst\gl\gstgldisplay.h
- <GL/glew.h>
- <gstfreeglut.h>
- <gst/gst.h>
- <gst/video/video.h>
-
-1211459663 d:\wobow\glew\include\gl\glew.h
- <stddef.h>
- <OpenGL/glu.h>
- <GL/glu.h>
-
-1211465853 source:d:\wobow\gst-plugins-gl\gst-libs\gst\gl\gstgldisplay.c
- "config.h"
- "gstgldisplay.h"
- <gst/gst.h>
-
-1211274294 source:d:\wobow\gst-plugins-gl\gst\gl\gstglgraphicmaker.c
- "config.h"
- "gstglgraphicmaker.h"
-
-1211274294 d:\wobow\gst-plugins-gl\gst\gl\gstglgraphicmaker.h
- <gst/gst.h>
- <gst/base/gstbasetransform.h>
- <gst/video/video.h>
- "gstglbuffer.h"
-
-1197654758 d:\wobow\gstreamer\include\gst\base\gstbasetransform.h
- <gst/gst.h>
-
-1211459603 source:d:\wobow\gst-plugins-gl\gst\gl\gstglimagesink.c
- "config.h"
- <gst/interfaces/xoverlay.h>
- "gstglimagesink.h"
-
-1167913854 d:\wobow\gstreamer\include\gst\interfaces\xoverlay.h
- <gst/gst.h>
-
-1211459603 d:\wobow\gst-plugins-gl\gst\gl\gstglimagesink.h
- <gst/gst.h>
- <gst/video/gstvideosink.h>
- <gst/video/video.h>
- "gstglbuffer.h"
-
-1166183544 d:\wobow\gstreamer\include\gst\video\gstvideosink.h
- <gst/gst.h>
- <gst/base/gstbasesink.h>
-
-1193772614 d:\wobow\gstreamer\include\gst\base\gstbasesink.h
- <gst/gst.h>
-
-1211459603 source:d:\wobow\gst-plugins-gl\gst\gl\gstglvideomaker.c
- "config.h"
- "gstglvideomaker.h"
-
-1211459603 d:\wobow\gst-plugins-gl\gst\gl\gstglvideomaker.h
- <gst/gst.h>
- <gst/base/gstbasetransform.h>
- <gst/video/video.h>
- "gstglbuffer.h"
-
-1211274294 d:\wobow\gst-plugins-gl\win32\common\config.h
-
-1211274294 source:d:\wobow\gst-plugins-gl\gst\gl\gstopengl.c
- "config.h"
- "gstglgraphicmaker.h"
- "gstglvideomaker.h"
- "gstglimagesink.h"
-