aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-02-25 20:41:11 +0100
committerGitHub <noreply@github.com>2024-02-25 20:41:11 +0100
commitc61f6945d0aef7950def528b44e1b30934e18de8 (patch)
treed2abcac64ba23d4b143901360e1126478050f75d
parent321e9fb0b5e5583734b154704fc3eb39c62a2005 (diff)
parent36f298e4173b4f08edfdf9a3a2f09e887846e935 (diff)
Merge pull request #11064 from Shadowghost/bdmv-fixes
Do not dispose the ffmpeg process
-rw-r--r--MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
index 146b30643..8bace15c6 100644
--- a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
+++ b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
@@ -437,7 +437,7 @@ public sealed class TranscodeManager : ITranscodeManager, IDisposable
}
}
- using var process = new Process
+ var process = new Process
{
StartInfo = new ProcessStartInfo
{