Skip to content

Commit

Permalink
fix: ffmpeg crash on invalid frame header
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaspandersson authored and deadbeef84 committed Oct 18, 2024
1 parent 8aa7084 commit 9445ce1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/ffmpeg/producer/av_producer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ class Decoder
}
} catch (boost::thread_interrupted&) {
// Do nothing...
} catch (...) {
eof = true;
CASPAR_LOG_CURRENT_EXCEPTION();
}
});
}
Expand Down

0 comments on commit 9445ce1

Please sign in to comment.