diff options
| author | Nyanmisaka <nst799610810@gmail.com> | 2023-06-20 05:09:22 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 05:09:22 +0800 |
| commit | f8d7f4acdb486c8bc2f2f6a3ced604b0e5f25f16 (patch) | |
| tree | 3ee85b57860308bc9e14b01d2c4c13cd2d37aaa9 | |
| parent | 3b12dc6d7ae0984aa96929b89dfbeb73f55568d9 (diff) | |
Apply suggestions from code review
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
| -rw-r--r-- | Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs index adb248670..9a141a16d 100644 --- a/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs +++ b/Jellyfin.Api/Helpers/HlsCodecStringHelpers.cs @@ -181,13 +181,13 @@ public static class HlsCodecStringHelpers } /// <summary> - /// Gets a AV1 codec string. + /// Gets an AV1 codec string. /// </summary> /// <param name="profile">AV1 profile.</param> /// <param name="level">AV1 level.</param> /// <param name="tierFlag">AV1 tier flag.</param> /// <param name="bitDepth">AV1 bit depth.</param> - /// <returns>AV1 string.</returns> + /// <returns>The AV1 codec string.</returns> public static string GetAv1String(string? profile, int level, bool tierFlag, int bitDepth) { // https://aomedia.org/av1/specification/annex-a/ |
