]> git.sesse.net Git - vlc/blobdiff - src/Makefile.am
Clean up input_item_t functions and usages.
[vlc] / src / Makefile.am
index cc7c9322621f2a582c9d1c13adafa7ca1a7aae5c..48fda22c835b7e38e6fe7052ba4b3558609c297a 100644 (file)
@@ -212,6 +212,7 @@ EXTRA_libvlccore_la_SOURCES = \
        $(SOURCES_libvlc_other) \
        $(SOURCES_libvlc_dirent) \
        $(SOURCES_libvlc_getopt) \
+       $(SOURCES_libvlc_httpd) \
        $(SOURCES_libvlc_sout) \
        $(SOURCES_libvlc_vlm) \
        $(NULL)
@@ -242,6 +243,9 @@ endif
 if BUILD_GETOPT
 libvlccore_la_SOURCES += $(SOURCES_libvlc_getopt)
 endif
+if BUILD_HTTPD
+libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
+endif
 if ENABLE_SOUT
 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
 if ENABLE_VLM
@@ -281,6 +285,7 @@ SOURCES_libvlc_common = \
        libvlc.c \
        libvlc.h \
        libvlc-module.c \
+       missing.c \
        version.c \
        interface/interface.h \
        interface/interface.c \
@@ -304,6 +309,8 @@ SOURCES_libvlc_common = \
        input/decoder_synchro.c \
        input/demux.c \
        input/es_out.c \
+       input/es_out_timeshift.c \
+       input/event.c \
        input/input.c \
        input/meta.c \
        input/access.h \
@@ -311,10 +318,14 @@ SOURCES_libvlc_common = \
        input/decoder.h \
        input/demux.h \
        input/es_out.h \
+       input/es_out_timeshift.h \
+       input/event.h \
+       input/stream.h \
        input/input_internal.h \
+       input/input_interface.h \
        input/vlm_internal.h \
        input/stream.c \
-       input/mem_stream.c \
+       input/stream_memory.c \
        input/subtitles.c \
        input/var.c \
        video_output/video_output.c \
@@ -325,6 +336,7 @@ SOURCES_libvlc_common = \
        video_output/vout_subpictures.c \
        video_output/vout_intf.c \
        video_output/vout_internal.h \
+       video_output/vout_control.h \
        audio_output/aout_internal.h \
        audio_output/common.c \
        audio_output/dec.c \
@@ -341,13 +353,13 @@ SOURCES_libvlc_common = \
        network/io.c \
        network/tcp.c \
        network/udp.c \
-       network/httpd.c \
        network/rootbind.c \
        network/tls.c \
        network/poll.c \
        text/charset.c \
        text/strings.c \
        text/unicode.c \
+       text/filesystem.c \
        text/wincp.c \
        text/iso_lang.c \
        text/iso-639_def.h \
@@ -387,6 +399,10 @@ SOURCES_libvlc_common = \
        misc/filter_chain.c \
        $(NULL)
 
+SOURCES_libvlc_httpd = \
+       network/httpd.c \
+       $(NULL)
+
 SOURCES_libvlc_sout = \
        stream_output/stream_output.c \
        stream_output/stream_output.h \