diff options
author | James Almer <jamrial@gmail.com> | 2024-03-14 10:47:05 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-03-14 10:48:09 -0300 |
commit | ad6347fc3797a8deca29630fa26ac343c7539463 (patch) | |
tree | 8e6dc38123cf67315bb946561c62c2ca973b8a01 /tests | |
parent | d925b2e13982b528e5feb0392d4edcaaa386525f (diff) | |
download | ffmpeg-ad6347fc3797a8deca29630fa26ac343c7539463.tar.gz |
fate/ffmpeg: add a -threads input option to the loopback decoder
Honor the requested value passed when calling make fate.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fate/ffmpeg.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate/ffmpeg.mak b/tests/fate/ffmpeg.mak index e1705141ec..22f8ea12be 100644 --- a/tests/fate/ffmpeg.mak +++ b/tests/fate/ffmpeg.mak @@ -257,7 +257,7 @@ FATE_FFMPEG-$(call REMUX, RAWVIDEO) += fate-ffmpeg-streamcopy-t # Test loopback decoding and passing the output to a complex graph. fate-ffmpeg-loopback-decoding: tests/data/vsynth_lena.yuv -fate-ffmpeg-loopback-decoding: CMD = transcode \ +fate-ffmpeg-loopback-decoding: CMD = transcode \ "rawvideo -s 352x288 -pix_fmt yuv420p" $(TARGET_PATH)/tests/data/vsynth_lena.yuv nut \ - "-map 0:v:0 -c:v mpeg2video -f null - -flags +bitexact -dec 0:0 -filter_complex '[0:v][dec:0]hstack[stack]' -map '[stack]' -c:v ffv1" "" + "-map 0:v:0 -c:v mpeg2video -f null - -flags +bitexact -threads $(THREADS) -dec 0:0 -filter_complex '[0:v][dec:0]hstack[stack]' -map '[stack]' -c:v ffv1" "" FATE_FFMPEG-$(call ENCDEC2, MPEG2VIDEO, FFV1, NUT, HSTACK_FILTER PIPE_PROTOCOL FRAMECRC_MUXER) += fate-ffmpeg-loopback-decoding |