aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fate
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-06-03 18:53:54 +0200
committerAnton Khirnov <anton@khirnov.net>2023-06-05 16:15:04 +0200
commit09af34dc919236916d71b9f0f1997f9aff4e4048 (patch)
tree4378c33b54dbe0cef2a8f77fa3293861286f6649 /tests/fate
parentb1c3d81e71f78e4b3b2c2901ac4649cb74aec272 (diff)
downloadffmpeg-09af34dc919236916d71b9f0f1997f9aff4e4048.tar.gz
tests/fate/ffmpeg: add tests for -max_error_rate
Diffstat (limited to 'tests/fate')
-rw-r--r--tests/fate/ffmpeg.mak6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/fate/ffmpeg.mak b/tests/fate/ffmpeg.mak
index 800f3a03d2..223bc97f8e 100644
--- a/tests/fate/ffmpeg.mak
+++ b/tests/fate/ffmpeg.mak
@@ -227,3 +227,9 @@ FATE_SAMPLES_FFMPEG-yes += $(FATE_TIME_BASE-yes)
# test -r used as an input option
fate-ffmpeg-input-r: CMD = framecrc -r 27 -idct simple -i $(TARGET_SAMPLES)/mpeg2/sony-ct3.bs
FATE_SAMPLES_FFMPEG-$(call FRAMECRC, MPEGVIDEO, MPEG2VIDEO) += fate-ffmpeg-input-r
+
+# file with completely undecodable TTA audio stream
+# by default should exit with error code 69
+fate-ffmpeg-error-rate-fail: CMD = ffmpeg -i $(TARGET_SAMPLES)/mkv/h264_tta_undecodable.mkv -c:v copy -f null -; test $$? -eq 69
+fate-ffmpeg-error-rate-pass: CMD = ffmpeg -i $(TARGET_SAMPLES)/mkv/h264_tta_undecodable.mkv -c:v copy -f null - -max_error_rate 1
+FATE_SAMPLES_FFMPEG-$(call ENCDEC, PCM_S16LE TTA, NULL MATROSKA) += fate-ffmpeg-error-rate-fail fate-ffmpeg-error-rate-pass