From f46ff8528791d810c6d7a3a1bde2e3714a4b3aa1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 4 Oct 2021 08:23:18 +1000 Subject: [PATCH] Fix indentation in FFmpegService --- src/BizHawk.Common/FFmpegService.cs | 86 ++++++++++++++--------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/src/BizHawk.Common/FFmpegService.cs b/src/BizHawk.Common/FFmpegService.cs index 37f9061816..4d98bb1520 100644 --- a/src/BizHawk.Common/FFmpegService.cs +++ b/src/BizHawk.Common/FFmpegService.cs @@ -73,51 +73,51 @@ namespace BizHawk.Common } ProcessStartInfo oInfo = new ProcessStartInfo(FFmpegPath, sbCmdline.ToString()) - { - UseShellExecute = false, - CreateNoWindow = true, - RedirectStandardOutput = true, - RedirectStandardError = true - }; - - string result = ""; - - //probably naturally thread-safe... - //make a lock if not - Action readerloop = (reader,ignore) => - { - string line = ""; - int idx = 0; - for (; ; ) { - int c = reader.Read(); - if (c == -1) - break; - else if (c == '\r') - idx = 0; - else if (c == '\n') - { - if(!ignore) - lock(oInfo) - result += line + "\n"; - line = ""; - idx = 0; - } - else - { - if (idx < line.Length) - line = line.Substring(0, idx) + (char)c + line.Substring(idx + 1); - else - line += (char)c; - idx++; - } - } + UseShellExecute = false, + CreateNoWindow = true, + RedirectStandardOutput = true, + RedirectStandardError = true + }; - if(!ignore) - if(line != "") - lock(oInfo) - result += line + "\n"; //not sure about the final \n but i concat it after each finished line so why not.. whatever - }; + string result = ""; + + //probably naturally thread-safe... + //make a lock if not + Action readerloop = (reader,ignore) => + { + string line = ""; + int idx = 0; + for (; ; ) + { + int c = reader.Read(); + if (c == -1) + break; + else if (c == '\r') + idx = 0; + else if (c == '\n') + { + if(!ignore) + lock(oInfo) + result += line + "\n"; + line = ""; + idx = 0; + } + else + { + if (idx < line.Length) + line = line.Substring(0, idx) + (char)c + line.Substring(idx + 1); + else + line += (char)c; + idx++; + } + } + + if(!ignore) + if(line != "") + lock(oInfo) + result += line + "\n"; //not sure about the final \n but i concat it after each finished line so why not.. whatever + }; Process proc = Process.Start(oInfo);