mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-12 19:18: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>
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
FATE_API_LIBAVCODEC-$(call ENCDEC, FLAC, FLAC) += fate-api-flac
|
|
fate-api-flac: $(APITESTSDIR)/api-flac-test$(EXESUF)
|
|
fate-api-flac: CMD = run $(APITESTSDIR)/api-flac-test
|
|
fate-api-flac: CMP = null
|
|
fate-api-flac: REF = /dev/null
|
|
|
|
FATE_API_SAMPLES_LIBAVFORMAT-$(call DEMDEC, H264, H264) += fate-api-h264
|
|
fate-api-h264: $(APITESTSDIR)/api-h264-test$(EXESUF)
|
|
fate-api-h264: CMD = run $(APITESTSDIR)/api-h264-test $(TARGET_SAMPLES)/h264-conformance/SVA_NL2_E.264
|
|
|
|
FATE_API_LIBAVFORMAT-yes += fate-api-seek
|
|
fate-api-seek: $(APITESTSDIR)/api-seek-test$(EXESUF) fate-lavf
|
|
fate-api-seek: CMD = run $(APITESTSDIR)/api-seek-test $(TARGET_PATH)/tests/data/lavf/lavf.flv 0 720
|
|
fate-api-seek: CMP = null
|
|
fate-api-seek: REF = /dev/null
|
|
|
|
FATE_API_SAMPLES-$(CONFIG_AVFORMAT) += $(FATE_API_SAMPLES_LIBAVFORMAT-yes)
|
|
|
|
ifdef SAMPLES
|
|
FATE_API_SAMPLES += $(FATE_API_SAMPLES-yes)
|
|
endif
|
|
|
|
FATE_API-$(CONFIG_AVCODEC) += $(FATE_API_LIBAVCODEC-yes)
|
|
FATE_API-$(CONFIG_AVFORMAT) += $(FATE_API_LIBAVFORMAT-yes)
|
|
FATE_API = $(FATE_API-yes)
|
|
|
|
FATE-yes += $(FATE_API) $(FATE_API_SAMPLES)
|
|
|
|
fate-api: $(FATE_API) $(FATE_API_SAMPLES)
|