aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaStreamType.cs
blob: 83751a6a7d75b9a2d333612a172ae922740aa173 (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
29
30
31
32
33
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum MediaStreamType.
    /// </summary>
    public enum MediaStreamType
    {
        /// <summary>
        /// The audio.
        /// </summary>
        Audio,

        /// <summary>
        /// The video.
        /// </summary>
        Video,

        /// <summary>
        /// The subtitle.
        /// </summary>
        Subtitle,

        /// <summary>
        /// The embedded image.
        /// </summary>
        EmbeddedImage,

        /// <summary>
        /// The data.
        /// </summary>
        Data
    }
}