You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/store/re_video/src/decode/ffmpeg.rs
+19-17
Original file line number
Diff line number
Diff line change
@@ -241,25 +241,27 @@ impl Drop for FfmpegProcessAndListener {
241
241
// This should wake up the listen thread if it is sleeping, but that may take a while.
242
242
self.ffmpeg.kill().ok();
243
243
244
-
// Wait for both threads to shut down.
245
-
// Since we killed `on_output` this is not strictly necessary as the threads should come down eventually.
246
-
// However, we'd like to avoid getting into a situation where repeated stream reset causes threads to accumulate.
247
-
// With the above measures, this was found to be fast & reliable, but if stalls may show up here again,
248
-
// we may decide to skip the below steps.
249
-
// (DO NOT remove this as workaround for a stuck program! While this MAY be slow, it is NOT supposed to hang which indicates a bug in the shutdown logic!)
0 commit comments