mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
e23a01c06d
Works only with video stream. First pass without seeking -- counts crcs of a frames and store it in an array. After that it seeks a lot in different places and checks if crcs of these frames and crcs of frames in array are the same. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
19 lines
765 B
Makefile
19 lines
765 B
Makefile
APITESTPROGS-$(call ENCDEC, FLAC, FLAC) += api-flac
|
|
APITESTPROGS-$(call DEMDEC, H264, H264) += api-h264
|
|
APITESTPROGS-yes += api-seek
|
|
APITESTPROGS += $(APITESTPROGS-yes)
|
|
|
|
APITESTOBJS := $(APITESTOBJS:%=$(APITESTSDIR)%) $(APITESTPROGS:%=$(APITESTSDIR)/%-test.o)
|
|
APITESTPROGS := $(APITESTPROGS:%=$(APITESTSDIR)/%-test$(EXESUF))
|
|
-include $(wildcard $(APITESTOBJS:.o=.d))
|
|
|
|
$(APITESTOBJS): | $(sort $(dir $(APITESTOBJS)))
|
|
$(APITESTOBJS) $(APITESTOBJS:.o=.i): CPPFLAGS += -DTEST
|
|
$(APITESTOBJS) $(APITESTOBJS:.o=.i): CFLAGS += -Umain
|
|
|
|
$(APITESTPROGS): %$(EXESUF): %.o $(EXEOBJS) $(FF_DEP_LIBS)
|
|
$(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $(filter %.o,$^) $(FF_DEP_LIBS) $(FFEXTRALIBS) $(ELIBS)
|
|
|
|
testclean::
|
|
$(RM) $(addprefix $(APITESTSDIR)/,$(CLEANSUFFIXES) *-test$(EXESUF))
|