aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
blob: cae9ca0195a0f2809008d9af19b5258508c856d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma warning disable CS1591
#pragma warning disable SA1600

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
    }
}