vpx.mak 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. FATE_VP3 += fate-vp31
  2. fate-vp31: CMD = framecrc -i $(SAMPLES)/vp3/vp31.avi
  3. FATE_VP3 += fate-vp3-coeff-level64
  4. fate-vp3-coeff-level64: CMD = framecrc -i $(SAMPLES)/vp3/coeff_level64.mkv
  5. FATE_SAMPLES_AVCONV += $(FATE_VP3)
  6. fate-vp3: $(FATE_VP3)
  7. FATE_SAMPLES_AVCONV += fate-vp5
  8. fate-vp5: CMD = framecrc -i $(SAMPLES)/vp5/potter512-400-partial.avi -an
  9. FATE_VP6 += fate-vp60
  10. fate-vp60: CMD = framecrc -i $(SAMPLES)/ea-vp6/g36.vp6
  11. FATE_VP6 += fate-vp61
  12. fate-vp61: CMD = framecrc -i $(SAMPLES)/ea-vp6/MovieSkirmishGondor.vp6 -t 4
  13. FATE_VP6 += fate-vp6a
  14. fate-vp6a: CMD = framecrc -i $(SAMPLES)/flash-vp6/300x180-Scr-f8-056alpha.flv
  15. FATE_VP6 += fate-vp6f
  16. fate-vp6f: CMD = framecrc -i $(SAMPLES)/flash-vp6/clip1024.flv
  17. FATE_SAMPLES_AVCONV += $(FATE_VP6)
  18. fate-vp6: $(FATE_VP6)
  19. VP8_SUITE = 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017
  20. define FATE_VP8_SUITE
  21. FATE_VP8 += fate-vp8-test-vector$(2)-$(1)
  22. fate-vp8-test-vector$(2)-$(1): CMD = framemd5 $(3) -i $(SAMPLES)/vp8-test-vectors-r1/vp80-00-comprehensive-$(1).ivf
  23. fate-vp8-test-vector$(2)-$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-test-vector-$(1)
  24. endef
  25. define FATE_VP8_FULL
  26. $(foreach N,$(VP8_SUITE),$(eval $(call FATE_VP8_SUITE,$(N),$(1),$(2))))
  27. # FIXME this file contains two frames with identical timestamps,
  28. # so ffmpeg drops one of them
  29. FATE_VP8 += fate-vp8-sign-bias$(1)
  30. fate-vp8-sign-bias$(1): CMD = framemd5 $(2) -i $(SAMPLES)/vp8/sintel-signbias.ivf
  31. fate-vp8-sign-bias$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-sign-bias
  32. FATE_VP8 += fate-vp8-size-change$(1)
  33. fate-vp8-size-change$(1): CMD = framemd5 $(2) -flags +bitexact -i $(SAMPLES)/vp8/frame_size_change.webm -frames:v 30 -sws_flags bitexact+bilinear
  34. fate-vp8-size-change$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-size-change
  35. endef
  36. $(eval $(call FATE_VP8_FULL))
  37. $(eval $(call FATE_VP8_FULL,-emu-edge,-flags +emu_edge))
  38. FATE_SAMPLES_AVCONV += $(FATE_VP8)
  39. fate-vp8: $(FATE_VP8)