vlc | branch: master | Marvin Scholz <[email protected]> | Thu Feb 7 01:13:13 2019 +0100| [6b5477551fa73fa7b64e9136fa4666750c221778] | committer: Rémi Denis-Courmont
lua: Rename demux to stream_filter This is since some time a stream filter and not a demuxer anymore, therefore this should be named stream_filter to not cause confusion about that. Signed-off-by: Rémi Denis-Courmont <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6b5477551fa73fa7b64e9136fa4666750c221778 --- modules/lua/Makefile.am | 2 +- modules/lua/{demux.c => stream_filter.c} | 2 +- po/POTFILES.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/lua/Makefile.am b/modules/lua/Makefile.am index 059c4eca4d..1d5ef6fa1f 100644 --- a/modules/lua/Makefile.am +++ b/modules/lua/Makefile.am @@ -5,7 +5,7 @@ liblua_plugin_la_SOURCES = \ lua/extension_thread.c \ lua/intf.c \ lua/meta.c \ - lua/demux.c \ + lua/stream_filter.c \ lua/services_discovery.c \ lua/vlc.c lua/vlc.h \ lua/libs.h \ diff --git a/modules/lua/demux.c b/modules/lua/stream_filter.c similarity index 99% rename from modules/lua/demux.c rename to modules/lua/stream_filter.c index 36b2587b5e..cc4bd29ef5 100644 --- a/modules/lua/demux.c +++ b/modules/lua/stream_filter.c @@ -1,5 +1,5 @@ /***************************************************************************** - * demux.c : Lua playlist demux module + * stream_filter.c : Lua playlist stream filter module ***************************************************************************** * Copyright (C) 2007-2008 the VideoLAN team * diff --git a/po/POTFILES.in b/po/POTFILES.in index 7d313257b0..b1ea5b6147 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1027,7 +1027,7 @@ modules/logger/console.c modules/logger/file.c modules/logger/journal.c modules/logger/syslog.c -modules/lua/demux.c +modules/lua/stream_filter.c modules/lua/extension.c modules/lua/libs/gettext.c modules/lua/intf.c _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
