diff options
| author | Brian Howe <howe.m.brian@gmail.com> | 2024-02-27 21:07:30 -0600 |
|---|---|---|
| committer | Brian Howe <howe.m.brian@gmail.com> | 2024-02-27 21:07:30 -0600 |
| commit | 54eb81395ef8d3d4cb064b56361ce94fc72b38b5 (patch) | |
| tree | 73240b556055557b0ae034ef5d5ba60cb5cb051e /Jellyfin.Data/Enums/AudioSpatialFormat.cs | |
| parent | 7f1fec688cc1a6f7f69fa5b059af01cf9c456d3f (diff) | |
| parent | 4786901bb796c3e912f13b686571fde8d16f49c5 (diff) | |
Merge branch 'master' into bhowe34/fix-replace-missing-metadata-for-music
Diffstat (limited to 'Jellyfin.Data/Enums/AudioSpatialFormat.cs')
| -rw-r--r-- | Jellyfin.Data/Enums/AudioSpatialFormat.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/AudioSpatialFormat.cs b/Jellyfin.Data/Enums/AudioSpatialFormat.cs new file mode 100644 index 000000000..5e3a12332 --- /dev/null +++ b/Jellyfin.Data/Enums/AudioSpatialFormat.cs @@ -0,0 +1,22 @@ +namespace Jellyfin.Data.Enums; + +/// <summary> +/// An enum representing formats of spatial audio. +/// </summary> +public enum AudioSpatialFormat +{ + /// <summary> + /// None audio spatial format. + /// </summary> + None, + + /// <summary> + /// Dolby Atmos audio spatial format. + /// </summary> + DolbyAtmos, + + /// <summary> + /// DTS:X audio spatial format. + /// </summary> + DTSX, +} |
