aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/EncodingContext.cs
blob: 1408333d2e96902b7438ac184c7ca033059cf2c9 (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 encoding context.
    /// </summary>
    public enum EncodingContext
    {
        /// <summary>
        /// The media is transcoded on the fly and delivered as a stream.
        /// </summary>
        Streaming = 0,

        /// <summary>
        /// The media is transcoded to a static file.
        /// </summary>
        Static = 1
    }
}