From 6ab703fb871abc91da454b775a3e0f8ff9dd10fc Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Tue, 2 Jul 2024 15:08:12 +0200 Subject: [PATCH] ignore timestamp discontinuity --- ffplayout/src/utils/config.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ffplayout/src/utils/config.rs b/ffplayout/src/utils/config.rs index 25fefb78..044329fd 100644 --- a/ffplayout/src/utils/config.rs +++ b/ffplayout/src/utils/config.rs @@ -26,7 +26,7 @@ pub const IMAGE_FORMAT: [&str; 21] = [ ]; // Some well known errors can be safely ignore -pub const FFMPEG_IGNORE_ERRORS: [&str; 11] = [ +pub const FFMPEG_IGNORE_ERRORS: [&str; 12] = [ "ac-tex damaged", "codec s302m, is muxed as a private data stream", "corrupt decoded frame in stream", @@ -36,6 +36,7 @@ pub const FFMPEG_IGNORE_ERRORS: [&str; 11] = [ "Referenced QT chapter track not found", "skipped MB in I-frame at", "Thread message queue blocking", + "timestamp discontinuity", "Warning MVs not available", "frame size not set", ];