summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Encoding/AudioEncoder.cs
blob: b4eee524964e6009574279c881a2c9299cc9ec8b (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HandBrake.Interop
{
    public enum AudioEncoder
    {
        [DisplayString("AAC (faac)")]
        Faac = 0,

        [DisplayString("MP3 (lame)")]
        Lame,

        [DisplayString("AC3 Passthrough")]
        Ac3Passthrough,

        [DisplayString("DTS Passthrough")]
        DtsPassthrough,

        [DisplayString("Vorbis (vorbis)")]
        Vorbis
    }
}