aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/TranscodeSeekInfo.cs
blob: 1563ffd17ade6c1c99a23414e7dd715beaa16f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Dlna
{
    /// <summary>
    /// The transcode seek info.
    /// </summary>
    public enum TranscodeSeekInfo
    {
        /// <summary>
        /// The seek method is chosen automatically.
        /// </summary>
        Auto = 0,

        /// <summary>
        /// Seeking is performed by byte position.
        /// </summary>
        Bytes = 1
    }
}