mirror of
https://github.com/mpv-player/mpv
synced 2025-04-08 18:53:30 +00:00
Reorder entries for better readability.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21286 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5442528a6a
commit
45d5e76615
@ -59,6 +59,12 @@ endif
|
|||||||
ifeq ($(LIBVORBIS),yes)
|
ifeq ($(LIBVORBIS),yes)
|
||||||
AUDIO_SRCS+=ad_libvorbis.c
|
AUDIO_SRCS+=ad_libvorbis.c
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(MUSEPACK),yes)
|
||||||
|
AUDIO_SRCS += ad_mpc.c
|
||||||
|
endif
|
||||||
|
ifeq ($(SPEEX),yes)
|
||||||
|
AUDIO_SRCS += ad_speex.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
VIDEO_SRCS_LIB=vd_lzo.c \
|
VIDEO_SRCS_LIB=vd_lzo.c \
|
||||||
@ -110,6 +116,12 @@ endif
|
|||||||
ifeq ($(ZORAN),yes)
|
ifeq ($(ZORAN),yes)
|
||||||
VIDEO_SRCS+=vd_zrmjpeg.c
|
VIDEO_SRCS+=vd_zrmjpeg.c
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(PNG),yes)
|
||||||
|
VIDEO_SRCS += vd_mpng.c
|
||||||
|
endif
|
||||||
|
ifeq ($(JPEG),yes)
|
||||||
|
VIDEO_SRCS += vd_ijpg.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
VFILTER_SRCS=vf.c \
|
VFILTER_SRCS=vf.c \
|
||||||
@ -194,7 +206,6 @@ endif
|
|||||||
ifeq ($(CONFIG_LIBPOSTPROC_SO),yes)
|
ifeq ($(CONFIG_LIBPOSTPROC_SO),yes)
|
||||||
VFILTER_SRCS += vf_pp.c
|
VFILTER_SRCS += vf_pp.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
||||||
VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
|
VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
|
||||||
VFILTER_SRCS += $(VFILTER_LAVC_DSPUTIL_SRCS)
|
VFILTER_SRCS += $(VFILTER_LAVC_DSPUTIL_SRCS)
|
||||||
@ -202,10 +213,15 @@ endif
|
|||||||
ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
|
ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
|
||||||
VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
|
VFILTER_SRCS += $(VFILTER_LAVC_SRCS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(PNG),yes)
|
ifeq ($(PNG),yes)
|
||||||
VFILTER_SRCS += vf_screenshot.c
|
VFILTER_SRCS += vf_screenshot.c
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(ZORAN),yes)
|
||||||
|
VFILTER_SRCS += vf_zrmjpeg.c
|
||||||
|
endif
|
||||||
|
ifeq ($(CONFIG_ASS),yes)
|
||||||
|
VFILTER_SRCS += vf_ass.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
ENCODER_SRCS=ae.c \
|
ENCODER_SRCS=ae.c \
|
||||||
@ -235,63 +251,37 @@ endif
|
|||||||
ifeq ($(X264),yes)
|
ifeq ($(X264),yes)
|
||||||
ENCODER_SRCS+=ve_x264.c
|
ENCODER_SRCS+=ve_x264.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
NATIVE_SRCS=native/minilzo.c \
|
|
||||||
native/nuppelvideo.c \
|
|
||||||
native/RTjpegN.c \
|
|
||||||
native/xa_gsm.c \
|
|
||||||
|
|
||||||
ifeq ($(ZORAN),yes)
|
|
||||||
VFILTER_SRCS += vf_zrmjpeg.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(PNG),yes)
|
|
||||||
VIDEO_SRCS += vd_mpng.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(JPEG),yes)
|
|
||||||
VIDEO_SRCS += vd_ijpg.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(TOOLAME),yes)
|
ifeq ($(TOOLAME),yes)
|
||||||
ENCODER_SRCS += ae_toolame.c
|
ENCODER_SRCS += ae_toolame.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(TWOLAME),yes)
|
ifeq ($(TWOLAME),yes)
|
||||||
ENCODER_SRCS += ae_twolame.c
|
ENCODER_SRCS += ae_twolame.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(MP3LAME),yes)
|
ifeq ($(MP3LAME),yes)
|
||||||
ENCODER_SRCS += ae_lame.c
|
ENCODER_SRCS += ae_lame.c
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(FAAC),yes)
|
||||||
|
ENCODER_SRCS += ae_faac.c
|
||||||
|
endif
|
||||||
|
ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
|
||||||
|
ENCODER_SRCS += ae_lavc.c
|
||||||
|
endif
|
||||||
|
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
||||||
|
ENCODER_SRCS += ae_lavc.c
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_LIBAVUTIL),yes)
|
ifeq ($(CONFIG_LIBAVUTIL),yes)
|
||||||
LIBAV_INC += -I../libavutil
|
LIBAV_INC += -I../libavutil
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
||||||
LIBAV_INC += -I../libavcodec
|
LIBAV_INC += -I../libavcodec
|
||||||
ENCODER_SRCS += ae_lavc.c
|
|
||||||
endif
|
|
||||||
ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
|
|
||||||
ENCODER_SRCS += ae_lavc.c
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(MUSEPACK),yes)
|
|
||||||
AUDIO_SRCS += ad_mpc.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(SPEEX),yes)
|
NATIVE_SRCS=native/minilzo.c \
|
||||||
AUDIO_SRCS += ad_speex.c
|
native/nuppelvideo.c \
|
||||||
endif
|
native/RTjpegN.c \
|
||||||
|
native/xa_gsm.c \
|
||||||
ifeq ($(FAAC),yes)
|
|
||||||
ENCODER_SRCS += ae_faac.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_ASS),yes)
|
|
||||||
VFILTER_SRCS += vf_ass.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
SRCS=$(AUDIO_SRCS) \
|
SRCS=$(AUDIO_SRCS) \
|
||||||
$(VIDEO_SRCS) \
|
$(VIDEO_SRCS) \
|
||||||
|
Loading…
Reference in New Issue
Block a user