aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-04-16 21:41:29 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-04-28 02:39:37 +0200
commit0bc3ab3a5e56b7ddf0f938e27f6d45cc29361e2b (patch)
treea41ce29a921aa9714a27090c18fcd6afc4648ac5
parent737130ce6faa8a021c29fa39cbc27277164e61c7 (diff)
downloadffmpeg-0bc3ab3a5e56b7ddf0f938e27f6d45cc29361e2b.tar.gz
tests/Makefile: Add FRAMECRC function
Intended for scenarios that currently use DEMDEC, but are missing the requirements that are implicitly needed by framecrc. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--tests/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index e175631258..1c9e3594c0 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -88,6 +88,9 @@ REMUX = $(call ALLYES, $(firstword $(1))_MUXER $(lastword $(1))_DEMUXER \
DEMDEC = $(call ALLYES, $(1)_DEMUXER $(2:%=%_DECODER) $(3) FILE_PROTOCOL)
ENCMUX = $(call ALLYES, $(1:%=%_ENCODER) $(2)_MUXER $(3))
+FRAMECRC = $(call ALLYES, $(1)_DEMUXER $(2:%=%_DECODER) $(3) \
+ PCM_S16LE_ENCODER RAWVIDEO_ENCODER FRAMECRC_MUXER \
+ PIPE_PROTOCOL FILE_PROTOCOL)
DEMMUX = $(call ALLYES, $(1)_DEMUXER $(2)_MUXER $(3) FILE_PROTOCOL)