mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Document SubtitlePlaybackMode.cs
This commit is contained in:
parent
0110b2472d
commit
65bce98ec5
1 changed files with 23 additions and 3 deletions
|
@ -1,13 +1,33 @@
|
|||
#pragma warning disable CS1591
|
||||
|
||||
namespace Jellyfin.Data.Enums
|
||||
namespace Jellyfin.Data.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// An enum representing a subtitle playback mode.
|
||||
/// </summary>
|
||||
public enum SubtitlePlaybackMode
|
||||
{
|
||||
/// <summary>
|
||||
/// The default subtitle playback mode.
|
||||
/// </summary>
|
||||
Default = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Always show subtitles.
|
||||
/// </summary>
|
||||
Always = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Only show forced subtitles.
|
||||
/// </summary>
|
||||
OnlyForced = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Don't show subtitles.
|
||||
/// </summary>
|
||||
None = 3,
|
||||
|
||||
/// <summary>
|
||||
/// Only show subtitles when the current audio stream is in a different language.
|
||||
/// </summary>
|
||||
Smart = 4
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue