mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
Fix plugin filenames to match pugin names
- libgstencodebin.so is now libgstencoding.so - libgstximage.so is now libgstximagesink.so (meson only) https://bugzilla.gnome.org/show_bug.cgi?id=779344
This commit is contained in:
parent
4e911760d2
commit
fb7d9e26ff
6 changed files with 24 additions and 11 deletions
|
@ -1,8 +1,8 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<name>encoding</name>
|
<name>encoding</name>
|
||||||
<description>various encoding-related elements</description>
|
<description>various encoding-related elements</description>
|
||||||
<filename>../../gst/encoding/.libs/libgstencodebin.so</filename>
|
<filename>../../gst/encoding/.libs/libgstencoding.so</filename>
|
||||||
<basename>libgstencodebin.so</basename>
|
<basename>libgstencoding.so</basename>
|
||||||
<version>1.11.2.1</version>
|
<version>1.11.2.1</version>
|
||||||
<license>LGPL</license>
|
<license>LGPL</license>
|
||||||
<source>gst-plugins-base</source>
|
<source>gst-plugins-base</source>
|
||||||
|
|
|
@ -178,4 +178,4 @@
|
||||||
</pads>
|
</pads>
|
||||||
</element>
|
</element>
|
||||||
</elements>
|
</elements>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
13
docs/plugins/inspect/plugin-pbtypes.xml
Normal file
13
docs/plugins/inspect/plugin-pbtypes.xml
Normal file
|
@ -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>
|
|
@ -1,17 +1,17 @@
|
||||||
plugin_LTLIBRARIES = libgstencodebin.la
|
plugin_LTLIBRARIES = libgstencoding.la
|
||||||
|
|
||||||
libgstencodebin_la_SOURCES = \
|
libgstencoding_la_SOURCES = \
|
||||||
gstencodebin.c \
|
gstencodebin.c \
|
||||||
gstsmartencoder.c \
|
gstsmartencoder.c \
|
||||||
gststreamcombiner.c \
|
gststreamcombiner.c \
|
||||||
gststreamsplitter.c
|
gststreamsplitter.c
|
||||||
|
|
||||||
libgstencodebin_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
libgstencoding_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstencodebin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstencoding_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstencodebin_la_LIBADD = \
|
libgstencoding_la_LIBADD = \
|
||||||
$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
|
$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstencodebin_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
libgstencoding_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstencodebin.h \
|
gstencodebin.h \
|
||||||
|
|
|
@ -4,7 +4,7 @@ encoding_sources = ['gstencodebin.c',
|
||||||
'gststreamsplitter.c',
|
'gststreamsplitter.c',
|
||||||
]
|
]
|
||||||
|
|
||||||
gstencoding = library('gstencodebin',
|
gstencoding = library('gstencoding',
|
||||||
encoding_sources,
|
encoding_sources,
|
||||||
c_args : gst_plugins_base_args,
|
c_args : gst_plugins_base_args,
|
||||||
include_directories: [configinc, libsinc],
|
include_directories: [configinc, libsinc],
|
||||||
|
|
|
@ -10,7 +10,7 @@ xvideo_dep = dependency('xv', required : false)
|
||||||
core_conf.set('HAVE_XVIDEO', x11_dep.found() and xvideo_dep.found())
|
core_conf.set('HAVE_XVIDEO', x11_dep.found() and xvideo_dep.found())
|
||||||
|
|
||||||
if xvideo_dep.found()
|
if xvideo_dep.found()
|
||||||
gstxvimage = library('gstxvimage',
|
gstxvimage = library('gstxvimagesink',
|
||||||
xvimage_sources,
|
xvimage_sources,
|
||||||
c_args : gst_plugins_base_args,
|
c_args : gst_plugins_base_args,
|
||||||
include_directories: [configinc, libsinc],
|
include_directories: [configinc, libsinc],
|
||||||
|
|
Loading…
Reference in a new issue