Fix plugin filenames to match pugin names
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Sat, 4 Mar 2017 15:08:04 +0000 (10:08 -0500)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Thu, 9 Mar 2017 01:04:17 +0000 (20:04 -0500)
 - libgstencodebin.so is now libgstencoding.so
 - libgstximage.so is now libgstximagesink.so (meson only)

https://bugzilla.gnome.org/show_bug.cgi?id=779344

docs/plugins/inspect/plugin-encoding.xml
docs/plugins/inspect/plugin-libvisual.xml
docs/plugins/inspect/plugin-pbtypes.xml [new file with mode: 0644]
gst/encoding/Makefile.am
gst/encoding/meson.build
sys/xvimage/meson.build

index 31f31a5..4671655 100644 (file)
@@ -1,8 +1,8 @@
 <plugin>
   <name>encoding</name>
   <description>various encoding-related elements</description>
-  <filename>../../gst/encoding/.libs/libgstencodebin.so</filename>
-  <basename>libgstencodebin.so</basename>
+  <filename>../../gst/encoding/.libs/libgstencoding.so</filename>
+  <basename>libgstencoding.so</basename>
   <version>1.11.2.1</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
index a53151c..f173fba 100644 (file)
       </pads>
     </element>
   </elements>
-</plugin>
\ No newline at end of file
+</plugin>
diff --git a/docs/plugins/inspect/plugin-pbtypes.xml b/docs/plugins/inspect/plugin-pbtypes.xml
new file mode 100644 (file)
index 0000000..67739ce
--- /dev/null
@@ -0,0 +1,13 @@
+<plugin>
+  <name>pbtypes</name>
+  <description>gst-plugins-base dynamic types</description>
+  <filename>../../gst/pbtypes/.libs/libgstpbtypes.so</filename>
+  <basename>libgstpbtypes.so</basename>
+  <version>1.11.2.1</version>
+  <license>LGPL</license>
+  <source>gst-plugins-base</source>
+  <package>GStreamer Base Plug-ins git</package>
+  <origin>Unknown package origin</origin>
+  <elements>
+  </elements>
+</plugin>
\ No newline at end of file
index f9e7379..3209d3c 100644 (file)
@@ -1,17 +1,17 @@
-plugin_LTLIBRARIES = libgstencodebin.la
+plugin_LTLIBRARIES = libgstencoding.la
 
-libgstencodebin_la_SOURCES =   \
+libgstencoding_la_SOURCES =    \
        gstencodebin.c          \
        gstsmartencoder.c       \
        gststreamcombiner.c     \
        gststreamsplitter.c
 
-libgstencodebin_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
-libgstencodebin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-libgstencodebin_la_LIBADD = \
+libgstencoding_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
+libgstencoding_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstencoding_la_LIBADD = \
        $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
        $(GST_LIBS)
-libgstencodebin_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
+libgstencoding_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
 
 noinst_HEADERS =               \
        gstencodebin.h          \
index c2f0255..bab3f7f 100644 (file)
@@ -4,7 +4,7 @@ encoding_sources = ['gstencodebin.c',
   'gststreamsplitter.c',
   ]
 
-gstencoding = library('gstencodebin',
+gstencoding = library('gstencoding',
   encoding_sources,
   c_args : gst_plugins_base_args,
   include_directories: [configinc, libsinc],
index 2c736af..6e9ea30 100644 (file)
@@ -10,7 +10,7 @@ xvideo_dep = dependency('xv', required : false)
 core_conf.set('HAVE_XVIDEO', x11_dep.found() and xvideo_dep.found())
 
 if xvideo_dep.found()
-  gstxvimage = library('gstxvimage',
+  gstxvimage = library('gstxvimagesink',
     xvimage_sources,
     c_args : gst_plugins_base_args,
     include_directories: [configinc, libsinc],