obs-ffmpeg: Treat EINVAL as non-fatal in ffmpeg-mux

This commit is contained in:
Eric Lindvall
2020-11-15 14:33:05 -08:00
committed by Jim
parent 484084abb5
commit 315fbd6f33

View File

@@ -807,8 +807,8 @@ static inline bool ffmpeg_mux_packet(struct ffmpeg_mux *ffm, uint8_t *buf,
ret, av_err2str(ret));
}
/* Treat "Invalid data found when processing input" as non-fatal */
if (ret == AVERROR_INVALIDDATA) {
/* Treat "Invalid data found when processing input" and "Invalid argument" as non-fatal */
if (ret == AVERROR_INVALIDDATA || ret == EINVAL) {
return true;
}