Commit ad2d4c2a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove recursion into modules/mux/mpeg/

parent 9bc110c4
...@@ -4156,7 +4156,6 @@ AC_CONFIG_FILES([ ...@@ -4156,7 +4156,6 @@ AC_CONFIG_FILES([
modules/misc/stats/Makefile modules/misc/stats/Makefile
modules/media_library/Makefile modules/media_library/Makefile
modules/mux/Makefile modules/mux/Makefile
modules/mux/mpeg/Makefile
modules/notify/Makefile modules/notify/Makefile
modules/packetizer/Makefile modules/packetizer/Makefile
modules/services_discovery/Makefile modules/services_discovery/Makefile
......
SUBDIRS = mpeg
SOURCES_mux_dummy = dummy.c SOURCES_mux_dummy = dummy.c
SOURCES_mux_avi = avi.c SOURCES_mux_avi = avi.c
SOURCES_mux_ogg = ogg.c SOURCES_mux_ogg = ogg.c
...@@ -16,6 +15,13 @@ libvlc_LTLIBRARIES += \ ...@@ -16,6 +15,13 @@ libvlc_LTLIBRARIES += \
libmux_mpjpeg_plugin.la \ libmux_mpjpeg_plugin.la \
$(NULL) $(NULL)
libmux_ps_plugin_la_SOURCES = \
mpeg/pes.c mpeg/pes.h \
mpeg/ps.c mpeg/bits.h
libmux_ps_plugin_la_CFLAGS = $(AM_CLFAGS)
libmux_ps_plugin_la_LIBADD = $(AM_LIBADD)
libvlc_LTLIBRARIES += libmux_ps_plugin.la
libmux_ts_plugin_la_SOURCES = \ libmux_ts_plugin_la_SOURCES = \
mpeg/pes.c mpeg/pes.h \ mpeg/pes.c mpeg/pes.h \
mpeg/csa.c mpeg/csa.h \ mpeg/csa.c mpeg/csa.h \
......
SOURCES_mux_ps = ps.c \
pes.c \
pes.h \
bits.h \
$(NULL)
libvlc_LTLIBRARIES += libmux_ps_plugin.la
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment