aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/CodecType.cs
blob: d7c68e5f383e207fb633d4c145d602106ac64394 (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
namespace MediaBrowser.MediaEncoding.Probing;

/// <summary>
/// FFmpeg Codec Type.
/// </summary>
public enum CodecType
{
    /// <summary>
    /// Video.
    /// </summary>
    Video,

    /// <summary>
    /// Audio.
    /// </summary>
    Audio,

    /// <summary>
    /// Opaque data information usually continuous.
    /// </summary>
    Data,

    /// <summary>
    /// Subtitles.
    /// </summary>
    Subtitle,

    /// <summary>
    /// Opaque data information usually sparse.
    /// </summary>
    Attachment
}