You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.9 KiB
75 lines
1.9 KiB
# Text renderer modules
|
|
# Modules that are used to render subtitles and OSD text
|
|
|
|
# Dummy text renderer
|
|
vlc_modules += {
|
|
'name' : 'tdummy',
|
|
'sources' : files('tdummy.c')
|
|
}
|
|
|
|
# Freetype text renderer
|
|
freetype_deps = [freetype_dep, m_lib]
|
|
freetype_srcs = files(
|
|
'freetype/freetype.c',
|
|
'freetype/platform_fonts.c',
|
|
'freetype/text_layout.c',
|
|
'freetype/ftcache.c',
|
|
'freetype/lru.c',
|
|
)
|
|
freetype_cppargs = []
|
|
if host_system == 'windows'
|
|
freetype_srcs += files('freetype/fonts/dwrite.cpp')
|
|
freetype_cppargs += libcom_cppflags
|
|
# TODO: Don't add this file for UWP builds
|
|
freetype_srcs += files('freetype/fonts/win32.c')
|
|
freetype_deps += [ cc.find_library('dwrite', required: true) ]
|
|
elif host_system == 'darwin'
|
|
freetype_srcs += files('freetype/fonts/darwin.c')
|
|
freetype_deps += [corefoundation_dep, coretext_dep]
|
|
endif
|
|
# TODO: Anroid-specific sources
|
|
# TODO: Fribidi support
|
|
# TODO: Harfbuzz support
|
|
if freetype_dep.found()
|
|
vlc_modules += {
|
|
'name' : 'freetype',
|
|
'sources' : freetype_srcs,
|
|
'dependencies' : freetype_deps,
|
|
'cpp_args' : freetype_cppargs
|
|
}
|
|
endif
|
|
|
|
# SVG plugin
|
|
if rsvg_dep.found()
|
|
vlc_modules += {
|
|
'name' : 'svg',
|
|
'sources' : files('svg.c'),
|
|
'dependencies' : [rsvg_dep]
|
|
}
|
|
endif
|
|
|
|
# macOS text to speech
|
|
if have_osx
|
|
vlc_modules += {
|
|
'name' : 'nsspeechsynthesizer',
|
|
'sources' : files('nsspeechsynthesizer.m'),
|
|
'dependencies' : [cocoa_dep]
|
|
}
|
|
endif
|
|
|
|
# Windows SAPI text to speech
|
|
if host_system == 'windows'
|
|
have_sapi = cpp.has_type('ISpObjectToken', prefix: '\n'.join([
|
|
'#include <windows.h>',
|
|
'#include <sapi.h>',
|
|
'#include <sphelper.h>'
|
|
]))
|
|
|
|
if have_sapi
|
|
vlc_modules += {
|
|
'name' : 'sapi',
|
|
'sources' : files('sapi.cpp'),
|
|
'cpp_args' : libcom_cppflags
|
|
}
|
|
endif
|
|
endif
|
|
|