sys/ximage/: Rename ximage plugin to ximagesink (#321426) (Don't forget to remove your old libgstximage.* manually if...

Original commit message from CVS:
* sys/ximage/Makefile.am:
* sys/ximage/ximage.c:
Rename ximage plugin to ximagesink (#321426) (Don't forget to
remove your old libgstximage.* manually if necessary).
This commit is contained in:
Tim-Philipp Müller 2005-11-21 16:08:19 +00:00
parent afa20a78b2
commit 03ec8f5c05
3 changed files with 15 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
* sys/ximage/Makefile.am:
* sys/ximage/ximage.c:
Rename ximage plugin to ximagesink (#321426) (Don't forget to
remove your old libgstximage.* manually if necessary).
2005-11-21 Michael Smith <msmith@fluendo.com> 2005-11-21 Michael Smith <msmith@fluendo.com>
* ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup): * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):

View file

@ -1,12 +1,12 @@
plugin_LTLIBRARIES = libgstximage.la plugin_LTLIBRARIES = libgstximagesink.la
libgstximage_la_SOURCES = ximagesink.c ximage.c libgstximagesink_la_SOURCES = ximagesink.c ximage.c
libgstximage_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) libgstximagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
libgstximage_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstximagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstximage_la_LIBADD = \ libgstximagesink_la_LIBADD = \
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \ $(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \ $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \
$(X_LIBS) $(XSHM_LIBS) $(X_LIBS) $(XSHM_LIBS)
libgstximage_la_DEPENDENCIES = $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la libgstximagesink_la_DEPENDENCIES = $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la
noinst_HEADERS = ximagesink.h noinst_HEADERS = ximagesink.h

View file

@ -42,6 +42,6 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR, GST_VERSION_MINOR,
"ximage", "ximagesink",
"XFree86 video output and input elements based on standard Xlib calls", "X11 video output element based on standard Xlib calls",
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)