[vlc-devel] [PATCH] core: move input.c to input_internal.c
Thomas Guillem
thomas at gllm.fr
Thu Jul 5 16:22:43 CEST 2018
Leave input.c for the future "input manager", that will be called vlc_input_t.
All current input_thread_t functions will be hidden in the future, the new
vlc_input_t will be the only way to control an input.
---
po/POTFILES.in | 2 +-
src/Makefile.am | 2 +-
src/input/{input.c => input_internal.c} | 0
3 files changed, 2 insertions(+), 2 deletions(-)
rename src/input/{input.c => input_internal.c} (100%)
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 6bf6d4f083..1ba43b579e 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -75,7 +75,7 @@ src/input/demux.c
src/input/demux.h
src/input/es_out.c
src/input/es_out.h
-src/input/input.c
+src/input/input_internal.c
src/input/input_internal.h
src/input/item.c
src/input/meta.c
diff --git a/src/Makefile.am b/src/Makefile.am
index f9106a17c5..166beb0b76 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -240,7 +240,7 @@ libvlccore_la_SOURCES = \
input/es_out.c \
input/es_out_timeshift.c \
input/event.c \
- input/input.c \
+ input/input_internal.c \
input/info.h \
input/meta.c \
clock/input_clock.h \
diff --git a/src/input/input.c b/src/input/input_internal.c
similarity index 100%
rename from src/input/input.c
rename to src/input/input_internal.c
--
2.18.0
More information about the vlc-devel
mailing list