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

SRC_DIR = $(SRC_PATH_BARE)

vpath %.texi $(SRC_PATH_BARE)

PROGS-$(CONFIG_FFMPEG)   += ffmpeg
PROGS-$(CONFIG_FFPLAY)   += ffplay
S
Stefano Sabatini 已提交
9
PROGS-$(CONFIG_FFPROBE)  += ffprobe
J
Justin Ruggles 已提交
10 11
PROGS-$(CONFIG_FFSERVER) += ffserver

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

S
Stefano Sabatini 已提交
19
BASENAMES   = ffmpeg ffplay ffprobe ffserver
J
Justin Ruggles 已提交
20 21 22 23
ALLPROGS    = $(addsuffix   $(EXESUF), $(BASENAMES))
ALLPROGS_G  = $(addsuffix _g$(EXESUF), $(BASENAMES))
ALLMANPAGES = $(addsuffix .1, $(BASENAMES))

24
FFLIBS-$(CONFIG_AVDEVICE) += avdevice
J
Justin Ruggles 已提交
25
FFLIBS-$(CONFIG_AVFILTER) += avfilter
26
FFLIBS-$(CONFIG_AVFORMAT) += avformat
M
Måns Rullgård 已提交
27
FFLIBS-$(CONFIG_AVCODEC)  += avcodec
J
Justin Ruggles 已提交
28
FFLIBS-$(CONFIG_POSTPROC) += postproc
29
FFLIBS-$(CONFIG_SWSCALE)  += swscale
J
Justin Ruggles 已提交
30

31
FFLIBS := avutil
J
Justin Ruggles 已提交
32

33 34
DATA_FILES := $(wildcard $(SRC_DIR)/ffpresets/*.ffpreset)

J
Justin Ruggles 已提交
35 36 37 38 39 40
include common.mak

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

41
ALL_TARGETS-$(CONFIG_DOC)       += documentation
J
Justin Ruggles 已提交
42

M
Måns Rullgård 已提交
43
ifdef PROGS
44
INSTALL_TARGETS-yes             += install-progs install-data
45
INSTALL_TARGETS-$(CONFIG_DOC)   += install-man
J
Justin Ruggles 已提交
46
endif
47
INSTALL_PROGS_TARGETS-$(CONFIG_SHARED) = install-libs
J
Justin Ruggles 已提交
48 49 50 51 52 53 54

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

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

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

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)
76
	$(LD) $(FF_LDFLAGS) -o $@ $< cmdutils.o $(FF_EXTRALIBS)
J
Justin Ruggles 已提交
77

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

81
tools/%.o: tools/%.c
M
Måns Rullgård 已提交
82
	$(CC) $(CPPFLAGS) $(CFLAGS) $(CC_O) $<
J
Justin Ruggles 已提交
83 84 85

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

86 87
cmdutils.o cmdutils.d: version.h

88
alltools: $(TOOLS)
89

90
documentation: $(addprefix doc/, developer.html faq.html ffmpeg-doc.html \
S
Stefano Sabatini 已提交
91
                                 ffplay-doc.html ffprobe-doc.html ffserver-doc.html \
92
                                 general.html libavfilter.html $(ALLMANPAGES))
J
Justin Ruggles 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

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)"

110 111 112 113
install-data: $(DATA_FILES)
	install -d "$(DATADIR)"
	install -m 644 $(DATA_FILES) "$(DATADIR)"

J
Justin Ruggles 已提交
114 115 116 117
install-man: $(MANPAGES)
	install -d "$(MANDIR)/man1"
	install -m 644 $(MANPAGES) "$(MANDIR)/man1"

R
Ramiro Polla 已提交
118 119 120 121 122 123 124 125 126 127
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 已提交
128

129
testclean:
130 131 132 133
	rm -rf tests/vsynth1 tests/vsynth2 tests/data
	rm -f $(addprefix tests/,$(CLEANSUFFIXES))
	rm -f tests/seek_test$(EXESUF) tests/seek_test.o
	rm -f $(addprefix tests/,$(addsuffix $(HOSTEXESUF),audiogen videogen rotozoom tiny_psnr))
134 135

clean:: testclean
136
	rm -f $(ALLPROGS) $(ALLPROGS_G)
137
	rm -f $(CLEANSUFFIXES)
J
Justin Ruggles 已提交
138
	rm -f doc/*.html doc/*.pod doc/*.1
139
	rm -f $(TOOLS)
J
Justin Ruggles 已提交
140 141

distclean::
142
	rm -f $(DISTCLEANSUFFIXES)
M
Måns Rullgård 已提交
143
	rm -f version.h config.* libavutil/avconfig.h
J
Justin Ruggles 已提交
144

145 146 147
config:
	$(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION)

J
Justin Ruggles 已提交
148 149
# regression tests

150 151
check: test checkheaders

152
fulltest test: codectest lavftest seektest
J
Justin Ruggles 已提交
153 154 155 156

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

157 158 159
ENCDEC = $(and $(CONFIG_$(1)_ENCODER),$(CONFIG_$(1)_DECODER))
MUXDEM = $(and $(CONFIG_$(1)_MUXER),$(CONFIG_$(or $(2),$(1))_DEMUXER))

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
VCODEC_TESTS =
VCODEC_TESTS-$(call ENCDEC,ASV1)             += asv1
VCODEC_TESTS-$(call ENCDEC,ASV2)             += asv2
VCODEC_TESTS-$(call ENCDEC,DNXHD)            += dnxhd_1080i dnxhd_720p dnxhd_720p_rd
VCODEC_TESTS-$(call ENCDEC,DVVIDEO)          += dv dv50
VCODEC_TESTS-$(call ENCDEC,FFV1)             += ffv1
VCODEC_TESTS-$(call ENCDEC,FLASHSV)          += flashsv
VCODEC_TESTS-$(call ENCDEC,FLV)              += flv
VCODEC_TESTS-$(call ENCDEC,H261)             += h261
VCODEC_TESTS-$(call ENCDEC,H263)             += h263 h263p
VCODEC_TESTS-$(call ENCDEC,HUFFYUV)          += huffyuv
VCODEC_TESTS-$(call ENCDEC,JPEGLS)           += jpegls
VCODEC_TESTS-$(call ENCDEC,MJPEG)            += mjpeg ljpeg
VCODEC_TESTS-$(call ENCDEC,MPEG1VIDEO)       += mpeg mpeg1b
VCODEC_TESTS-$(call ENCDEC,MPEG2VIDEO)       += mpeg2 mpeg2thread
VCODEC_TESTS-$(call ENCDEC,MPEG4)            += mpeg4 mpeg4adv mpeg4nr mpeg4thread error rc
VCODEC_TESTS-$(call ENCDEC,MSMPEG4V1)        += msmpeg4
VCODEC_TESTS-$(call ENCDEC,MSMPEG4V2)        += msmpeg4v2
VCODEC_TESTS-$(call ENCDEC,ROQ)              += roq
VCODEC_TESTS-$(call ENCDEC,RV10)             += rv10
VCODEC_TESTS-$(call ENCDEC,RV20)             += rv20
VCODEC_TESTS-$(call ENCDEC,SNOW)             += snow snowll
VCODEC_TESTS-$(call ENCDEC,SVQ1)             += svq1
VCODEC_TESTS-$(call ENCDEC,WMV1)             += wmv1
VCODEC_TESTS-$(call ENCDEC,WMV2)             += wmv2

ACODEC_TESTS =
ACODEC_TESTS-$(call ENCDEC,AC3)              += ac3
ACODEC_TESTS-$(call ENCDEC,ADPCM_G726)       += g726
ACODEC_TESTS-$(call ENCDEC,ADPCM_IMA_QT)     += adpcm_ima_qt
ACODEC_TESTS-$(call ENCDEC,ADPCM_IMA_WAV)    += adpcm_ima_wav
ACODEC_TESTS-$(call ENCDEC,ADPCM_MS)         += adpcm_ms
ACODEC_TESTS-$(call ENCDEC,ADPCM_SWF)        += adpcm_swf
ACODEC_TESTS-$(call ENCDEC,ADPCM_YAMAHA)     += adpcm_yam
ACODEC_TESTS-$(call ENCDEC,ALAC)             += alac
ACODEC_TESTS-$(call ENCDEC,FLAC)             += flac
ACODEC_TESTS-$(call ENCDEC,MP2)              += mp2
ACODEC_TESTS-$(call ENCDEC,PCM_S16LE)        += pcm         # fixme
ACODEC_TESTS-$(call ENCDEC,WMAV1)            += wmav1
ACODEC_TESTS-$(call ENCDEC,WMAV1)            += wmav2
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 234 235 236 237 238

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 =

239 240
ACODEC_TESTS := $(addprefix regtest-, $(ACODEC_TESTS) $(ACODEC_TESTS-yes))
VCODEC_TESTS := $(addprefix regtest-, $(VCODEC_TESTS) $(VCODEC_TESTS-yes))
241 242
LAVF_TESTS  := $(addprefix regtest-, $(LAVF_TESTS)  $(LAVF_TESTS-yes))
LAVFI_TESTS := $(addprefix regtest-, $(LAVFI_TESTS) $(LAVFI_TESTS-yes))
243

244 245
CODEC_TESTS = $(VCODEC_TESTS) $(ACODEC_TESTS)

246 247
codectest: $(CODEC_TESTS)
lavftest:  $(LAVF_TESTS)
J
Justin Ruggles 已提交
248

249
# lavfitest: $(LAVFI_TESTS)
250

251 252 253
$(ACODEC_TESTS): regtest-aref
$(VCODEC_TESTS): regtest-vref
$(LAVF_TESTS) $(LAVFI_TESTS): regtest-ref
J
Justin Ruggles 已提交
254

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

258
define CODECTEST_CMD
259 260
	$(SRC_PATH)/tests/codec-regression.sh $@ vsynth1 tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)"
	$(SRC_PATH)/tests/codec-regression.sh $@ vsynth2 tests/vsynth2 "$(TARGET_EXEC)" "$(TARGET_PATH)"
261
endef
J
Justin Ruggles 已提交
262

263 264 265
regtest-ref: regtest-aref regtest-vref

regtest-vref: ffmpeg$(EXESUF) tests/vsynth1/00.pgm tests/vsynth2/00.pgm
266
	$(CODECTEST_CMD)
J
Justin Ruggles 已提交
267

268
regtest-aref: ffmpeg$(EXESUF) tests/data/asynth1.sw
269
	@$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec "$(TARGET_EXEC)" "$(TARGET_PATH)"
270 271 272

$(VCODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF)
	@echo "TEST VCODEC $(@:regtest-%=%)"
273 274 275
	@$(CODECTEST_CMD)
	@diff -u -w $(call REFFILE,vsynth1,$@) $(call RESFILE,vsynth1,$@)
	@diff -u -w $(call REFFILE,vsynth2,$@) $(call RESFILE,vsynth2,$@)
J
Justin Ruggles 已提交
276

277 278
$(ACODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF)
	@echo "TEST ACODEC $(@:regtest-%=%)"
279
	@$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec "$(TARGET_EXEC)" "$(TARGET_PATH)"
280 281
	@diff -u -w $(call REFFILE,acodec,$@) $(call RESFILE,acodec,$@)

J
Justin Ruggles 已提交
282
$(LAVF_TESTS):
283
	@echo "TEST LAVF  $(@:regtest-%=%)"
284
	@$(SRC_PATH)/tests/lavf-regression.sh $@ lavf tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)"
285
	@diff -u -w $(call REFFILE,lavf,$@) $(call RESFILE,lavf,$@)
J
Justin Ruggles 已提交
286

287
$(LAVFI_TESTS):
288
	@echo "TEST LAVFI $(@:regtest-%=%)"
289
	@$(SRC_PATH)/tests/lavfi-regression.sh $@ lavfi tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)"
290
	@diff -u -w $(call REFFILE,lavfi,$@) $(call RESFILE,lavfi,$@)
291

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

295
ffservertest: ffserver$(EXESUF) tests/vsynth1/00.pgm tests/data/asynth1.sw
J
Justin Ruggles 已提交
296 297 298 299
	@echo
	@echo "Unfortunately ffserver is broken and therefore its regression"
	@echo "test fails randomly. Treat the results accordingly."
	@echo
300
	$(SRC_PATH)/tests/ffserver-regression.sh $(FFSERVER_REFFILE) $(SRC_PATH)/tests/ffserver.conf
J
Justin Ruggles 已提交
301

302
tests/vsynth1/00.pgm: tests/videogen$(HOSTEXESUF)
J
Justin Ruggles 已提交
303 304 305
	mkdir -p tests/vsynth1
	$(BUILD_ROOT)/$< 'tests/vsynth1/'

306
tests/vsynth2/00.pgm: tests/rotozoom$(HOSTEXESUF)
J
Justin Ruggles 已提交
307 308 309
	mkdir -p tests/vsynth2
	$(BUILD_ROOT)/$< 'tests/vsynth2/' $(SRC_PATH)/tests/lena.pnm

310 311
tests/data/asynth1.sw: tests/audiogen$(HOSTEXESUF)
	mkdir -p tests/data
J
Justin Ruggles 已提交
312 313
	$(BUILD_ROOT)/$< $@

314 315
tests/seek_test$(EXESUF): tests/seek_test.o $(FF_DEP_LIBS)
	$(LD) $(FF_LDFLAGS) -o $@ $< $(FF_EXTRALIBS)
J
Justin Ruggles 已提交
316 317


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