diff options
author | James Almer <jamrial@gmail.com> | 2020-12-18 18:43:35 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-12-18 18:51:15 -0300 |
commit | 962040ad917263c46c13f618d34db9c7f6494cd0 (patch) | |
tree | 8905be1ae3f02f5f5f91c5fdd802361e28280a41 | |
parent | c9bc7d0f22cdd066d5e359953b36ea82d9f739ef (diff) | |
download | ffmpeg-962040ad917263c46c13f618d34db9c7f6494cd0.tar.gz |
fate/image: add missing ffprobe dependency to fate-dpx-probe
And use the existing probeframes helper while at it.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | tests/fate/image.mak | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/fate/image.mak b/tests/fate/image.mak index 0352e1c05e..eca8d5ab2c 100644 --- a/tests/fate/image.mak +++ b/tests/fate/image.mak @@ -97,9 +97,8 @@ fate-dpx: CMD = framecrc -i $(TARGET_SAMPLES)/dpx/lighthouse_rgb48.dpx FATE_SAMPLES_AVCONV-$(call PARSERDEMDEC, DPX, IMAGE2PIPE, DPX) += fate-dpxparser fate-dpxparser: CMD = framecrc -f image2pipe -i $(TARGET_SAMPLES)/dpx/lena_4x_concat.dpx -sws_flags +accurate_rnd+bitexact -FATE_IMAGE-$(call DEMDEC, IMAGE2, DPX) += fate-dpx-probe -fate-dpx-probe: SRC = $(TARGET_SAMPLES)/dpx/cyan.dpx -fate-dpx-probe: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_frames -show_entries frame=color_transfer,color_range,color_space,color_primaries,sample_aspect_ratio -print_format default -bitexact -v 0 -i "$(SRC)" +FATE_IMAGE_PROBE-$(call DEMDEC, IMAGE2, DPX) += fate-dpx-probe +fate-dpx-probe: CMD = probeframes -show_entries frame=color_transfer,color_range,color_space,color_primaries,sample_aspect_ratio $(TARGET_SAMPLES)/dpx/cyan.dpx FATE_EXR += fate-exr-slice-raw fate-exr-slice-raw: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_slice_raw.exr -pix_fmt gbrapf32le @@ -518,6 +517,9 @@ FATE_IMAGE += $(FATE_XBM-yes) fate-xbm: $(FATE_XBM-yes) FATE_IMAGE += $(FATE_IMAGE-yes) +FATE_IMAGE_PROBE += $(FATE_IMAGE_PROBE-yes) FATE_SAMPLES_FFMPEG += $(FATE_IMAGE) -fate-image: $(FATE_IMAGE) +FATE_SAMPLES_FFPROBE += $(FATE_IMAGE_PROBE) + +fate-image: $(FATE_IMAGE) $(FATE_IMAGE_PROBE) |