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 Julusian committed Jan 9, 2025
1 parent 8c84357 commit c676f8f
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 @@ -233,6 +233,9 @@ class Decoder
}
} catch (boost::thread_interrupted&) {
// Do nothing...
} catch (...) {
eof = true;
CASPAR_LOG_CURRENT_EXCEPTION();
}
});
}
Expand Down

0 comments on commit c676f8f

Please # to comment.