summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/AudioCodec.cs
blob: ee5f8133d2f44cff64a734e03321dda050e53177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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
	}
}