2013-07-16 11:28:28 +00:00
|
|
|
def _add_rst_manual_dependencies(ctx):
|
|
|
|
manpage_sources_basenames = """
|
|
|
|
options.rst ao.rst vo.rst af.rst vf.rst encode.rst
|
|
|
|
input.rst osc.rst lua.rst changes.rst""".split()
|
|
|
|
|
|
|
|
manpage_sources = ['DOCS/man/en/'+x for x in manpage_sources_basenames]
|
|
|
|
|
|
|
|
for manpage_source in manpage_sources:
|
|
|
|
ctx.add_manual_dependency(
|
|
|
|
ctx.path.find_node('DOCS/man/en/mpv.rst'),
|
|
|
|
ctx.path.find_node(manpage_source))
|
|
|
|
|
|
|
|
def _build_man(ctx):
|
|
|
|
ctx(
|
|
|
|
name = 'rst2man',
|
|
|
|
target = 'DOCS/man/en/mpv.1',
|
|
|
|
source = 'DOCS/man/en/mpv.rst',
|
|
|
|
rule = '${RST2MAN} ${SRC} ${TGT}',
|
2013-11-23 10:35:16 +00:00
|
|
|
install_path = ctx.env.MANDIR + '/man1')
|
2013-07-16 11:28:28 +00:00
|
|
|
|
|
|
|
_add_rst_manual_dependencies(ctx)
|
|
|
|
|
|
|
|
def _build_pdf(ctx):
|
|
|
|
from waflib import TaskGen
|
|
|
|
|
|
|
|
TaskGen.declare_chain(
|
|
|
|
name = 'rst2latex',
|
|
|
|
rule = '${RST2LATEX} ${RST2LATEX_FLAGS} ${SRC} ${TGT}',
|
|
|
|
ext_in = '.rst',
|
|
|
|
ext_out = '.tex' )
|
|
|
|
|
|
|
|
TaskGen.declare_chain(
|
|
|
|
name = 'pdflatex',
|
|
|
|
rule = '${PDFLATEX} ${PDFLATEX_FLAGS} ${SRC}; ' * 2,
|
|
|
|
ext_in = '.tex',
|
|
|
|
ext_out = '.pdf',
|
|
|
|
shell = True )
|
|
|
|
|
|
|
|
ctx.env.RST2LATEX_FLAGS = [
|
|
|
|
'--config=' + ctx.srcnode.abspath() + '/DOCS/man/docutils.conf'
|
|
|
|
]
|
|
|
|
|
|
|
|
ctx.env.PDFLATEX_FLAGS = [
|
|
|
|
'--interaction=batchmode',
|
|
|
|
'--output-directory=DOCS/man/en/',
|
|
|
|
'--jobname=mpv'
|
|
|
|
]
|
|
|
|
|
|
|
|
ctx(source = 'DOCS/man/en/mpv.rst')
|
|
|
|
_add_rst_manual_dependencies(ctx)
|
|
|
|
ctx.install_files(ctx.env.DOCDIR, ['DOCS/man/en/mpv.pdf'])
|
|
|
|
|
|
|
|
def build(ctx):
|
|
|
|
ctx.load('waf_customizations')
|
|
|
|
ctx.load('generators.sources')
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "video/out/x11_icon.bin",
|
|
|
|
target = "video/out/x11_icon.inc")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "etc/input.conf",
|
|
|
|
target = "mpvcore/input/input_conf.h")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "video/out/gl_video_shaders.glsl",
|
|
|
|
target = "video/out/gl_video_shaders.h")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "sub/osd_font.otf",
|
|
|
|
target = "sub/osd_font.h")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "mpvcore/player/lua/defaults.lua",
|
|
|
|
target = "mpvcore/player/lua/defaults.inc")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "mpvcore/player/lua/assdraw.lua",
|
|
|
|
target = "mpvcore/player/lua/assdraw.inc")
|
|
|
|
|
|
|
|
ctx.file2string(
|
|
|
|
source = "mpvcore/player/lua/osc.lua",
|
|
|
|
target = "mpvcore/player/lua/osc.inc")
|
|
|
|
|
|
|
|
ctx.matroska_header(
|
|
|
|
source = "demux/ebml.c demux/demux_mkv.c",
|
|
|
|
target = "ebml_types.h")
|
|
|
|
|
|
|
|
ctx.matroska_definitions(
|
|
|
|
source = "demux/ebml.c",
|
|
|
|
target = "ebml_defs.c")
|
|
|
|
|
|
|
|
getch2_c = {
|
|
|
|
'win32': 'osdep/getch2-win.c',
|
|
|
|
}.get(ctx.env.DEST_OS, "osdep/getch2.c")
|
|
|
|
|
|
|
|
timer_c = {
|
|
|
|
'win32': 'osdep/timer-win2.c',
|
|
|
|
'darwin': 'osdep/timer-darwin.c',
|
|
|
|
}.get(ctx.env.DEST_OS, "osdep/timer-linux.c")
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
## Audio
|
|
|
|
( "audio/audio.c" ),
|
|
|
|
( "audio/audio_buffer.c" ),
|
|
|
|
( "audio/chmap.c" ),
|
|
|
|
( "audio/chmap_sel.c" ),
|
|
|
|
( "audio/fmt-conversion.c" ),
|
|
|
|
( "audio/format.c" ),
|
|
|
|
( "audio/mixer.c" ),
|
|
|
|
( "audio/reorder_ch.c" ),
|
|
|
|
( "audio/decode/ad_lavc.c" ),
|
|
|
|
( "audio/decode/ad_mpg123.c", "mpg123" ),
|
|
|
|
( "audio/decode/ad_spdif.c" ),
|
|
|
|
( "audio/decode/dec_audio.c" ),
|
|
|
|
( "audio/filter/af.c" ),
|
|
|
|
( "audio/filter/af_bs2b.c", "libbs2b" ),
|
|
|
|
( "audio/filter/af_center.c" ),
|
|
|
|
( "audio/filter/af_channels.c" ),
|
|
|
|
( "audio/filter/af_convert24.c" ),
|
|
|
|
( "audio/filter/af_convertsignendian.c" ),
|
|
|
|
( "audio/filter/af_delay.c" ),
|
|
|
|
( "audio/filter/af_drc.c" ),
|
|
|
|
( "audio/filter/af_dummy.c" ),
|
|
|
|
( "audio/filter/af_equalizer.c" ),
|
|
|
|
( "audio/filter/af_export.c", "sys-mman-h" ),
|
|
|
|
( "audio/filter/af_extrastereo.c" ),
|
|
|
|
( "audio/filter/af_format.c" ),
|
|
|
|
( "audio/filter/af_hrtf.c" ),
|
|
|
|
( "audio/filter/af_karaoke.c" ),
|
|
|
|
( "audio/filter/af_ladspa.c", "ladspa" ),
|
|
|
|
( "audio/filter/af_lavcac3enc.c" ),
|
|
|
|
( "audio/filter/af_lavfi.c", "af-lavfi" ),
|
|
|
|
( "audio/filter/af_lavrresample.c" ),
|
|
|
|
( "audio/filter/af_pan.c" ),
|
|
|
|
( "audio/filter/af_scaletempo.c" ),
|
|
|
|
( "audio/filter/af_sinesuppress.c" ),
|
|
|
|
( "audio/filter/af_sub.c" ),
|
|
|
|
( "audio/filter/af_surround.c" ),
|
|
|
|
( "audio/filter/af_sweep.c" ),
|
|
|
|
( "audio/filter/af_volume.c" ),
|
|
|
|
( "audio/filter/filter.c" ),
|
|
|
|
( "audio/filter/tools.c" ),
|
|
|
|
( "audio/filter/window.c" ),
|
|
|
|
( "audio/out/ao.c" ),
|
|
|
|
( "audio/out/ao_alsa.c", "alsa" ),
|
|
|
|
( "audio/out/ao_coreaudio.c", "coreaudio" ),
|
|
|
|
( "audio/out/ao_coreaudio_properties.c", "coreaudio" ),
|
|
|
|
( "audio/out/ao_coreaudio_utils.c", "coreaudio" ),
|
|
|
|
( "audio/out/ao_dsound.c", "dsound" ),
|
|
|
|
( "audio/out/ao_jack.c", "jack" ),
|
|
|
|
( "audio/out/ao_lavc.c", "encoding" ),
|
|
|
|
( "audio/out/ao_null.c" ),
|
|
|
|
( "audio/out/ao_openal.c", "openal" ),
|
|
|
|
( "audio/out/ao_oss.c", "oss-audio" ),
|
|
|
|
( "audio/out/ao_pcm.c" ),
|
|
|
|
( "audio/out/ao_portaudio.c", "portaudio" ),
|
|
|
|
( "audio/out/ao_pulse.c", "pulse" ),
|
|
|
|
( "audio/out/ao_rsound.c", "rsound" ),
|
|
|
|
( "audio/out/ao_sdl.c", "sdl" ),
|
|
|
|
( "audio/out/ao_sdl.c", "sdl2" ),
|
|
|
|
( "audio/out/ao_sndio.c", "sndio" ),
|
|
|
|
( "audio/out/ao_wasapi.c", "wasapi" ),
|
|
|
|
|
|
|
|
## Core
|
|
|
|
( "mpvcore/input/input.c" ),
|
|
|
|
( "mpvcore/input/joystick.c", "joystick" ),
|
|
|
|
( "mpvcore/input/lirc.c", "lirc" ),
|
|
|
|
( "mpvcore/player/audio.c" ),
|
|
|
|
( "mpvcore/player/command.c" ),
|
|
|
|
( "mpvcore/player/configfiles.c" ),
|
Add prelimimary (basic, possibly broken) dvdnav support
This readds a more or less completely new dvdnav implementation, though
it's based on the code from before commit 41fbcee. Note that this is
rather basic, and might be broken or not quite usable in many cases.
Most importantly, navigation highlights are not correctly implemented.
This would require changes in the FFmpeg dvdsub decoder (to apply a
different internal CLUT), so supporting it is not really possible right
now. And in fact, I don't think I ever want to support it, because it's
a very small gain for a lot of work. Instead, mpv will display fake
highlights, which are an approximate bounding box around the real
highlights.
Some things like mouse input or switching audio/subtitles stream using
the dvdnav VM are not supported.
Might be quite fragile on transitions: if dvdnav initiates a transition,
and doesn't give us enough mpeg data to initialize video playback, the
player will just quit.
This is added only because some users seem to want it. I don't intend to
make mpv a good DVD player, so the very basic minimum will have to do.
How about you just convert your DVD to proper video files?
2013-12-12 00:44:28 +00:00
|
|
|
( "mpvcore/player/dvdnav.c" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "mpvcore/player/loadfile.c" ),
|
|
|
|
( "mpvcore/player/main.c" ),
|
|
|
|
( "mpvcore/player/misc.c" ),
|
|
|
|
( "mpvcore/player/mp_lua.c", "lua" ),
|
|
|
|
( "mpvcore/player/osd.c" ),
|
|
|
|
( "mpvcore/player/playloop.c" ),
|
|
|
|
( "mpvcore/player/screenshot.c" ),
|
|
|
|
( "mpvcore/player/sub.c" ),
|
|
|
|
( "mpvcore/player/timeline/tl_cue.c" ),
|
|
|
|
( "mpvcore/player/timeline/tl_mpv_edl.c" ),
|
|
|
|
( "mpvcore/player/timeline/tl_matroska.c" ),
|
|
|
|
( "mpvcore/player/video.c" ),
|
|
|
|
( "mpvcore/asxparser.c" ),
|
|
|
|
( "mpvcore/av_common.c" ),
|
|
|
|
( "mpvcore/av_log.c" ),
|
|
|
|
( "mpvcore/av_opts.c" ),
|
|
|
|
( "mpvcore/bstr.c" ),
|
|
|
|
( "mpvcore/charset_conv.c" ),
|
|
|
|
( "mpvcore/codecs.c" ),
|
|
|
|
( "mpvcore/cpudetect.c" ),
|
|
|
|
( "mpvcore/encode_lavc.c", "encoding" ),
|
|
|
|
( "mpvcore/m_config.c" ),
|
|
|
|
( "mpvcore/m_option.c" ),
|
|
|
|
( "mpvcore/m_property.c" ),
|
|
|
|
( "mpvcore/mp_common.c" ),
|
|
|
|
( "mpvcore/mp_msg.c" ),
|
|
|
|
( "mpvcore/mp_ring.c" ),
|
|
|
|
( "mpvcore/options.c" ),
|
|
|
|
( "mpvcore/parser-cfg.c" ),
|
|
|
|
( "mpvcore/parser-mpcmd.c" ),
|
|
|
|
( "mpvcore/path.c" ),
|
|
|
|
( "mpvcore/playlist.c" ),
|
|
|
|
( "mpvcore/playlist_parser.c" ),
|
|
|
|
( "mpvcore/resolve_quvi.c", "libquvi4" ),
|
|
|
|
( "mpvcore/resolve_quvi9.c", "libquvi9" ),
|
|
|
|
( "mpvcore/version.c" ),
|
|
|
|
|
|
|
|
## Demuxers
|
|
|
|
( "demux/codec_tags.c" ),
|
|
|
|
( "demux/demux.c" ),
|
|
|
|
( "demux/demux_cue.c" ),
|
|
|
|
( "demux/demux_edl.c" ),
|
|
|
|
( "demux/demux_lavf.c" ),
|
|
|
|
( "demux/demux_libass.c", "libass"),
|
|
|
|
( "demux/demux_mf.c" ),
|
|
|
|
( "demux/demux_mkv.c" ),
|
|
|
|
( "demux/demux_playlist.c" ),
|
|
|
|
( "demux/demux_raw.c" ),
|
|
|
|
( "demux/demux_subreader.c" ),
|
|
|
|
( "demux/ebml.c" ),
|
|
|
|
( "demux/mf.c" ),
|
|
|
|
|
|
|
|
## Streams
|
|
|
|
( "stream/ai_alsa1x.c", "alsa" ),
|
|
|
|
( "stream/ai_oss.c", "oss-audio" ),
|
|
|
|
( "stream/ai_sndio.c", "sndio" ),
|
|
|
|
( "stream/audio_in.c", "audio-input" ),
|
2013-11-28 18:28:38 +00:00
|
|
|
( "stream/cache.c" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "stream/cdinfo.c", "cdda"),
|
|
|
|
( "stream/cookies.c" ),
|
|
|
|
( "stream/dvb_tune.c", "dvbin" ),
|
|
|
|
( "stream/frequencies.c", "tv" ),
|
|
|
|
( "stream/rar.c" ),
|
|
|
|
( "stream/stream.c" ),
|
|
|
|
( "stream/stream_avdevice.c" ),
|
|
|
|
( "stream/stream_bluray.c", "libbluray" ),
|
|
|
|
( "stream/stream_cdda.c", "cdda" ),
|
|
|
|
( "stream/stream_dvb.c", "dvbin" ),
|
|
|
|
( "stream/stream_dvd.c", "dvdread" ),
|
|
|
|
( "stream/stream_dvd_common.c", "dvdread" ),
|
Add prelimimary (basic, possibly broken) dvdnav support
This readds a more or less completely new dvdnav implementation, though
it's based on the code from before commit 41fbcee. Note that this is
rather basic, and might be broken or not quite usable in many cases.
Most importantly, navigation highlights are not correctly implemented.
This would require changes in the FFmpeg dvdsub decoder (to apply a
different internal CLUT), so supporting it is not really possible right
now. And in fact, I don't think I ever want to support it, because it's
a very small gain for a lot of work. Instead, mpv will display fake
highlights, which are an approximate bounding box around the real
highlights.
Some things like mouse input or switching audio/subtitles stream using
the dvdnav VM are not supported.
Might be quite fragile on transitions: if dvdnav initiates a transition,
and doesn't give us enough mpeg data to initialize video playback, the
player will just quit.
This is added only because some users seem to want it. I don't intend to
make mpv a good DVD player, so the very basic minimum will have to do.
How about you just convert your DVD to proper video files?
2013-12-12 00:44:28 +00:00
|
|
|
( "stream/stream_dvdnav.c", "dvdnav" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "stream/stream_edl.c" ),
|
|
|
|
( "stream/stream_file.c" ),
|
|
|
|
( "stream/stream_lavf.c" ),
|
|
|
|
( "stream/stream_memory.c" ),
|
|
|
|
( "stream/stream_mf.c" ),
|
|
|
|
( "stream/stream_null.c" ),
|
|
|
|
( "stream/stream_pvr.c", "pvr" ),
|
|
|
|
( "stream/stream_radio.c", "radio" ),
|
|
|
|
( "stream/stream_rar.c" ),
|
|
|
|
( "stream/stream_smb.c", "libsmbclient" ),
|
|
|
|
( "stream/stream_tv.c", "tv" ),
|
|
|
|
( "stream/stream_vcd.c", "vcd" ),
|
|
|
|
( "stream/tv.c", "tv" ),
|
|
|
|
( "stream/tvi_dummy.c", "tv" ),
|
|
|
|
( "stream/tvi_v4l2.c", "tv-v4l2"),
|
|
|
|
|
|
|
|
## Subtitles
|
|
|
|
( "sub/ass_mp.c", "libass"),
|
|
|
|
( "sub/dec_sub.c" ),
|
|
|
|
( "sub/draw_bmp.c" ),
|
|
|
|
( "sub/find_subfiles.c" ),
|
|
|
|
( "sub/img_convert.c" ),
|
2013-11-24 11:58:06 +00:00
|
|
|
( "sub/osd.c" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "sub/osd_dummy.c", "dummy-osd" ),
|
|
|
|
( "sub/osd_libass.c", "libass-osd" ),
|
|
|
|
( "sub/sd_ass.c", "libass" ),
|
|
|
|
( "sub/sd_lavc.c" ),
|
|
|
|
( "sub/sd_lavc_conv.c" ),
|
|
|
|
( "sub/sd_lavf_srt.c" ),
|
|
|
|
( "sub/sd_microdvd.c" ),
|
|
|
|
( "sub/sd_movtext.c" ),
|
|
|
|
( "sub/sd_spu.c" ),
|
|
|
|
( "sub/sd_srt.c" ),
|
|
|
|
( "sub/spudec.c" ),
|
|
|
|
|
|
|
|
## Video
|
|
|
|
( "video/csputils.c" ),
|
|
|
|
( "video/fmt-conversion.c" ),
|
|
|
|
( "video/image_writer.c" ),
|
|
|
|
( "video/img_format.c" ),
|
|
|
|
( "video/mp_image.c" ),
|
|
|
|
( "video/mp_image_pool.c" ),
|
|
|
|
( "video/sws_utils.c" ),
|
|
|
|
( "video/vaapi.c", "vaapi" ),
|
|
|
|
( "video/vdpau.c", "vdpau" ),
|
|
|
|
( "video/decode/dec_video.c"),
|
|
|
|
( "video/decode/lavc_dr1.c", "!avutil-refcounting" ),
|
|
|
|
( "video/decode/vaapi.c", "vaapi-hwaccel" ),
|
|
|
|
( "video/decode/vd_lavc.c" ),
|
|
|
|
( "video/decode/vda.c", "vda-hwaccel" ),
|
|
|
|
( "video/decode/vdpau.c", "vdpau-hwaccel" ),
|
|
|
|
( "video/decode/vdpau_old.c", "vdpau-decoder" ),
|
|
|
|
( "video/filter/pullup.c" ),
|
|
|
|
( "video/filter/vf.c" ),
|
|
|
|
( "video/filter/vf_crop.c" ),
|
|
|
|
( "video/filter/vf_delogo.c" ),
|
|
|
|
( "video/filter/vf_divtc.c" ),
|
|
|
|
( "video/filter/vf_dlopen.c", "dlopen" ),
|
|
|
|
( "video/filter/vf_dsize.c" ),
|
|
|
|
( "video/filter/vf_eq.c" ),
|
|
|
|
( "video/filter/vf_expand.c" ),
|
|
|
|
( "video/filter/vf_flip.c" ),
|
|
|
|
( "video/filter/vf_format.c" ),
|
|
|
|
( "video/filter/vf_gradfun.c" ),
|
|
|
|
( "video/filter/vf_hqdn3d.c" ),
|
|
|
|
( "video/filter/vf_ilpack.c" ),
|
|
|
|
( "video/filter/vf_lavfi.c", "vf-lavfi"),
|
|
|
|
( "video/filter/vf_mirror.c" ),
|
|
|
|
( "video/filter/vf_noformat.c" ),
|
|
|
|
( "video/filter/vf_noise.c" ),
|
|
|
|
( "video/filter/vf_phase.c" ),
|
|
|
|
( "video/filter/vf_pp.c", "libpostproc" ),
|
|
|
|
( "video/filter/vf_pullup.c" ),
|
|
|
|
( "video/filter/vf_rotate.c" ),
|
|
|
|
( "video/filter/vf_scale.c" ),
|
|
|
|
( "video/filter/vf_screenshot.c" ),
|
|
|
|
( "video/filter/vf_softpulldown.c" ),
|
|
|
|
( "video/filter/vf_stereo3d.c" ),
|
|
|
|
( "video/filter/vf_sub.c" ),
|
|
|
|
( "video/filter/vf_swapuv.c" ),
|
|
|
|
( "video/filter/vf_unsharp.c" ),
|
|
|
|
( "video/filter/vf_vavpp.c", "vaapi-vpp"),
|
|
|
|
( "video/filter/vf_yadif.c" ),
|
|
|
|
( "video/out/aspect.c" ),
|
|
|
|
( "video/out/bitmap_packer.c" ),
|
|
|
|
( "video/out/cocoa/additions.m", "cocoa" ),
|
|
|
|
( "video/out/cocoa/view.m", "cocoa" ),
|
|
|
|
( "video/out/cocoa/window.m", "cocoa" ),
|
|
|
|
( "video/out/cocoa_common.m", "cocoa" ),
|
|
|
|
( "video/out/dither.c" ),
|
|
|
|
( "video/out/filter_kernels.c" ),
|
|
|
|
( "video/out/gl_cocoa.c", "gl-cocoa" ),
|
|
|
|
( "video/out/gl_common.c", "gl" ),
|
|
|
|
( "video/out/gl_hwdec_vaglx.c", "vaapi-glx" ),
|
2013-11-13 20:59:11 +00:00
|
|
|
( "video/out/gl_hwdec_vda.c", "vda-gl" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "video/out/gl_hwdec_vdpau.c", "vdpau-gl-x11" ),
|
|
|
|
( "video/out/gl_lcms.c", "gl" ),
|
|
|
|
( "video/out/gl_osd.c", "gl" ),
|
|
|
|
( "video/out/gl_video.c", "gl" ),
|
|
|
|
( "video/out/gl_w32.c", "gl-win32" ),
|
|
|
|
( "video/out/gl_wayland.c", "gl-wayland" ),
|
|
|
|
( "video/out/gl_x11.c", "gl-x11" ),
|
|
|
|
( "video/out/pnm_loader.c", "gl" ),
|
|
|
|
( "video/out/vo.c" ),
|
|
|
|
( "video/out/vo_caca.c", "caca" ),
|
|
|
|
( "video/out/vo_corevideo.c", "corevideo"),
|
|
|
|
( "video/out/vo_direct3d.c", "direct3d" ),
|
|
|
|
( "video/out/vo_image.c" ),
|
|
|
|
( "video/out/vo_lavc.c", "encoding" ),
|
|
|
|
( "video/out/vo_null.c" ),
|
|
|
|
( "video/out/vo_opengl.c", "gl" ),
|
|
|
|
( "video/out/vo_opengl_old.c", "gl" ),
|
|
|
|
( "video/out/vo_sdl.c", "sdl2" ),
|
|
|
|
( "video/out/vo_vaapi.c", "vaapi" ),
|
|
|
|
( "video/out/vo_vdpau.c", "vdpau" ),
|
|
|
|
( "video/out/vo_wayland.c", "wayland" ),
|
|
|
|
( "video/out/vo_x11.c" , "x11" ),
|
|
|
|
( "video/out/vo_xv.c", "xv" ),
|
2013-11-22 19:58:48 +00:00
|
|
|
( "video/out/w32_common.c", "gdi" ),
|
2013-07-16 11:28:28 +00:00
|
|
|
( "video/out/wayland_common.c", "wayland" ),
|
|
|
|
( "video/out/x11_common.c", "x11" ),
|
|
|
|
|
|
|
|
## osdep
|
|
|
|
( getch2_c ),
|
|
|
|
( "osdep/io.c" ),
|
|
|
|
( "osdep/numcores.c"),
|
|
|
|
( "osdep/timer.c" ),
|
|
|
|
( timer_c ),
|
|
|
|
( "osdep/threads.c" ),
|
|
|
|
|
|
|
|
( "osdep/ar/HIDRemote.m", "cocoa" ),
|
|
|
|
( "osdep/macosx_application.m", "cocoa" ),
|
|
|
|
( "osdep/macosx_events.m", "cocoa" ),
|
|
|
|
( "osdep/path-macosx.m", "cocoa" ),
|
|
|
|
|
|
|
|
( "osdep/path-win.c", "os-win32" ),
|
|
|
|
( "osdep/path-win.c", "os-cygwin" ),
|
|
|
|
( "osdep/glob-win.c", "glob-win32-replacement" ),
|
|
|
|
( "osdep/priority.c", "priority" ),
|
|
|
|
( "osdep/mpv.rc", "win32-executable" ),
|
|
|
|
|
|
|
|
## tree_allocator
|
|
|
|
"ta/ta.c", "ta/ta_talloc.c", "ta/ta_utils.c"
|
|
|
|
]
|
|
|
|
|
|
|
|
if ctx.dependency_satisfied('win32-executable'):
|
|
|
|
from waflib import TaskGen
|
|
|
|
|
|
|
|
TaskGen.declare_chain(
|
|
|
|
name = 'windres',
|
|
|
|
rule = '${WINDRES} ${WINDRES_FLAGS} ${SRC} ${TGT}',
|
|
|
|
ext_in = '.rc',
|
|
|
|
ext_out = '-rc.o',
|
|
|
|
color = 'PINK')
|
|
|
|
|
|
|
|
ctx.env.WINDRES_FLAGS = [
|
|
|
|
'--include-dir={0}'.format(ctx.bldnode.abspath()),
|
|
|
|
'--include-dir={0}'.format(ctx.srcnode.abspath())
|
|
|
|
]
|
|
|
|
|
|
|
|
for node in 'osdep/mpv.exe.manifest etc/mpv-icon.ico'.split():
|
|
|
|
ctx.add_manual_dependency(
|
|
|
|
ctx.path.find_node('osdep/mpv.rc'),
|
|
|
|
ctx.path.find_node(node))
|
|
|
|
|
|
|
|
cprog_kwargs = {}
|
|
|
|
if ctx.dependency_satisfied('macosx-bundle'):
|
|
|
|
import os
|
|
|
|
basepath = 'TOOLS/osxbundle/mpv.app/Contents'
|
|
|
|
cprog_kwargs['mac_app'] = True
|
|
|
|
cprog_kwargs['mac_plist'] = os.path.join(basepath, 'Info.plist')
|
|
|
|
|
|
|
|
resources_glob = os.path.join(basepath, 'Resources', '*')
|
|
|
|
resources_nodes = ctx.srcnode.ant_glob(resources_glob)
|
|
|
|
resources = [node.srcpath() for node in resources_nodes]
|
|
|
|
cprog_kwargs['mac_resources'] = resources
|
|
|
|
|
2013-11-25 07:19:18 +00:00
|
|
|
for resource in resources:
|
|
|
|
res_basename = os.path.basename(resource)
|
|
|
|
install_name = '/mpv.app/Contents/Resources/' + res_basename
|
|
|
|
ctx.install_as(ctx.env.BINDIR + install_name, resource)
|
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
ctx(
|
|
|
|
target = "mpv",
|
|
|
|
source = ctx.filtered_sources(sources),
|
|
|
|
use = ctx.dependencies_use(),
|
|
|
|
includes = [ctx.bldnode.abspath(), ctx.srcnode.abspath()] + \
|
|
|
|
ctx.dependencies_includes(),
|
|
|
|
features = "c cprogram",
|
|
|
|
install_path = ctx.env.BINDIR,
|
|
|
|
**cprog_kwargs
|
|
|
|
)
|
|
|
|
|
2013-11-24 21:21:17 +00:00
|
|
|
if ctx.dependency_satisfied('macosx-bundle'):
|
2013-12-04 20:36:02 +00:00
|
|
|
from waflib import Utils
|
|
|
|
ctx.install_files(ctx.env.BINDIR, 'mpv', chmod=Utils.O755)
|
2013-11-24 21:21:17 +00:00
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
if ctx.dependency_satisfied("vf-dlopen-filters"):
|
|
|
|
dlfilters = "showqscale telecine tile rectangle framestep \
|
|
|
|
ildetect".split()
|
|
|
|
for dlfilter in dlfilters:
|
|
|
|
ctx(
|
|
|
|
target = dlfilter,
|
|
|
|
source = ['TOOLS/vf_dlopen/'+dlfilter+'.c',
|
|
|
|
'TOOLS/vf_dlopen/filterutils.c'],
|
|
|
|
includes = [ctx.srcnode.abspath() + '/video/filter'],
|
|
|
|
features = 'c cshlib',
|
|
|
|
install_path = ctx.env.LIBDIR + '/mpv' )
|
|
|
|
|
|
|
|
if ctx.dependency_satisfied('manpage-build'):
|
|
|
|
_build_man(ctx)
|
|
|
|
|
|
|
|
if ctx.dependency_satisfied('pdf-build'):
|
|
|
|
_build_pdf(ctx)
|
|
|
|
|
|
|
|
ctx.install_files(
|
|
|
|
ctx.env.DATADIR + '/applications',
|
|
|
|
['etc/mpv.desktop'] )
|
|
|
|
|
|
|
|
for size in '16x16 32x32 64x64'.split():
|
|
|
|
ctx.install_as(
|
|
|
|
ctx.env.DATADIR + '/icons/hicolor/' + size + '/apps/mpv.png',
|
|
|
|
'etc/mpv-icon-8bit-' + size + '.png')
|