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

Move text_renderer/ out of misc/

parent 6c6e9b7f
...@@ -4411,6 +4411,7 @@ AC_CONFIG_FILES([ ...@@ -4411,6 +4411,7 @@ AC_CONFIG_FILES([
modules/stream_filter/Makefile modules/stream_filter/Makefile
modules/stream_out/Makefile modules/stream_out/Makefile
modules/stream_out/transcode/Makefile modules/stream_out/transcode/Makefile
modules/text_renderer/Makefile
modules/video_chroma/Makefile modules/video_chroma/Makefile
modules/video_filter/Makefile modules/video_filter/Makefile
modules/video_filter/dynamicoverlay/Makefile modules/video_filter/dynamicoverlay/Makefile
......
...@@ -14,6 +14,7 @@ BASE_SUBDIRS = \ ...@@ -14,6 +14,7 @@ BASE_SUBDIRS = \
packetizer \ packetizer \
services_discovery \ services_discovery \
stream_filter \ stream_filter \
text_renderer \
video_chroma \ video_chroma \
video_filter \ video_filter \
video_output \ video_output \
......
...@@ -3,13 +3,6 @@ BASE_SUBDIRS = notify playlist stats osd ...@@ -3,13 +3,6 @@ BASE_SUBDIRS = notify playlist stats osd
SUBDIRS = $(BASE_SUBDIRS) SUBDIRS = $(BASE_SUBDIRS)
DIST_SUBDIRS = $(BASE_SUBDIRS) DIST_SUBDIRS = $(BASE_SUBDIRS)
SOURCES_freetype = text_renderer/freetype.c
SOURCES_tdummy = text_renderer/tdummy.c
SOURCES_win32text = text_renderer/win32text.c
SOURCES_quartztext = text_renderer/quartztext.c
libvlc_LTLIBRARIES += libtdummy_plugin.la
SOURCES_svg = text_renderer/svg.c
SOURCES_logger = logger.c SOURCES_logger = logger.c
SOURCES_vod_rtsp = rtsp.c SOURCES_vod_rtsp = rtsp.c
SOURCES_gnutls = gnutls.c dhparams.h SOURCES_gnutls = gnutls.c dhparams.h
...@@ -41,9 +34,6 @@ libvlc_LTLIBRARIES += \ ...@@ -41,9 +34,6 @@ libvlc_LTLIBRARIES += \
libaudioscrobbler_plugin.la \ libaudioscrobbler_plugin.la \
liblogger_plugin.la liblogger_plugin.la
if HAVE_WINCE
libvlc_LTLIBRARIES += libwin32text_plugin.la
endif
if ENABLE_SOUT if ENABLE_SOUT
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
libvod_rtsp_plugin.la \ libvod_rtsp_plugin.la \
......
SOURCES_freetype = freetype.c
SOURCES_quartztext = quartztext.c
SOURCES_svg = svg.c
SOURCES_tdummy = tdummy.c
SOURCES_win32text = win32text.c
libvlc_LTLIBRARIES += libtdummy_plugin.la
if HAVE_WINCE
libvlc_LTLIBRARIES += libwin32text_plugin.la
endif
...@@ -940,11 +940,6 @@ modules/misc/stats/demux.c ...@@ -940,11 +940,6 @@ modules/misc/stats/demux.c
modules/misc/stats/encoder.c modules/misc/stats/encoder.c
modules/misc/stats/stats.c modules/misc/stats/stats.c
modules/misc/stats/stats.h modules/misc/stats/stats.h
modules/misc/text_renderer/freetype.c
modules/misc/text_renderer/quartztext.c
modules/misc/text_renderer/svg.c
modules/misc/text_renderer/tdummy.c
modules/misc/text_renderer/win32text.c
modules/misc/xml/libxml.c modules/misc/xml/libxml.c
modules/mmx/memcpy.c modules/mmx/memcpy.c
modules/mmxext/memcpy.c modules/mmxext/memcpy.c
...@@ -1006,6 +1001,11 @@ modules/stream_out/smem.c ...@@ -1006,6 +1001,11 @@ modules/stream_out/smem.c
modules/stream_out/standard.c modules/stream_out/standard.c
modules/stream_out/switcher.c modules/stream_out/switcher.c
modules/stream_out/transcode/transcode.c modules/stream_out/transcode/transcode.c
modules/text_renderer/freetype.c
modules/text_renderer/quartztext.c
modules/text_renderer/svg.c
modules/text_renderer/tdummy.c
modules/text_renderer/win32text.c
modules/video_chroma/grey_yuv.c modules/video_chroma/grey_yuv.c
modules/video_chroma/i420_rgb.c modules/video_chroma/i420_rgb.c
modules/video_chroma/i420_rgb.h modules/video_chroma/i420_rgb.h
......
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