Fixed 3 different CA1051 warnings. Changed them to auto properties and rearranged the members to fit styling rules.

Co-authored-by: Derpipose <90276123+Derpipose@users.noreply.github.com>
This commit is contained in:
Thomas Jones
2025-09-23 14:18:15 -06:00
parent 378ba937b6
commit a014cb538e
2 changed files with 9 additions and 8 deletions

View File

@@ -23,9 +23,6 @@ namespace MediaBrowser.Controller.MediaEncoding
{
private static readonly char[] _separators = ['|', ','];
public int? OutputAudioBitrate;
public int? OutputAudioChannels;
private TranscodeReason? _transcodeReasons = null;
public EncodingJobInfo(TranscodingJobType jobType)
@@ -37,6 +34,10 @@ namespace MediaBrowser.Controller.MediaEncoding
SupportedSubtitleCodecs = Array.Empty<string>();
}
public int? OutputAudioBitrate { get; set; }
public int? OutputAudioChannels { get; set; }
public TranscodeReason TranscodeReasons
{
get