mirror of
https://github.com/mpv-player/mpv
synced 2025-01-12 18:02:36 +00:00
01cf896a2f
Add a VO command (VOCTRL_SCREENSHOT) which requests a screenshot directly from the VO. If VO support is available, screenshots will be taken instantly (no more 1 or 2 frames delay). Taking screenshots when hardware decoding is in use will also work (vdpau). Additionally, the screenshots will now use the same colorspace as the video display. Change the central MPContext to be allocated with talloc so that it can be used as a talloc parent context. This commit does not yet implement the functionality for any VO (added in subsequent commits). The old screenshot video filter is not needed anymore if VO support is present, and in that case will not be used even if it is present in the filter chain. If VO support is not available then the filter is used like before. Note that the filter still has some of the old problems, such as delaying the screenshot by at least 1 frame.
842 lines
33 KiB
Makefile
842 lines
33 KiB
Makefile
# MPlayer Makefile
|
|
#
|
|
# copyright (c) 2008 Diego Biurrun
|
|
# Rewritten entirely from a set of Makefiles written by Arpi and many others.
|
|
#
|
|
# This file is part of MPlayer.
|
|
#
|
|
# MPlayer is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# MPlayer is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
include config.mak
|
|
|
|
###### variable declarations #######
|
|
|
|
SRCS_AUDIO_INPUT-$(ALSA1X) += stream/ai_alsa1x.c
|
|
SRCS_AUDIO_INPUT-$(ALSA9) += stream/ai_alsa.c
|
|
SRCS_AUDIO_INPUT-$(OSS) += stream/ai_oss.c
|
|
SRCS_COMMON-$(AUDIO_INPUT) += $(SRCS_AUDIO_INPUT-yes)
|
|
SRCS_COMMON-$(BITMAP_FONT) += sub/font_load.c
|
|
SRCS_COMMON-$(CDDA) += stream/stream_cdda.c \
|
|
stream/cdinfo.c
|
|
SRCS_COMMON-$(CDDB) += stream/stream_cddb.c
|
|
SRCS_COMMON-$(DVBIN) += stream/dvb_tune.c \
|
|
stream/stream_dvb.c
|
|
SRCS_COMMON-$(DVDNAV) += stream/stream_dvdnav.c
|
|
SRCS_COMMON-$(DVDNAV_INTERNAL) += libdvdnav/dvdnav.c \
|
|
libdvdnav/highlight.c \
|
|
libdvdnav/navigation.c \
|
|
libdvdnav/read_cache.c \
|
|
libdvdnav/remap.c \
|
|
libdvdnav/searching.c \
|
|
libdvdnav/settings.c \
|
|
libdvdnav/vm/decoder.c \
|
|
libdvdnav/vm/vm.c \
|
|
libdvdnav/vm/vmcmd.c \
|
|
|
|
SRCS_COMMON-$(DVDREAD) += stream/stream_dvd.c \
|
|
stream/stream_dvd_common.c
|
|
SRCS_COMMON-$(DVDREAD_INTERNAL) += libdvdread4/bitreader.c \
|
|
libdvdread4/dvd_input.c \
|
|
libdvdread4/dvd_reader.c \
|
|
libdvdread4/dvd_udf.c \
|
|
libdvdread4/ifo_print.c \
|
|
libdvdread4/ifo_read.c \
|
|
libdvdread4/md5.c \
|
|
libdvdread4/nav_print.c \
|
|
libdvdread4/nav_read.c \
|
|
|
|
SRCS_COMMON-$(FAAD) += libmpcodecs/ad_faad.c
|
|
SRCS_COMMON-$(FASTMEMCPY) += libvo/aclib.c
|
|
SRCS_COMMON-$(FFMPEG) += libmpcodecs/vf_pp.c \
|
|
av_opts.c \
|
|
libaf/af_lavcac3enc.c \
|
|
libaf/af_lavcresample.c \
|
|
libmpcodecs/ad_ffmpeg.c \
|
|
libmpcodecs/vd_ffmpeg.c \
|
|
libmpcodecs/vf_lavc.c \
|
|
libmpcodecs/vf_lavcdeint.c \
|
|
libmpcodecs/vf_screenshot.c \
|
|
libmpcodecs/vf_uspp.c \
|
|
libmpdemux/demux_lavf.c \
|
|
stream/stream_ffmpeg.c \
|
|
sub/av_sub.c \
|
|
|
|
# Requires a new enough libavutil that installs eval.h
|
|
SRCS_COMMON-$(FFMPEG_EVAL_API) += libmpcodecs/vf_geq.c \
|
|
libmpcodecs/vf_qp.c \
|
|
|
|
# These filters use private headers and do not work with shared libavcodec.
|
|
SRCS_COMMON-$(FFMPEG_INTERNALS) += libmpcodecs/vf_fspp.c \
|
|
libmpcodecs/vf_mcdeint.c \
|
|
libmpcodecs/vf_spp.c \
|
|
|
|
SRCS_COMMON-$(FREETYPE) += sub/font_load_ft.c
|
|
SRCS_COMMON-$(FTP) += stream/stream_ftp.c
|
|
SRCS_COMMON-$(GIF) += libmpdemux/demux_gif.c
|
|
SRCS_COMMON-$(HAVE_POSIX_SELECT) += libmpcodecs/vf_bmovl.c
|
|
SRCS_COMMON-$(HAVE_SYS_MMAN_H) += libaf/af_export.c osdep/mmap_anon.c
|
|
SRCS_COMMON-$(JPEG) += libmpcodecs/vd_ijpg.c
|
|
SRCS_COMMON-$(LADSPA) += libaf/af_ladspa.c
|
|
SRCS_COMMON-$(LIBA52) += libmpcodecs/ad_liba52.c
|
|
SRCS_COMMON-$(LIBASS) += libmpcodecs/vf_ass.c \
|
|
sub/ass_mp.c \
|
|
sub/sd_ass.c \
|
|
|
|
SRCS_COMMON-$(LIBBLURAY) += stream/stream_bluray.c
|
|
SRCS_COMMON-$(LIBBS2B) += libaf/af_bs2b.c
|
|
SRCS_COMMON-$(LIBDCA) += libmpcodecs/ad_libdca.c
|
|
SRCS_COMMON-$(LIBDV) += libmpcodecs/ad_libdv.c \
|
|
libmpcodecs/vd_libdv.c \
|
|
libmpdemux/demux_rawdv.c
|
|
SRCS_COMMON-$(LIBDVDCSS_INTERNAL) += libdvdcss/css.c \
|
|
libdvdcss/device.c \
|
|
libdvdcss/error.c \
|
|
libdvdcss/ioctl.c \
|
|
libdvdcss/libdvdcss.c \
|
|
|
|
SRCS_COMMON-$(LIBMAD) += libmpcodecs/ad_libmad.c
|
|
|
|
SRCS_COMMON-$(LIBNEMESI) += libmpdemux/demux_nemesi.c \
|
|
stream/stream_nemesi.c
|
|
SRCS_COMMON-$(LIBNUT) += libmpdemux/demux_nut.c
|
|
SRCS_COMMON-$(LIBSMBCLIENT) += stream/stream_smb.c
|
|
|
|
SRCS_COMMON-$(LIBTHEORA) += libmpcodecs/vd_theora.c
|
|
SRCS_COMMON-$(LIVE555) += libmpdemux/demux_rtp.cpp \
|
|
libmpdemux/demux_rtp_codec.cpp \
|
|
stream/stream_live555.c
|
|
SRCS_COMMON-$(MACOSX_FINDER) += osdep/macosx_finder_args.c
|
|
SRCS_COMMON-$(MNG) += libmpdemux/demux_mng.c
|
|
SRCS_COMMON-$(MPG123) += libmpcodecs/ad_mpg123.c
|
|
|
|
SRCS_COMMON-$(MUSEPACK) += libmpcodecs/ad_mpc.c \
|
|
libmpdemux/demux_mpc.c
|
|
SRCS_COMMON-$(NATIVE_RTSP) += stream/stream_rtsp.c \
|
|
stream/freesdp/common.c \
|
|
stream/freesdp/errorlist.c \
|
|
stream/freesdp/parser.c \
|
|
stream/librtsp/rtsp.c \
|
|
stream/librtsp/rtsp_rtp.c \
|
|
stream/librtsp/rtsp_session.c \
|
|
|
|
SRCS_COMMON-$(NEED_GETTIMEOFDAY) += osdep/gettimeofday.c
|
|
SRCS_COMMON-$(NEED_GLOB) += osdep/glob-win.c
|
|
SRCS_COMMON-$(NEED_MMAP) += osdep/mmap-os2.c
|
|
SRCS_COMMON-$(NEED_SETENV) += osdep/setenv.c
|
|
SRCS_COMMON-$(NEED_SHMEM) += osdep/shmem.c
|
|
SRCS_COMMON-$(NEED_STRSEP) += osdep/strsep.c
|
|
SRCS_COMMON-$(NEED_SWAB) += osdep/swab.c
|
|
SRCS_COMMON-$(NEED_VSSCANF) += osdep/vsscanf.c
|
|
SRCS_COMMON-$(NETWORKING) += stream/stream_netstream.c \
|
|
stream/asf_mmst_streaming.c \
|
|
stream/asf_streaming.c \
|
|
stream/cookies.c \
|
|
stream/http.c \
|
|
stream/network.c \
|
|
stream/pnm.c \
|
|
stream/rtp.c \
|
|
stream/udp.c \
|
|
stream/tcp.c \
|
|
stream/stream_rtp.c \
|
|
stream/stream_udp.c \
|
|
stream/librtsp/rtsp.c \
|
|
stream/realrtsp/asmrp.c \
|
|
stream/realrtsp/real.c \
|
|
stream/realrtsp/rmff.c \
|
|
stream/realrtsp/sdpplin.c \
|
|
stream/realrtsp/xbuffer.c \
|
|
|
|
SRCS_COMMON-$(PNG) += libmpcodecs/vd_mpng.c
|
|
SRCS_COMMON-$(PRIORITY) += osdep/priority.c
|
|
SRCS_COMMON-$(PVR) += stream/stream_pvr.c
|
|
SRCS_COMMON-$(QTX_CODECS) += libmpcodecs/ad_qtaudio.c \
|
|
libmpcodecs/vd_qtvideo.c
|
|
SRCS_COMMON-$(RADIO) += stream/stream_radio.c
|
|
SRCS_COMMON-$(RADIO_CAPTURE) += stream/audio_in.c
|
|
SRCS_COMMON-$(REAL_CODECS) += libmpcodecs/ad_realaud.c \
|
|
libmpcodecs/vd_realvid.c
|
|
SRCS_COMMON-$(SPEEX) += libmpcodecs/ad_speex.c
|
|
SRCS_COMMON-$(STREAM_CACHE) += stream/cache2.c
|
|
|
|
SRCS_COMMON-$(TV) += stream/stream_tv.c stream/tv.c \
|
|
stream/frequencies.c stream/tvi_dummy.c
|
|
SRCS_COMMON-$(TV_BSDBT848) += stream/tvi_bsdbt848.c
|
|
SRCS_COMMON-$(TV_DSHOW) += stream/tvi_dshow.c \
|
|
loader/dshow/guids.c \
|
|
loader/dshow/mediatype.c \
|
|
|
|
SRCS_COMMON-$(TV_V4L1) += stream/tvi_v4l.c stream/audio_in.c
|
|
SRCS_COMMON-$(TV_V4L2) += stream/tvi_v4l2.c stream/audio_in.c
|
|
SRCS_COMMON-$(UNRAR_EXEC) += sub/unrar_exec.c
|
|
SRCS_COMMON-$(VCD) += stream/stream_vcd.c
|
|
SRCS_COMMON-$(VORBIS) += libmpcodecs/ad_libvorbis.c \
|
|
libmpdemux/demux_ogg.c
|
|
SRCS_COMMON-$(VSTREAM) += stream/stream_vstream.c
|
|
SRCS_QTX_EMULATION += loader/wrapper.S
|
|
SRCS_COMMON-$(QTX_EMULATION) += $(SRCS_QTX_EMULATION)
|
|
SRCS_WIN32_EMULATION += loader/elfdll.c \
|
|
loader/ext.c \
|
|
loader/ldt_keeper.c \
|
|
loader/module.c \
|
|
loader/pe_image.c \
|
|
loader/pe_resource.c \
|
|
loader/registry.c \
|
|
loader/resource.c \
|
|
loader/win32.c \
|
|
|
|
SRCS_COMMON-$(WIN32_EMULATION) += $(SRCS_WIN32_EMULATION)
|
|
|
|
SRCS_COMMON-$(WIN32DLL) += libmpcodecs/ad_acm.c \
|
|
libmpcodecs/ad_dmo.c \
|
|
libmpcodecs/ad_dshow.c \
|
|
libmpcodecs/ad_twin.c \
|
|
libmpcodecs/vd_dmo.c \
|
|
libmpcodecs/vd_dshow.c \
|
|
libmpcodecs/vd_vfw.c \
|
|
libmpcodecs/vd_vfwex.c \
|
|
libmpdemux/demux_avs.c \
|
|
loader/afl.c \
|
|
loader/drv.c \
|
|
loader/vfl.c \
|
|
loader/dshow/DS_AudioDecoder.c \
|
|
loader/dshow/DS_Filter.c \
|
|
loader/dshow/DS_VideoDecoder.c \
|
|
loader/dshow/allocator.c \
|
|
loader/dshow/cmediasample.c \
|
|
loader/dshow/graph.c \
|
|
loader/dshow/guids.c \
|
|
loader/dshow/inputpin.c \
|
|
loader/dshow/mediatype.c \
|
|
loader/dshow/outputpin.c \
|
|
loader/dmo/DMO_AudioDecoder.c \
|
|
loader/dmo/DMO_VideoDecoder.c \
|
|
loader/dmo/buffer.c \
|
|
loader/dmo/dmo.c \
|
|
loader/dmo/dmo_guids.c \
|
|
|
|
SRCS_COMMON-$(XANIM_CODECS) += libmpcodecs/vd_xanim.c
|
|
SRCS_COMMON-$(XMMS_PLUGINS) += libmpdemux/demux_xmms.c
|
|
SRCS_COMMON-$(XVID4) += libmpcodecs/vd_xvid4.c
|
|
SRCS_COMMON = asxparser.c \
|
|
av_log.c \
|
|
bstr.c \
|
|
codec-cfg.c \
|
|
cpudetect.c \
|
|
defaultopts.c \
|
|
edl.c \
|
|
fmt-conversion.c \
|
|
m_config.c \
|
|
m_option.c \
|
|
m_struct.c \
|
|
mp_msg.c \
|
|
mpcommon.c \
|
|
parser-cfg.c \
|
|
path.c \
|
|
playtree.c \
|
|
playtreeparser.c \
|
|
subopt-helper.c \
|
|
talloc.c \
|
|
libaf/af.c \
|
|
libaf/af_center.c \
|
|
libaf/af_channels.c \
|
|
libaf/af_comp.c \
|
|
libaf/af_delay.c \
|
|
libaf/af_dummy.c \
|
|
libaf/af_equalizer.c \
|
|
libaf/af_extrastereo.c \
|
|
libaf/af_format.c \
|
|
libaf/af_gate.c \
|
|
libaf/af_hrtf.c \
|
|
libaf/af_karaoke.c \
|
|
libaf/af_pan.c \
|
|
libaf/af_resample.c \
|
|
libaf/af_scaletempo.c \
|
|
libaf/af_sinesuppress.c \
|
|
libaf/af_stats.c \
|
|
libaf/af_sub.c \
|
|
libaf/af_surround.c \
|
|
libaf/af_sweep.c \
|
|
libaf/af_tools.c \
|
|
libaf/af_volnorm.c \
|
|
libaf/af_volume.c \
|
|
libaf/filter.c \
|
|
libaf/format.c \
|
|
libaf/reorder_ch.c \
|
|
libaf/window.c \
|
|
libmpcodecs/ad.c \
|
|
libmpcodecs/ad_alaw.c \
|
|
libmpcodecs/ad_dk3adpcm.c \
|
|
libmpcodecs/ad_dvdpcm.c \
|
|
libmpcodecs/ad_hwac3.c \
|
|
libmpcodecs/ad_hwmpa.c \
|
|
libmpcodecs/ad_imaadpcm.c \
|
|
libmpcodecs/ad_msadpcm.c \
|
|
libmpcodecs/ad_pcm.c \
|
|
libmpcodecs/dec_audio.c \
|
|
libmpcodecs/dec_teletext.c \
|
|
libmpcodecs/dec_video.c \
|
|
libmpcodecs/img_format.c \
|
|
libmpcodecs/mp_image.c \
|
|
libmpcodecs/pullup.c \
|
|
libmpcodecs/vd.c \
|
|
libmpcodecs/vd_hmblck.c \
|
|
libmpcodecs/vd_lzo.c \
|
|
libmpcodecs/vd_mpegpes.c \
|
|
libmpcodecs/vd_mtga.c \
|
|
libmpcodecs/vd_null.c \
|
|
libmpcodecs/vd_raw.c \
|
|
libmpcodecs/vd_sgi.c \
|
|
libmpcodecs/vf.c \
|
|
libmpcodecs/vf_1bpp.c \
|
|
libmpcodecs/vf_2xsai.c \
|
|
libmpcodecs/vf_blackframe.c \
|
|
libmpcodecs/vf_boxblur.c \
|
|
libmpcodecs/vf_crop.c \
|
|
libmpcodecs/vf_cropdetect.c \
|
|
libmpcodecs/vf_decimate.c \
|
|
libmpcodecs/vf_delogo.c \
|
|
libmpcodecs/vf_denoise3d.c \
|
|
libmpcodecs/vf_detc.c \
|
|
libmpcodecs/vf_dint.c \
|
|
libmpcodecs/vf_divtc.c \
|
|
libmpcodecs/vf_down3dright.c \
|
|
libmpcodecs/vf_dsize.c \
|
|
libmpcodecs/vf_dvbscale.c \
|
|
libmpcodecs/vf_eq.c \
|
|
libmpcodecs/vf_eq2.c \
|
|
libmpcodecs/vf_expand.c \
|
|
libmpcodecs/vf_field.c \
|
|
libmpcodecs/vf_fil.c \
|
|
libmpcodecs/vf_filmdint.c \
|
|
libmpcodecs/vf_fixpts.c \
|
|
libmpcodecs/vf_flip.c \
|
|
libmpcodecs/vf_format.c \
|
|
libmpcodecs/vf_framestep.c \
|
|
libmpcodecs/vf_gradfun.c \
|
|
libmpcodecs/vf_halfpack.c \
|
|
libmpcodecs/vf_harddup.c \
|
|
libmpcodecs/vf_hqdn3d.c \
|
|
libmpcodecs/vf_hue.c \
|
|
libmpcodecs/vf_il.c \
|
|
libmpcodecs/vf_ilpack.c \
|
|
libmpcodecs/vf_ivtc.c \
|
|
libmpcodecs/vf_kerndeint.c \
|
|
libmpcodecs/vf_mirror.c \
|
|
libmpcodecs/vf_noformat.c \
|
|
libmpcodecs/vf_noise.c \
|
|
libmpcodecs/vf_ow.c \
|
|
libmpcodecs/vf_palette.c \
|
|
libmpcodecs/vf_perspective.c \
|
|
libmpcodecs/vf_phase.c \
|
|
libmpcodecs/vf_pp7.c \
|
|
libmpcodecs/vf_pullup.c \
|
|
libmpcodecs/vf_rectangle.c \
|
|
libmpcodecs/vf_remove_logo.c \
|
|
libmpcodecs/vf_rgbtest.c \
|
|
libmpcodecs/vf_rotate.c \
|
|
libmpcodecs/vf_sab.c \
|
|
libmpcodecs/vf_scale.c \
|
|
libmpcodecs/vf_smartblur.c \
|
|
libmpcodecs/vf_softpulldown.c \
|
|
libmpcodecs/vf_stereo3d.c \
|
|
libmpcodecs/vf_softskip.c \
|
|
libmpcodecs/vf_swapuv.c \
|
|
libmpcodecs/vf_telecine.c \
|
|
libmpcodecs/vf_test.c \
|
|
libmpcodecs/vf_tfields.c \
|
|
libmpcodecs/vf_tile.c \
|
|
libmpcodecs/vf_tinterlace.c \
|
|
libmpcodecs/vf_unsharp.c \
|
|
libmpcodecs/vf_vo.c \
|
|
libmpcodecs/vf_yadif.c \
|
|
libmpcodecs/vf_yuvcsp.c \
|
|
libmpcodecs/vf_yvu9.c \
|
|
libmpdemux/aac_hdr.c \
|
|
libmpdemux/asfheader.c \
|
|
libmpdemux/aviheader.c \
|
|
libmpdemux/aviprint.c \
|
|
libmpdemux/demuxer.c \
|
|
libmpdemux/demux_aac.c \
|
|
libmpdemux/demux_asf.c \
|
|
libmpdemux/demux_audio.c \
|
|
libmpdemux/demux_avi.c \
|
|
libmpdemux/demux_demuxers.c \
|
|
libmpdemux/demux_edl.c \
|
|
libmpdemux/demux_film.c \
|
|
libmpdemux/demux_fli.c \
|
|
libmpdemux/demux_lmlm4.c \
|
|
libmpdemux/demux_mf.c \
|
|
libmpdemux/demux_mkv.c \
|
|
libmpdemux/demux_mov.c \
|
|
libmpdemux/demux_mpg.c \
|
|
libmpdemux/demux_nsv.c \
|
|
libmpdemux/demux_pva.c \
|
|
libmpdemux/demux_rawaudio.c \
|
|
libmpdemux/demux_rawvideo.c \
|
|
libmpdemux/demux_realaud.c \
|
|
libmpdemux/demux_real.c \
|
|
libmpdemux/demux_roq.c \
|
|
libmpdemux/demux_smjpeg.c \
|
|
libmpdemux/demux_ts.c \
|
|
libmpdemux/demux_ty.c \
|
|
libmpdemux/demux_viv.c \
|
|
libmpdemux/demux_vqf.c \
|
|
libmpdemux/demux_y4m.c \
|
|
libmpdemux/ebml.c \
|
|
libmpdemux/extension.c \
|
|
libmpdemux/mf.c \
|
|
libmpdemux/mp3_hdr.c \
|
|
libmpdemux/mp_taglists.c \
|
|
libmpdemux/mpeg_hdr.c \
|
|
libmpdemux/mpeg_packetizer.c \
|
|
libmpdemux/parse_es.c \
|
|
libmpdemux/parse_mp4.c \
|
|
libmpdemux/video.c \
|
|
libmpdemux/yuv4mpeg.c \
|
|
libmpdemux/yuv4mpeg_ratio.c \
|
|
libvo/osd.c \
|
|
osdep/numcores.c \
|
|
osdep/$(GETCH) \
|
|
osdep/$(TIMER) \
|
|
stream/open.c \
|
|
stream/stream.c \
|
|
stream/stream_cue.c \
|
|
stream/stream_file.c \
|
|
stream/stream_mf.c \
|
|
stream/stream_null.c \
|
|
stream/url.c \
|
|
sub/sub.c \
|
|
sub/sub_cc.c \
|
|
sub/dec_sub.c \
|
|
sub/find_sub.c \
|
|
sub/find_subfiles.c \
|
|
sub/spudec.c \
|
|
sub/subassconvert.c \
|
|
sub/subreader.c \
|
|
sub/vobsub.c \
|
|
timeline/tl_edl.c \
|
|
timeline/tl_matroska.c \
|
|
$(SRCS_COMMON-yes)
|
|
|
|
|
|
SRCS_MPLAYER-$(3DFX) += libvo/vo_3dfx.c
|
|
SRCS_MPLAYER-$(AA) += libvo/vo_aa.c
|
|
SRCS_MPLAYER-$(ALSA1X) += libao2/ao_alsa.c
|
|
SRCS_MPLAYER-$(ALSA5) += libao2/ao_alsa5.c
|
|
SRCS_MPLAYER-$(ALSA9) += libao2/ao_alsa.c
|
|
SRCS_MPLAYER-$(APPLE_IR) += input/appleir.c
|
|
SRCS_MPLAYER-$(APPLE_REMOTE) += input/ar.c
|
|
SRCS_MPLAYER-$(ARTS) += libao2/ao_arts.c
|
|
SRCS_MPLAYER-$(BL) += libvo/vo_bl.c
|
|
SRCS_MPLAYER-$(CACA) += libvo/vo_caca.c
|
|
SRCS_MPLAYER-$(COREAUDIO) += libao2/ao_coreaudio.c
|
|
SRCS_MPLAYER-$(COREVIDEO) += libvo/vo_corevideo.m libvo/osx_common.c
|
|
SRCS_MPLAYER-$(DART) += libao2/ao_dart.c
|
|
SRCS_MPLAYER-$(DGA) += libvo/vo_dga.c
|
|
SRCS_MPLAYER-$(DIRECT3D) += libvo/vo_direct3d.c libvo/w32_common.c
|
|
SRCS_MPLAYER-$(DIRECTFB) += libvo/vo_directfb2.c libvo/vo_dfbmga.c
|
|
SRCS_MPLAYER-$(DIRECTX) += libao2/ao_dsound.c libvo/vo_directx.c
|
|
SRCS_MPLAYER-$(DXR3) += libvo/vo_dxr3.c
|
|
SRCS_MPLAYER-$(ESD) += libao2/ao_esd.c
|
|
SRCS_MPLAYER-$(FBDEV) += libvo/vo_fbdev.c libvo/vo_fbdev2.c
|
|
SRCS_MPLAYER-$(FFMPEG) += libvo/vo_png.c
|
|
SRCS_MPLAYER-$(GGI) += libvo/vo_ggi.c
|
|
SRCS_MPLAYER-$(GIF) += libvo/vo_gif89a.c
|
|
SRCS_MPLAYER-$(GL) += libvo/gl_common.c libvo/vo_gl.c \
|
|
pnm_loader.c
|
|
SRCS_MPLAYER-$(GL_SDL) += libvo/sdl_common.c
|
|
SRCS_MPLAYER-$(GL_WIN32) += libvo/w32_common.c
|
|
SRCS_MPLAYER-$(GL_X11) += libvo/x11_common.c
|
|
|
|
SRCS_MPLAYER-$(IVTV) += libao2/ao_ivtv.c libvo/vo_ivtv.c
|
|
SRCS_MPLAYER-$(JACK) += libao2/ao_jack.c
|
|
SRCS_MPLAYER-$(JOYSTICK) += input/joystick.c
|
|
SRCS_MPLAYER-$(JPEG) += libvo/vo_jpeg.c
|
|
SRCS_MPLAYER-$(KAI) += libao2/ao_kai.c
|
|
SRCS_MPLAYER-$(KVA) += libvo/vo_kva.c
|
|
SRCS_MPLAYER-$(LIRC) += input/lirc.c
|
|
SRCS_MPLAYER-$(MD5SUM) += libvo/vo_md5sum.c
|
|
SRCS_MPLAYER-$(MGA) += libvo/vo_mga.c
|
|
SRCS_MPLAYER-$(NAS) += libao2/ao_nas.c
|
|
SRCS_MPLAYER-$(OPENAL) += libao2/ao_openal.c
|
|
SRCS_MPLAYER-$(OSS) += libao2/ao_oss.c
|
|
SRCS_MPLAYER-$(PNM) += libvo/vo_pnm.c
|
|
SRCS_MPLAYER-$(PULSE) += libao2/ao_pulse.c
|
|
SRCS_MPLAYER-$(QUARTZ) += libvo/vo_quartz.c libvo/osx_common.c
|
|
SRCS_MPLAYER-$(RSOUND) += libao2/ao_rsound.c
|
|
SRCS_MPLAYER-$(S3FB) += libvo/vo_s3fb.c
|
|
SRCS_MPLAYER-$(SDL) += libao2/ao_sdl.c libvo/vo_sdl.c libvo/sdl_common.c
|
|
SRCS_MPLAYER-$(SGIAUDIO) += libao2/ao_sgi.c
|
|
SRCS_MPLAYER-$(SUNAUDIO) += libao2/ao_sun.c
|
|
SRCS_MPLAYER-$(SVGA) += libvo/vo_svga.c
|
|
SRCS_MPLAYER-$(TDFXFB) += libvo/vo_tdfxfb.c
|
|
SRCS_MPLAYER-$(TDFXVID) += libvo/vo_tdfx_vid.c
|
|
SRCS_MPLAYER-$(TGA) += libvo/vo_tga.c
|
|
SRCS_MPLAYER-$(V4L2) += libvo/vo_v4l2.c
|
|
SRCS_MPLAYER-$(V4L2) += libao2/ao_v4l2.c
|
|
SRCS_MPLAYER-$(VDPAU) += libvo/vo_vdpau.c
|
|
SRCS_MPLAYER-$(VESA) += libvo/gtf.c libvo/vo_vesa.c libvo/vesa_lvo.c
|
|
|
|
SRCS_MPLAYER-$(WII) += libvo/vo_wii.c
|
|
SRCS_MPLAYER-$(WIN32WAVEOUT) += libao2/ao_win32.c
|
|
SRCS_MPLAYER-$(X11) += libvo/vo_x11.c libvo/vo_xover.c \
|
|
libvo/x11_common.c
|
|
SRCS_MPLAYER-$(XMGA) += libvo/vo_xmga.c
|
|
SRCS_MPLAYER-$(XV) += libvo/vo_xv.c
|
|
SRCS_MPLAYER-$(XVR100) += libvo/vo_xvr100.c
|
|
SRCS_MPLAYER-$(YUV4MPEG) += libvo/vo_yuv4mpeg.c
|
|
|
|
SRCS_MPLAYER = command.c \
|
|
m_property.c \
|
|
mixer.c \
|
|
mp_fifo.c \
|
|
mplayer.c \
|
|
parser-mpcmd.c \
|
|
screenshot.c \
|
|
input/input.c \
|
|
libao2/ao_mpegpes.c \
|
|
libao2/ao_null.c \
|
|
libao2/ao_pcm.c \
|
|
libao2/audio_out.c \
|
|
libvo/aspect.c \
|
|
libvo/csputils.c \
|
|
libvo/geometry.c \
|
|
libvo/old_vo_wrapper.c \
|
|
libvo/spuenc.c \
|
|
libvo/video_out.c \
|
|
libvo/vo_mpegpes.c \
|
|
libvo/vo_null.c \
|
|
$(SRCS_MPLAYER-yes)
|
|
|
|
COMMON_LIBS += $(COMMON_LIBS-yes)
|
|
|
|
OBJS_COMMON += $(addsuffix .o, $(basename $(SRCS_COMMON)))
|
|
OBJS_MPLAYER += $(addsuffix .o, $(basename $(SRCS_MPLAYER)))
|
|
OBJS_MPLAYER-$(PE_EXECUTABLE) += osdep/mplayer-rc.o
|
|
OBJS_MPLAYER += $(OBJS_MPLAYER-yes)
|
|
|
|
MPLAYER_DEPS = $(OBJS_MPLAYER) $(OBJS_COMMON) $(COMMON_LIBS)
|
|
DEP_FILES = $(patsubst %.S,%.d,$(patsubst %.cpp,%.d,$(patsubst %.c,%.d,$(SRCS_COMMON) $(SRCS_MPLAYER:.m=.d))))
|
|
|
|
ALL_PRG-$(MPLAYER) += mplayer$(EXESUF)
|
|
|
|
INSTALL_TARGETS-$(MPLAYER) += install-mplayer \
|
|
install-mplayer-man \
|
|
install-mplayer-msg
|
|
|
|
DIRS = . \
|
|
input \
|
|
libaf \
|
|
libao2 \
|
|
libdvdcss \
|
|
libdvdnav \
|
|
libdvdnav/vm \
|
|
libdvdread4 \
|
|
libmpcodecs \
|
|
libmpcodecs/native \
|
|
libmpdemux \
|
|
libvo \
|
|
loader \
|
|
loader/dshow \
|
|
loader/dmo \
|
|
loader/wine \
|
|
osdep \
|
|
stream \
|
|
stream/freesdp \
|
|
stream/librtsp \
|
|
stream/realrtsp \
|
|
sub \
|
|
timeline \
|
|
TOOLS \
|
|
|
|
MOFILES := $(MSG_LANGS:%=locale/%/LC_MESSAGES/mplayer.mo)
|
|
|
|
ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h))
|
|
|
|
ADDSUFFIXES = $(foreach suf,$(1),$(addsuffix $(suf),$(2)))
|
|
ADD_ALL_DIRS = $(call ADDSUFFIXES,$(1),$(DIRS))
|
|
ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1))
|
|
|
|
###### brief build output #######
|
|
|
|
ifndef V
|
|
$(eval override CC = @printf "CC\t$$@\n"; $(CC))
|
|
$(eval override RM = @$(RM))
|
|
endif
|
|
|
|
###### generic rules #######
|
|
|
|
all: $(ALL_PRG-yes) locales
|
|
|
|
%.o: %.S
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.c
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.cpp
|
|
$(CC) $(DEPFLAGS) $(CXXFLAGS) -c -o $@ $<
|
|
|
|
%.o: %.m
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
|
|
|
%-rc.o: %.rc
|
|
$(WINDRES) -I. $< $@
|
|
|
|
mplayer$(EXESUF): $(MPLAYER_DEPS)
|
|
mplayer$(EXESUF): EXTRALIBS += $(EXTRALIBS_MPLAYER)
|
|
mplayer$(EXESUF):
|
|
$(CC) -o $@ $^ $(EXTRALIBS)
|
|
|
|
codec-cfg$(EXESUF): codec-cfg.c codec-cfg.h
|
|
$(HOST_CC) -O -DCODECS2HTML -I. -o $@ $<
|
|
|
|
codecs.conf.h: codec-cfg$(EXESUF) etc/codecs.conf
|
|
./$^ > $@
|
|
|
|
# ./configure must be rerun if it changed
|
|
config.mak: configure
|
|
@echo "############################################################"
|
|
@echo "####### Please run ./configure again - it's changed! #######"
|
|
@echo "############################################################"
|
|
|
|
version.h .version: version.sh
|
|
./$<
|
|
|
|
# Force version.sh to run to potentially regenerate version.h
|
|
-include .version
|
|
|
|
%$(EXESUF): %.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
locales: $(MOFILES)
|
|
|
|
locale/%/LC_MESSAGES/mplayer.mo: po/%.po
|
|
mkdir -p $(dir $@)
|
|
msgfmt -c -o $@ $<
|
|
|
|
%.ho: %.h
|
|
$(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $<
|
|
|
|
checkheaders: $(ALLHEADERS:.h=.ho)
|
|
|
|
|
|
|
|
###### dependency declarations / specific CFLAGS ######
|
|
|
|
# Make sure all generated header files are created.
|
|
codec-cfg.o: codecs.conf.h
|
|
mpcommon.o osdep/mplayer-rc.o: version.h
|
|
|
|
# Files that depend on libavcodec internals
|
|
libmpcodecs/vf_fspp.o libmpcodecs/vf_mcdeint.o libmpcodecs/vf_spp.o: CFLAGS := -I$(FFMPEG_SOURCE_PATH) $(CFLAGS)
|
|
|
|
osdep/mplayer-rc.o: osdep/mplayer.exe.manifest
|
|
|
|
libdvdcss/%: CFLAGS := -Ilibdvdcss -D_GNU_SOURCE -DVERSION=\"1.2.10\" $(CFLAGS_LIBDVDCSS) $(CFLAGS)
|
|
libdvdnav/%: CFLAGS := -Ilibdvdnav -D_GNU_SOURCE -DHAVE_CONFIG_H -DVERSION=\"MPlayer-custom\" $(CFLAGS)
|
|
libdvdread4/%: CFLAGS := -Ilibdvdread4 -D_GNU_SOURCE $(CFLAGS_LIBDVDCSS_DVDREAD) $(CFLAGS)
|
|
|
|
loader/%: CFLAGS += -fno-omit-frame-pointer $(CFLAGS_NO_OMIT_LEAF_FRAME_POINTER)
|
|
#loader/%: CFLAGS += -Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT
|
|
loader/win32%: CFLAGS += $(CFLAGS_STACKREALIGN)
|
|
|
|
stream/stream_dvdnav%: CFLAGS := $(CFLAGS_LIBDVDNAV) $(CFLAGS)
|
|
|
|
|
|
|
|
###### installation / clean / generic rules #######
|
|
|
|
install: $(INSTALL_TARGETS-yes)
|
|
|
|
install-dirs:
|
|
if test ! -d $(BINDIR) ; then $(INSTALL) -d $(BINDIR) ; fi
|
|
if test ! -d $(CONFDIR) ; then $(INSTALL) -d $(CONFDIR) ; fi
|
|
if test ! -d $(LIBDIR) ; then $(INSTALL) -d $(LIBDIR) ; fi
|
|
|
|
install-%: %$(EXESUF) install-dirs
|
|
$(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR)
|
|
|
|
install-mplayer-man: $(foreach lang,$(MAN_LANGS),install-mplayer-man-$(lang))
|
|
install-mplayer-msg: $(foreach lang,$(MSG_LANGS),install-mplayer-msg-$(lang))
|
|
|
|
install-mplayer-man-en:
|
|
if test ! -d $(MANDIR)/man1 ; then $(INSTALL) -d $(MANDIR)/man1 ; fi
|
|
$(INSTALL) -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/
|
|
|
|
define MPLAYER_MAN_RULE
|
|
install-mplayer-man-$(lang):
|
|
if test ! -d $(MANDIR)/$(lang)/man1 ; then $(INSTALL) -d $(MANDIR)/$(lang)/man1 ; fi
|
|
$(INSTALL) -m 644 DOCS/man/$(lang)/mplayer.1 $(MANDIR)/$(lang)/man1/
|
|
endef
|
|
|
|
$(foreach lang,$(filter-out en,$(MAN_LANG_ALL)),$(eval $(MPLAYER_MAN_RULE)))
|
|
|
|
define MPLAYER_MSG_RULE
|
|
install-mplayer-msg-$(lang):
|
|
if test ! -d $(LOCALEDIR)/$(lang)/LC_MESSAGES ; then $(INSTALL) -d $(LOCALEDIR)/$(lang)/LC_MESSAGES ; fi
|
|
$(INSTALL) -m 644 locale/$(lang)/LC_MESSAGES/mplayer.mo $(LOCALEDIR)/$(lang)/LC_MESSAGES/
|
|
endef
|
|
|
|
$(foreach lang,$(MSG_LANG_ALL),$(eval $(MPLAYER_MSG_RULE)))
|
|
|
|
uninstall:
|
|
$(RM) $(BINDIR)/mplayer$(EXESUF) $(BINDIR)/gmplayer$(EXESUF)
|
|
$(RM) $(prefix)/share/pixmaps/mplayer.xpm
|
|
$(RM) $(prefix)/share/applications/mplayer.desktop
|
|
$(RM) $(MANDIR)/man1/mplayer.1
|
|
$(RM) $(foreach lang,$(MAN_LANGS),$(foreach man,mplayer.1,$(MANDIR)/$(lang)/man1/$(man)))
|
|
$(RM) $(foreach lang,$(MSG_LANGS),$(LOCALEDIR)/$(lang)/LC_MESSAGES/mplayer.1)
|
|
|
|
clean:
|
|
-$(RM) $(call ADD_ALL_DIRS,/*.o /*.a /*.ho /*~)
|
|
-$(RM) $(call ADD_ALL_EXESUFS,mplayer)
|
|
-$(RM) $(MOFILES)
|
|
|
|
distclean: clean testsclean toolsclean driversclean
|
|
-$(RM) -r DOCS/tech/doxygen
|
|
-$(RM) -r locale
|
|
-$(RM) $(call ADD_ALL_DIRS,/*.d)
|
|
-$(RM) config.log config.mak config.h codecs.conf.h version.h TAGS tags
|
|
-$(RM) $(call ADD_ALL_EXESUFS,codec-cfg cpuinfo)
|
|
|
|
doxygen:
|
|
doxygen DOCS/tech/Doxyfile
|
|
|
|
TAGS:
|
|
$(RM) $@; find . -name '*.[chS]' -o -name '*.asm' | xargs etags -a
|
|
|
|
tags:
|
|
$(RM) $@; find . -name '*.[chS]' -o -name '*.asm' | xargs ctags -a
|
|
|
|
generated_ebml:
|
|
TOOLS/matroska.py --generate-header >libmpdemux/ebml_types.h
|
|
TOOLS/matroska.py --generate-definitions >libmpdemux/ebml_defs.c
|
|
|
|
###### tests / tools #######
|
|
|
|
TEST_OBJS = mp_msg.o mp_fifo.o osdep/$(GETCH) osdep/$(TIMER) -ltermcap -lm
|
|
|
|
codec-cfg-test$(EXESUF): codec-cfg.c codecs.conf.h $(TEST_OBJS)
|
|
$(CC) -I. -DTESTING -o $@ $^
|
|
|
|
codecs2html$(EXESUF): codec-cfg.c $(TEST_OBJS)
|
|
$(CC) -I. -DCODECS2HTML -o $@ $^
|
|
|
|
LOADER_TEST_OBJS = $(SRCS_WIN32_EMULATION:.c=.o) $(SRCS_QTX_EMULATION:.S=.o) libavutil/libavutil.a osdep/mmap_anon.o cpudetect.o path.o $(TEST_OBJS)
|
|
|
|
loader/qtx/list$(EXESUF) loader/qtx/qtxload$(EXESUF): CFLAGS += -g
|
|
loader/qtx/list$(EXESUF) loader/qtx/qtxload$(EXESUF): $(LOADER_TEST_OBJS)
|
|
|
|
TESTS = codecs2html codec-cfg-test
|
|
|
|
ifdef ARCH_X86
|
|
TESTS += loader/qtx/list loader/qtx/qtxload
|
|
endif
|
|
|
|
tests: $(addsuffix $(EXESUF),$(TESTS))
|
|
|
|
testsclean:
|
|
-$(RM) $(call ADD_ALL_EXESUFS,$(TESTS))
|
|
|
|
TOOLS = $(addprefix TOOLS/,alaw-gen asfinfo avi-fix avisubdump compare dump_mp4 movinfo netstream subrip vivodump)
|
|
|
|
ifdef ARCH_X86
|
|
TOOLS += TOOLS/fastmemcpybench TOOLS/modify_reg
|
|
endif
|
|
|
|
ALLTOOLS = $(TOOLS) TOOLS/bmovl-test TOOLS/vfw2menc
|
|
|
|
tools: $(addsuffix $(EXESUF),$(TOOLS))
|
|
alltools: $(addsuffix $(EXESUF),$(ALLTOOLS))
|
|
|
|
toolsclean:
|
|
-$(RM) $(call ADD_ALL_EXESUFS,$(ALLTOOLS))
|
|
-$(RM) TOOLS/realcodecs/*.so.6.0
|
|
|
|
TOOLS/bmovl-test$(EXESUF): -lSDL_image
|
|
|
|
TOOLS/subrip$(EXESUF): sub/vobsub.o sub/spudec.o sub/unrar_exec.o \
|
|
libvo/aclib.o \ libswscale/libswscale.a libavutil/libavutil.a $(TEST_OBJS)
|
|
|
|
TOOLS/vfw2menc$(EXESUF): -lwinmm -lole32
|
|
|
|
mplayer-nomain.o: mplayer.c
|
|
$(CC) $(CFLAGS) -DDISABLE_MAIN -c -o $@ $<
|
|
|
|
TOOLS/netstream$(EXESUF): TOOLS/netstream.c
|
|
TOOLS/vivodump$(EXESUF): TOOLS/vivodump.c
|
|
TOOLS/netstream$(EXESUF) TOOLS/vivodump$(EXESUF): $(subst mplayer.o,mplayer-nomain.o,$(OBJS_MPLAYER)) $(OBJS_COMMON) $(COMMON_LIBS)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(EXTRALIBS_MPLAYER) $(EXTRALIBS)
|
|
|
|
REAL_SRCS = $(wildcard TOOLS/realcodecs/*.c)
|
|
REAL_TARGETS = $(REAL_SRCS:.c=.so.6.0)
|
|
|
|
realcodecs: $(REAL_TARGETS)
|
|
realcodecs: CFLAGS += -g
|
|
|
|
%.so.6.0: %.o
|
|
ld -shared -o $@ $< -ldl -lc
|
|
|
|
|
|
|
|
###### drivers #######
|
|
|
|
KERNEL_INC = /lib/modules/`uname -r`/build/include
|
|
KERNEL_VERSION = $(shell grep RELEASE $(KERNEL_INC)/linux/version.h | cut -d'"' -f2)
|
|
KERNEL_CFLAGS = -O2 -D__KERNEL__ -DMODULE -Wall -I$(KERNEL_INC) -include $(KERNEL_INC)/linux/modversions.h
|
|
KERNEL_OBJS = $(addprefix drivers/, mga_vid.o tdfx_vid.o radeon_vid.o rage128_vid.o)
|
|
MODULES_DIR = /lib/modules/$(KERNEL_VERSION)/misc
|
|
DRIVER_OBJS = $(KERNEL_OBJS) drivers/mga_vid_test drivers/tdfx_vid_test
|
|
|
|
drivers: $(DRIVER_OBJS)
|
|
|
|
$(DRIVER_OBJS): CFLAGS = $(KERNEL_CFLAGS)
|
|
drivers/mga_vid.o: drivers/mga_vid.c drivers/mga_vid.h
|
|
drivers/tdfx_vid.o: drivers/tdfx_vid.c drivers/3dfx.h
|
|
drivers/radeon_vid.o drivers/rage128_vid.o: CFLAGS += -fomit-frame-pointer -fno-strict-aliasing -fno-common -ffast-math
|
|
drivers/radeon_vid.o: drivers/radeon_vid.c drivers/radeon.h drivers/radeon_vid.h
|
|
drivers/rage128_vid.o: drivers/radeon_vid.c drivers/radeon.h drivers/radeon_vid.h
|
|
$(CC) $(CFLAGS) -DRAGE128 -c $< -o $@
|
|
|
|
install-drivers: $(DRIVER_OBJS)
|
|
-mkdir -p $(MODULES_DIR)
|
|
install -m 644 $(KERNEL_OBJS) $(MODULES_DIR)
|
|
depmod -a
|
|
-mknod /dev/mga_vid c 178 0
|
|
-mknod /dev/tdfx_vid c 178 0
|
|
-mknod /dev/radeon_vid c 178 0
|
|
-ln -s /dev/radeon_vid /dev/rage128_vid
|
|
|
|
driversclean:
|
|
-$(RM) $(DRIVER_OBJS) drivers/*~
|
|
|
|
|
|
|
|
-include $(DEP_FILES)
|
|
|
|
.PHONY: all doxygen locales *install* *tools drivers
|
|
.PHONY: checkheaders *clean tests .version
|
|
|
|
# Disable suffix rules. Most of the builtin rules are suffix rules,
|
|
# so this saves some time on slow systems.
|
|
.SUFFIXES:
|
|
|
|
# If a command returns failure but changed its target file, delete the
|
|
# (presumably malformed) file. Otherwise the file would be considered to
|
|
# be up to date if make is restarted.
|
|
|
|
.DELETE_ON_ERROR:
|