add another unrecoverable error

This commit is contained in:
jb-alvarado 2023-02-13 08:15:41 +01:00
parent 1c54bc0e2d
commit 21f28807a3

View File

@ -34,11 +34,12 @@ pub const FFMPEG_IGNORE_ERRORS: [&str; 11] = [
"frame size not set", "frame size not set",
]; ];
pub const FFMPEG_UNRECOVERABLE_ERRORS: [&str; 4] = [ pub const FFMPEG_UNRECOVERABLE_ERRORS: [&str; 5] = [
"Address already in use", "Address already in use",
"Invalid argument", "Invalid argument",
"Numerical result", "Numerical result",
"Error initializing complex filters", "Error initializing complex filters",
"Error while decoding stream #0:0: Invalid data found when processing input",
]; ];
#[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq)] #[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq)]