summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/AudioCodec.cs
blob: a2bb5a1050898bc65e71c2f4c102c7fb6efd3190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace HandBrake.SourceData
{
	// Only contains 2 real codecs at the moment as those are what we care about. More will be added later.
	public enum AudioCodec
	{
		Ac3,

		Dts,

		Other
	}
}