Makefile 10.3 KB
Newer Older
J
Justin Ruggles 已提交
1 2 3 4 5 6 7 8 9 10
include config.mak

SRC_DIR = $(SRC_PATH_BARE)

vpath %.texi $(SRC_PATH_BARE)

PROGS-$(CONFIG_FFMPEG)   += ffmpeg
PROGS-$(CONFIG_FFPLAY)   += ffplay
PROGS-$(CONFIG_FFSERVER) += ffserver

11
PROGS      := $(addsuffix   $(EXESUF), $(PROGS-yes))
J
Justin Ruggles 已提交
12 13 14
PROGS_G     = $(addsuffix _g$(EXESUF), $(PROGS-yes))
OBJS        = $(addsuffix .o,          $(PROGS-yes)) cmdutils.o
MANPAGES    = $(addprefix doc/, $(addsuffix .1, $(PROGS-yes)))
D
Diego Biurrun 已提交
15
TOOLS       = $(addprefix tools/, $(addsuffix $(EXESUF), cws2fws pktdumper probetest qt-faststart trasher))
16
HOSTPROGS   = $(addprefix tests/, audiogen videogen rotozoom tiny_psnr)
J
Justin Ruggles 已提交
17 18 19 20 21 22 23 24 25

BASENAMES   = ffmpeg ffplay ffserver
ALLPROGS    = $(addsuffix   $(EXESUF), $(BASENAMES))
ALLPROGS_G  = $(addsuffix _g$(EXESUF), $(BASENAMES))
ALLMANPAGES = $(addsuffix .1, $(BASENAMES))

FFLIBS-$(CONFIG_AVFILTER) += avfilter
FFLIBS-$(CONFIG_POSTPROC) += postproc

M
Michael Niedermayer 已提交
26
FFLIBS := avdevice avformat avcodec avutil swscale
J
Justin Ruggles 已提交
27

28 29
DATA_FILES := $(wildcard $(SRC_DIR)/ffpresets/*.ffpreset)

J
Justin Ruggles 已提交
30 31 32 33 34 35
include common.mak

FF_LDFLAGS   := $(FFLDFLAGS)
FF_EXTRALIBS := $(FFEXTRALIBS)
FF_DEP_LIBS  := $(DEP_LIBS)

36
ALL_TARGETS-$(CONFIG_DOC)       += documentation
J
Justin Ruggles 已提交
37

M
Måns Rullgård 已提交
38
ifdef PROGS
39
INSTALL_TARGETS-yes             += install-progs install-data
40
INSTALL_TARGETS-$(CONFIG_DOC)   += install-man
J
Justin Ruggles 已提交
41
endif
42
INSTALL_PROGS_TARGETS-$(CONFIG_SHARED) = install-libs
J
Justin Ruggles 已提交
43 44 45 46 47 48 49

all: $(FF_DEP_LIBS) $(PROGS) $(ALL_TARGETS-yes)

$(PROGS): %$(EXESUF): %_g$(EXESUF)
	cp -p $< $@
	$(STRIP) $@

50
SUBDIR_VARS := OBJS FFLIBS CLEANFILES DIRS TESTPROGS EXAMPLES SKIPHEADERS \
51
               ALTIVEC-OBJS MMX-OBJS NEON-OBJS X86-OBJS YASM-OBJS-FFT YASM-OBJS \
52
               HOSTPROGS BUILT_HEADERS
J
Justin Ruggles 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

define RESET
$(1) :=
$(1)-yes :=
endef

define DOSUBDIR
$(foreach V,$(SUBDIR_VARS),$(eval $(call RESET,$(V))))
SUBDIR := $(1)/
include $(1)/Makefile
endef

$(foreach D,$(FFLIBS),$(eval $(call DOSUBDIR,lib$(D))))

ffplay_g$(EXESUF): FF_EXTRALIBS += $(SDL_LIBS)
ffserver_g$(EXESUF): FF_LDFLAGS += $(FFSERVERLDFLAGS)

%_g$(EXESUF): %.o cmdutils.o $(FF_DEP_LIBS)
71
	$(LD) $(FF_LDFLAGS) -o $@ $< cmdutils.o $(FF_EXTRALIBS)
J
Justin Ruggles 已提交
72

M
Måns Rullgård 已提交
73 74 75
tools/%$(EXESUF): tools/%.o
	$(LD) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS)

76
tools/%.o: tools/%.c
M
Måns Rullgård 已提交
77
	$(CC) $(CPPFLAGS) $(CFLAGS) $(CC_O) $<
J
Justin Ruggles 已提交
78 79 80

ffplay.o ffplay.d: CFLAGS += $(SDL_CFLAGS)

81 82
cmdutils.o cmdutils.d: version.h

83
alltools: $(TOOLS)
84

85 86
documentation: $(addprefix doc/, developer.html faq.html ffmpeg-doc.html \
                                 ffplay-doc.html ffserver-doc.html       \
87
                                 general.html libavfilter.html $(ALLMANPAGES))
J
Justin Ruggles 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

doc/%.html: doc/%.texi
	texi2html -monolithic -number $<
	mv $(@F) $@

doc/%.pod: doc/%-doc.texi
	doc/texi2pod.pl $< $@

doc/%.1: doc/%.pod
	pod2man --section=1 --center=" " --release=" " $< > $@

install: $(INSTALL_TARGETS-yes)

install-progs: $(PROGS) $(INSTALL_PROGS_TARGETS-yes)
	install -d "$(BINDIR)"
	install -c -m 755 $(PROGS) "$(BINDIR)"

105 106 107 108
install-data: $(DATA_FILES)
	install -d "$(DATADIR)"
	install -m 644 $(DATA_FILES) "$(DATADIR)"

J
Justin Ruggles 已提交
109 110 111 112
install-man: $(MANPAGES)
	install -d "$(MANDIR)/man1"
	install -m 644 $(MANPAGES) "$(MANDIR)/man1"

R
Ramiro Polla 已提交
113 114 115 116 117 118 119 120 121 122
uninstall: uninstall-progs uninstall-data uninstall-man

uninstall-progs:
	rm -f $(addprefix "$(BINDIR)/", $(ALLPROGS))

uninstall-data:
	rm -rf "$(DATADIR)"

uninstall-man:
	rm -f $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
J
Justin Ruggles 已提交
123

124
testclean:
125
	rm -rf tests/vsynth1 tests/vsynth2 tests/data tests/*~
126 127

clean:: testclean
128
	rm -f $(ALLPROGS) $(ALLPROGS_G)
129
	rm -f $(CLEANSUFFIXES)
J
Justin Ruggles 已提交
130
	rm -f doc/*.html doc/*.pod doc/*.1
131
	rm -f tests/seek_test$(EXESUF) tests/seek_test.o
132
	rm -f $(addprefix tests/,$(addsuffix $(HOSTEXESUF),audiogen videogen rotozoom tiny_psnr))
133
	rm -f $(TOOLS)
J
Justin Ruggles 已提交
134 135

distclean::
136
	rm -f $(DISTCLEANSUFFIXES)
137
	rm -f version.h config.*
J
Justin Ruggles 已提交
138

139 140 141
config:
	$(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION)

J
Justin Ruggles 已提交
142 143
# regression tests

144 145
check: test checkheaders

146
fulltest test: codectest lavftest seektest
J
Justin Ruggles 已提交
147 148 149 150

FFSERVER_REFFILE = $(SRC_PATH)/tests/ffserver.regression.ref
SEEK_REFFILE     = $(SRC_PATH)/tests/seek.regression.ref

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
ENCDEC = $(and $(CONFIG_$(1)_ENCODER),$(CONFIG_$(1)_DECODER))
MUXDEM = $(and $(CONFIG_$(1)_MUXER),$(CONFIG_$(or $(2),$(1))_DEMUXER))

CODEC_TESTS =
CODEC_TESTS-$(call ENCDEC,AC3)               += ac3
CODEC_TESTS-$(call ENCDEC,ADPCM_G726)        += g726
CODEC_TESTS-$(call ENCDEC,ADPCM_IMA_QT)      += adpcm_ima_qt
CODEC_TESTS-$(call ENCDEC,ADPCM_IMA_WAV)     += adpcm_ima_wav
CODEC_TESTS-$(call ENCDEC,ADPCM_MS)          += adpcm_ms
CODEC_TESTS-$(call ENCDEC,ADPCM_SWF)         += adpcm_swf
CODEC_TESTS-$(call ENCDEC,ADPCM_YAMAHA)      += adpcm_yam
CODEC_TESTS-$(call ENCDEC,ALAC)              += alac
CODEC_TESTS-$(call ENCDEC,ASV1)              += asv1
CODEC_TESTS-$(call ENCDEC,ASV2)              += asv2
CODEC_TESTS-$(call ENCDEC,DNXHD)             += dnxhd_1080i dnxhd_720p dnxhd_720p_rd
CODEC_TESTS-$(call ENCDEC,DVVIDEO)           += dv dv50
CODEC_TESTS-$(call ENCDEC,FFV1)              += ffv1
CODEC_TESTS-$(call ENCDEC,FLAC)              += flac
CODEC_TESTS-$(call ENCDEC,FLASHSV)           += flashsv
CODEC_TESTS-$(call ENCDEC,FLV)               += flv
CODEC_TESTS-$(call ENCDEC,H261)              += h261
CODEC_TESTS-$(call ENCDEC,H263)              += h263 h263p
CODEC_TESTS-$(call ENCDEC,HUFFYUV)           += huffyuv
CODEC_TESTS-$(call ENCDEC,JPEGLS)            += jpegls
CODEC_TESTS-$(call ENCDEC,MJPEG)             += mjpeg ljpeg
CODEC_TESTS-$(call ENCDEC,MP2)               += mp2
CODEC_TESTS-$(call ENCDEC,MPEG1VIDEO)        += mpeg mpeg1b
CODEC_TESTS-$(call ENCDEC,MPEG2VIDEO)        += mpeg2 mpeg2thread
CODEC_TESTS-$(call ENCDEC,MPEG4)             += mpeg4 mpeg4adv mpeg4nr mpeg4thread error rc
CODEC_TESTS-$(call ENCDEC,MSMPEG4V1)         += msmpeg4
CODEC_TESTS-$(call ENCDEC,MSMPEG4V2)         += msmpeg4v2
CODEC_TESTS-$(call ENCDEC,PCM_S16LE)         += pcm         # fixme
CODEC_TESTS-$(call ENCDEC,ROQ)               += roq
CODEC_TESTS-$(call ENCDEC,RV10)              += rv10
CODEC_TESTS-$(call ENCDEC,RV20)              += rv20
CODEC_TESTS-$(call ENCDEC,SNOW)              += snow snowll
CODEC_TESTS-$(call ENCDEC,SVQ1)              += svq1
CODEC_TESTS-$(call ENCDEC,WMAV1)             += wmav1
CODEC_TESTS-$(call ENCDEC,WMAV1)             += wmav2
CODEC_TESTS-$(call ENCDEC,WMV1)              += wmv1
CODEC_TESTS-$(call ENCDEC,WMV2)              += wmv2

LAVF_TESTS =
LAVF_TESTS-$(call MUXDEM,AIFF)               += aiff
LAVF_TESTS-$(call MUXDEM,PCM_ALAW)           += alaw
LAVF_TESTS-$(call MUXDEM,ASF)                += asf
LAVF_TESTS-$(call MUXDEM,AU)                 += au
LAVF_TESTS-$(call MUXDEM,AVI)                += avi
LAVF_TESTS-$(call ENCDEC,BMP)                += bmp
LAVF_TESTS-$(call MUXDEM,DV)                 += dv_fmt
LAVF_TESTS-$(call MUXDEM,FFM)                += ffm
LAVF_TESTS-$(call MUXDEM,FLV)                += flv_fmt
LAVF_TESTS-$(call ENCDEC,GIF)                += gif
LAVF_TESTS-$(call MUXDEM,GXF)                += gxf
LAVF_TESTS-$(call ENCDEC,MJPEG)              += jpg
LAVF_TESTS-$(call MUXDEM,MATROSKA)           += mkv
LAVF_TESTS-$(call MUXDEM,MMF)                += mmf
LAVF_TESTS-$(call MUXDEM,MOV)                += mov
LAVF_TESTS-$(call MUXDEM,MPEG1SYSTEM,MPEGPS) += mpg
LAVF_TESTS-$(call MUXDEM,PCM_MULAW)          += mulaw
LAVF_TESTS-$(call MUXDEM,MXF)                += mxf
LAVF_TESTS-$(call MUXDEM,NUT)                += nut
LAVF_TESTS-$(call MUXDEM,OGG)                += ogg
LAVF_TESTS-$(call ENCDEC,PBM)                += pbmpipe
LAVF_TESTS-$(call ENCDEC,PCX)                += pcx
LAVF_TESTS-$(call ENCDEC,PGM)                += pgm pgmpipe
LAVF_TESTS-$(call MUXDEM,RAWVIDEO)           += pixfmt
LAVF_TESTS-$(call ENCDEC,PPM)                += ppm ppmpipe
LAVF_TESTS-$(call MUXDEM,RM)                 += rm
LAVF_TESTS-$(call ENCDEC,SGI)                += sgi
LAVF_TESTS-$(call MUXDEM,SWF)                += swf
LAVF_TESTS-$(call ENCDEC,TARGA)              += tga
LAVF_TESTS-$(call ENCDEC,TIFF)               += tiff
LAVF_TESTS-$(call MUXDEM,MPEGTS)             += ts
LAVF_TESTS-$(call MUXDEM,VOC)                += voc
LAVF_TESTS-$(call MUXDEM,WAV)                += wav
LAVF_TESTS-$(call MUXDEM,YUV4MPEGPIPE)       += yuv4mpeg

LAVFI_TESTS =

CODEC_TESTS := $(addprefix regtest-, $(CODEC_TESTS) $(CODEC_TESTS-yes))
LAVF_TESTS  := $(addprefix regtest-, $(LAVF_TESTS)  $(LAVF_TESTS-yes))
LAVFI_TESTS := $(addprefix regtest-, $(LAVFI_TESTS) $(LAVFI_TESTS-yes))
234

235 236
codectest: $(CODEC_TESTS)
lavftest:  $(LAVF_TESTS)
J
Justin Ruggles 已提交
237

238
# lavfitest: $(LAVFI_TESTS)
239

240
$(CODEC_TESTS) $(LAVF_TESTS) $(LAVFI_TESTS): regtest-ref
J
Justin Ruggles 已提交
241

242 243
REFFILE = $(SRC_PATH)/tests/ref/$(1)/$(2:regtest-%=%)
RESFILE = tests/data/$(2:regtest-%=%).$(1).regression
J
Justin Ruggles 已提交
244

245 246 247 248
define CODECTEST_CMD
	$(SRC_PATH)/tests/codec-regression.sh $@ vsynth1 tests/vsynth1 a "$(TARGET_EXEC)" "$(TARGET_PATH)"
	$(SRC_PATH)/tests/codec-regression.sh $@ vsynth2 tests/vsynth2 a "$(TARGET_EXEC)" "$(TARGET_PATH)"
endef
J
Justin Ruggles 已提交
249

250
regtest-ref: ffmpeg$(EXESUF) tests/vsynth1/00.pgm tests/vsynth2/00.pgm tests/data/asynth1.sw
251
	$(CODECTEST_CMD)
J
Justin Ruggles 已提交
252

253 254 255 256 257
$(CODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF)
	@echo "TEST CODEC $(@:regtest-%=%)"
	@$(CODECTEST_CMD)
	@diff -u -w $(call REFFILE,vsynth1,$@) $(call RESFILE,vsynth1,$@)
	@diff -u -w $(call REFFILE,vsynth2,$@) $(call RESFILE,vsynth2,$@)
J
Justin Ruggles 已提交
258 259

$(LAVF_TESTS):
260 261 262
	@echo "TEST LAVF  $(@:regtest-%=%)"
	@$(SRC_PATH)/tests/lavf-regression.sh $@ lavf tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)"
	@diff -u -w $(call REFFILE,lavf,$@) $(call RESFILE,lavf,$@)
J
Justin Ruggles 已提交
263

264
$(LAVFI_TESTS):
265 266 267
	@echo "TEST LAVFI $(@:regtest-%=%)"
	@$(SRC_PATH)/tests/lavfi-regression.sh $@ lavfi tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)"
	@diff -u -w $(call REFFILE,lavfi,$@) $(call RESFILE,lavfi,$@)
268

269
seektest: codectest lavftest tests/seek_test$(EXESUF)
270
	$(SRC_PATH)/tests/seek-regression.sh $(SEEK_REFFILE) "$(TARGET_EXEC)" "$(TARGET_PATH)"
J
Justin Ruggles 已提交
271

272
ffservertest: ffserver$(EXESUF) tests/vsynth1/00.pgm tests/data/asynth1.sw
J
Justin Ruggles 已提交
273 274 275 276
	@echo
	@echo "Unfortunately ffserver is broken and therefore its regression"
	@echo "test fails randomly. Treat the results accordingly."
	@echo
277
	$(SRC_PATH)/tests/ffserver-regression.sh $(FFSERVER_REFFILE) $(SRC_PATH)/tests/ffserver.conf
J
Justin Ruggles 已提交
278

279
tests/vsynth1/00.pgm: tests/videogen$(HOSTEXESUF)
J
Justin Ruggles 已提交
280 281 282
	mkdir -p tests/vsynth1
	$(BUILD_ROOT)/$< 'tests/vsynth1/'

283
tests/vsynth2/00.pgm: tests/rotozoom$(HOSTEXESUF)
J
Justin Ruggles 已提交
284 285 286
	mkdir -p tests/vsynth2
	$(BUILD_ROOT)/$< 'tests/vsynth2/' $(SRC_PATH)/tests/lena.pnm

287 288
tests/data/asynth1.sw: tests/audiogen$(HOSTEXESUF)
	mkdir -p tests/data
J
Justin Ruggles 已提交
289 290
	$(BUILD_ROOT)/$< $@

291 292
tests/seek_test$(EXESUF): tests/seek_test.o $(FF_DEP_LIBS)
	$(LD) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS)
J
Justin Ruggles 已提交
293 294


295
.PHONY: documentation *test regtest-* zlib-error alltools check config