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

Remove recursion into modules/stream_out/transcode/

parent ad2d4c2a
...@@ -4162,7 +4162,6 @@ AC_CONFIG_FILES([ ...@@ -4162,7 +4162,6 @@ AC_CONFIG_FILES([
modules/stream_filter/Makefile modules/stream_filter/Makefile
modules/stream_filter/dash/Makefile modules/stream_filter/dash/Makefile
modules/stream_out/Makefile modules/stream_out/Makefile
modules/stream_out/transcode/Makefile
modules/text_renderer/Makefile modules/text_renderer/Makefile
modules/video_chroma/Makefile modules/video_chroma/Makefile
modules/video_filter/Makefile modules/video_filter/Makefile
......
SUBDIRS = transcode
SOURCES_stream_out_dummy = dummy.c SOURCES_stream_out_dummy = dummy.c
SOURCES_stream_out_delay = delay.c SOURCES_stream_out_delay = delay.c
SOURCES_stream_out_description = description.c SOURCES_stream_out_description = description.c
...@@ -17,6 +15,12 @@ SOURCES_stream_out_smem = smem.c ...@@ -17,6 +15,12 @@ SOURCES_stream_out_smem = smem.c
SOURCES_stream_out_setid = setid.c SOURCES_stream_out_setid = setid.c
SOURCES_stream_out_langfromtelx = langfromtelx.c SOURCES_stream_out_langfromtelx = langfromtelx.c
libstream_out_transcode_plugin_la_SOURCES = \
transcode/transcode.c transcode/transcode.h \
transcode/osd.c transcode/spu.c transcode/audio.c transcode/video.c
libstream_out_transcode_plugin_la_CFLAGS = $(AM_CFLAGS)
libstream_out_transcode_plugin_la_LIBADD = $(AM_LIBADD)
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
libstream_out_dummy_plugin.la \ libstream_out_dummy_plugin.la \
libstream_out_delay_plugin.la \ libstream_out_delay_plugin.la \
...@@ -33,7 +37,7 @@ libvlc_LTLIBRARIES += \ ...@@ -33,7 +37,7 @@ libvlc_LTLIBRARIES += \
libstream_out_smem_plugin.la \ libstream_out_smem_plugin.la \
libstream_out_setid_plugin.la \ libstream_out_setid_plugin.la \
libstream_out_langfromtelx_plugin.la \ libstream_out_langfromtelx_plugin.la \
$(NULL) libstream_out_transcode_plugin.la
# RTP plugin # RTP plugin
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
......
SOURCES_stream_out_transcode = transcode.c transcode.h \
osd.c \
spu.c \
audio.c \
video.c
libvlc_LTLIBRARIES += libstream_out_transcode_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