mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
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:
parent
afa20a78b2
commit
03ec8f5c05
3 changed files with 15 additions and 8 deletions
|
@ -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>
|
||||
|
||||
* ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
plugin_LTLIBRARIES = libgstximage.la
|
||||
plugin_LTLIBRARIES = libgstximagesink.la
|
||||
|
||||
libgstximage_la_SOURCES = ximagesink.c ximage.c
|
||||
libgstximage_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
||||
libgstximage_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstximage_la_LIBADD = \
|
||||
libgstximagesink_la_SOURCES = ximagesink.c ximage.c
|
||||
libgstximagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
||||
libgstximagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstximagesink_la_LIBADD = \
|
||||
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
||||
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \
|
||||
$(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
|
||||
|
|
|
@ -42,6 +42,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"ximage",
|
||||
"XFree86 video output and input elements based on standard Xlib calls",
|
||||
"ximagesink",
|
||||
"X11 video output element based on standard Xlib calls",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||
|
|
Loading…
Reference in a new issue