mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Add GPL modules
This commit is contained in:
22
MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
Normal file
22
MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace MediaBrowser.Model.Dlna
|
||||
{
|
||||
public enum SubtitleDeliveryMethod
|
||||
{
|
||||
/// <summary>
|
||||
/// The encode
|
||||
/// </summary>
|
||||
Encode = 0,
|
||||
/// <summary>
|
||||
/// The embed
|
||||
/// </summary>
|
||||
Embed = 1,
|
||||
/// <summary>
|
||||
/// The external
|
||||
/// </summary>
|
||||
External = 2,
|
||||
/// <summary>
|
||||
/// The HLS
|
||||
/// </summary>
|
||||
Hls = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user