diff options
author | David Schleef <ds@schleef.org> | 2007-12-18 01:25:58 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2007-12-18 01:25:58 +0000 |
commit | 4625e68226117c9e57939d66fafd26c3fba7470c (patch) | |
tree | 8471c6b295cc9448d33a3438a19f845e6d65c578 /sys/glsink/Makefile.am | |
parent | 45e90efd1b3f19b231fd4e4cc753e2870aa62d0a (diff) | |
download | gst-plugins-bad-4625e68226117c9e57939d66fafd26c3fba7470c.tar.gz gst-plugins-bad-4625e68226117c9e57939d66fafd26c3fba7470c.tar.bz2 gst-plugins-bad-4625e68226117c9e57939d66fafd26c3fba7470c.zip |
sys/glsink/: Use new GstVideoFormat checked into -base. Add new glupload element to upload raw video into a GLXPixbu...
Original commit message from CVS:
* sys/glsink/Makefile.am:
* sys/glsink/glimagesink.c:
* sys/glsink/glimagesink.h:
* sys/glsink/glvideo.c:
* sys/glsink/glvideo.h:
* sys/glsink/gstopengl.c:
* sys/glsink/gstglupload.c:
Use new GstVideoFormat checked into -base. Add new glupload
element to upload raw video into a GLXPixbuf. Untested. Will
likely crash your motorcycle if you try it.
* sys/glsink/gstvideo-common.c:
* sys/glsink/gstvideo-common.h:
Remove.
Diffstat (limited to 'sys/glsink/Makefile.am')
-rw-r--r-- | sys/glsink/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/glsink/Makefile.am b/sys/glsink/Makefile.am index 79091f43..43e60378 100644 --- a/sys/glsink/Makefile.am +++ b/sys/glsink/Makefile.am @@ -5,8 +5,9 @@ libgstglimagesink_la_SOURCES = \ glimagesink.c \ glvideo.c \ gstopengl.c \ - gstvideo-common.c \ - glextensions.c + glextensions.c \ + gstglbuffer.c \ + gstglupload.c libgstglimagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) libgstglimagesink_la_LIBADD = $(X_LIBS) $(XSHM_LIBS) -lGL \ @@ -16,6 +17,6 @@ libgstglimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = \ glimagesink.h \ - gstvideo-common.h \ glvideo.h \ - glextensions.h + glextensions.h \ + gstglbuffer.h |