Apply suggestions from code review
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
990bcc507f
commit
3b12dc6d7a
|
@ -227,11 +227,13 @@ public static class HlsCodecStringHelpers
|
|||
bitDepth = 8;
|
||||
}
|
||||
|
||||
result.Append("." + level)
|
||||
.Append(tierFlag ? "H" : "M");
|
||||
result.Append('.')
|
||||
.Append(level)
|
||||
.Append(tierFlag ? 'H' : 'M');
|
||||
|
||||
string bitDepthD2 = bitDepth.ToString("D2", CultureInfo.InvariantCulture);
|
||||
result.Append("." + bitDepthD2);
|
||||
result.Append('.')
|
||||
.Append(bitDepthD2);
|
||||
|
||||
return result.ToString();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user