summaryrefslogtreecommitdiff
path: root/gst/camerabin2
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2017-03-04 11:03:53 -0500
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-03-08 20:04:23 -0500
commiteb2dae8fd6aea04673fdd5b0fdf05e4e2ce1c2ee (patch)
treec12398b7b4c51a34471b0ada4a954dd55a16b9e9 /gst/camerabin2
parent9b5c46ca571261aa90254ebf77243e1a7b30345d (diff)
downloadgstreamer-plugins-bad-eb2dae8fd6aea04673fdd5b0fdf05e4e2ce1c2ee.tar.gz
Rename plugin filesnames to match plugin names
- libgstgtksink.so -> libgstgtk.so - libgstteletextdec.so -> libgstteletex.so - libgstcamerabin2.so -> libgstcamerabin.so - libgstonvif.so -> libgstrtponvif.so (meson only) - sdp -> sdpelem (avoid clash with libgstsdp) - gstsiren -> siren - libgstkmssink.so -> libgstkms.so https://bugzilla.gnome.org/show_bug.cgi?id=779344
Diffstat (limited to 'gst/camerabin2')
-rw-r--r--gst/camerabin2/Makefile.am12
-rw-r--r--gst/camerabin2/meson.build6
2 files changed, 9 insertions, 9 deletions
diff --git a/gst/camerabin2/Makefile.am b/gst/camerabin2/Makefile.am
index 9254f7c7e..b44aba4db 100644
--- a/gst/camerabin2/Makefile.am
+++ b/gst/camerabin2/Makefile.am
@@ -1,26 +1,26 @@
-plugin_LTLIBRARIES = libgstcamerabin2.la
+plugin_LTLIBRARIES = libgstcamerabin.la
-libgstcamerabin2_la_SOURCES = gstviewfinderbin.c \
+libgstcamerabin_la_SOURCES = gstviewfinderbin.c \
gstdigitalzoom.c \
camerabingeneral.c \
gstwrappercamerabinsrc.c \
gstcamerabin2.c \
gstplugin.c
-libgstcamerabin2_la_CFLAGS = \
+libgstcamerabin_la_CFLAGS = \
$(GST_PLUGINS_BAD_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) $(GST_CFLAGS) \
-DGST_USE_UNSTABLE_API
-libgstcamerabin2_la_LIBADD = \
+libgstcamerabin_la_LIBADD = \
$(top_builddir)/gst-libs/gst/interfaces/libgstphotography-$(GST_API_VERSION).la \
$(top_builddir)/gst-libs/gst/basecamerabinsrc/libgstbasecamerabinsrc-$(GST_API_VERSION).la \
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) -lgstapp-$(GST_API_VERSION) -lgstpbutils-$(GST_API_VERSION) \
$(GST_BASE_LIBS) $(GST_LIBS)
-libgstcamerabin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-libgstcamerabin2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
+libgstcamerabin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstcamerabin_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
noinst_HEADERS = gstviewfinderbin.h \
camerabingeneral.h \
diff --git a/gst/camerabin2/meson.build b/gst/camerabin2/meson.build
index b9c043aff..9cee3432f 100644
--- a/gst/camerabin2/meson.build
+++ b/gst/camerabin2/meson.build
@@ -1,4 +1,4 @@
-camerabin2_sources = [
+camerabin_sources = [
'gstdigitalzoom.c',
'gstviewfinderbin.c',
'camerabingeneral.c',
@@ -7,8 +7,8 @@ camerabin2_sources = [
'gstplugin.c',
]
-gstcamerabin2 = library('gstcamerabin2',
- camerabin2_sources,
+gstcamerabin = library('gstcamerabin',
+ camerabin_sources,
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
include_directories : [configinc, libsinc],
link_with : gstbasecamerabin,