2012-08-29 18:07:54 +00:00
|
|
|
|
// This file is part of the ANX.Framework created by the
|
2012-08-17 14:16:58 +00:00
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
|
|
|
|
|
|
|
|
|
namespace ANX.Framework.Content.Pipeline.Audio
|
|
|
|
|
{
|
2012-08-29 18:07:54 +00:00
|
|
|
|
public enum ConversionQuality
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 96 KBit/s
|
|
|
|
|
/// </summary>
|
|
|
|
|
Low,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 128 KBit/s
|
|
|
|
|
/// </summary>
|
|
|
|
|
Medium,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 192 KBit/s
|
|
|
|
|
/// </summary>
|
|
|
|
|
Best,
|
|
|
|
|
}
|
2012-08-17 14:16:58 +00:00
|
|
|
|
}
|