[vlc-commits] chromecast: rename the module to libchromecast so it matches the protocol
Steve Lhomme
git at videolan.org
Fri Mar 25 09:06:39 CET 2016
vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Fri Mar 18 17:04:45 2016 +0100| [5cc59f4102c6ce2324293e1420d84e00f01054b3] | committer: Jean-Baptiste Kempf
chromecast: rename the module to libchromecast so it matches the protocol
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5cc59f4102c6ce2324293e1420d84e00f01054b3
---
modules/MODULES_LIST | 2 +-
modules/stream_out/Makefile.am | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/modules/MODULES_LIST b/modules/MODULES_LIST
index 77723e4..610b75c 100644
--- a/modules/MODULES_LIST
+++ b/modules/MODULES_LIST
@@ -80,13 +80,13 @@ $Id$
* chorus_flanger: Basic chorus/flanger/variable delay audio filter
* chroma_omx: OMX Development Layer chroma conversions
* chroma_yuv_neon: ARM NEON video chroma conversion
+ * chromecast: Module to handle communication with Chromecast and redirect input playback
* clone: Clone video filter
* colorthres: Theshold color based on similarity to reference color Video filter
* compressor: Dynamic range compressor
* console_logger: Logger outputting in the terminal
* croppadd: Crop/Padd image filter
* crystalhd: crystalhd decoder
- * ctrl_chromecast: Module to handle communication with Chromecast and redirect input playback
* cvdsub: CVD subtitles decoder
* cvpx_i420: filter to copy from OS X accelerated surfaces to CPU in YUV
* d3d11_surface: Convert D3D11 GPU textures to YUV planes
diff --git a/modules/stream_out/Makefile.am b/modules/stream_out/Makefile.am
index 7e5d2b3..e30cd43 100644
--- a/modules/stream_out/Makefile.am
+++ b/modules/stream_out/Makefile.am
@@ -80,14 +80,14 @@ SUFFIXES += .proto .pb.cc
%.pb.h %.pb.cc: %.proto
$(PROTOC) --cpp_out=. -I$(srcdir) $<
-libctrl_chromecast_plugin_la_SOURCES = \
+libchromecast_plugin_la_SOURCES = \
stream_out/chromecast/cast_channel.proto stream_out/chromecast/chromecast.h \
stream_out/chromecast/chromecast_ctrl.cpp \
misc/webservices/json.h misc/webservices/json.c
-nodist_libctrl_chromecast_plugin_la_SOURCES = stream_out/chromecast/cast_channel.pb.cc
-libctrl_chromecast_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -Istream_out/chromecast $(CHROMECAST_CFLAGS)
-libctrl_chromecast_plugin_la_LIBADD = $(CHROMECAST_LIBS) $(SOCKET_LIBS)
-CLEANFILES += $(nodist_libctrl_chromecast_plugin_la_SOURCES)
+nodist_libchromecast_plugin_la_SOURCES = stream_out/chromecast/cast_channel.pb.cc
+libchromecast_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -Istream_out/chromecast $(CHROMECAST_CFLAGS)
+libchromecast_plugin_la_LIBADD = $(CHROMECAST_LIBS) $(SOCKET_LIBS)
+CLEANFILES += $(nodist_libchromecast_plugin_la_SOURCES)
libstream_out_chromecast_plugin_la_SOURCES = stream_out/chromecast/cast.cpp stream_out/chromecast/chromecast.h
libstream_out_chromecast_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -Istream_out/chromecast $(CHROMECAST_CFLAGS)
@@ -97,6 +97,6 @@ if ENABLE_SOUT
if BUILD_CHROMECAST
BUILT_SOURCES += stream_out/chromecast/cast_channel.pb.h
sout_LTLIBRARIES += libstream_out_chromecast_plugin.la
-control_LTLIBRARIES += libctrl_chromecast_plugin.la
+control_LTLIBRARIES += libchromecast_plugin.la
endif
endif
More information about the vlc-commits
mailing list