using System;
// This file is part of the ANX.Framework and originally taken from
// the AC.AL OpenAL library, released under the MIT License.
// For details see: http://acal.codeplex.com/license
namespace WaveUtils
{
public enum WaveFormat
{
PCM = 1,
///
/// http://wiki.multimedia.cx/index.php?title=Microsoft_ADPCM
///
MS_ADPCM = 2,
IEEE_FLOAT = 3,
///
/// 8-bit ITU-T G.711 A-law
/// http://hazelware.luggle.com/tutorials/mulawcompression.html
///
ALAW = 6,
///
/// 8-bit ITU-T G.711 µ-law
/// http://hazelware.luggle.com/tutorials/mulawcompression.html
///
MULAW = 7,
///
/// Determined by SubFormat
///
WAVE_FORMAT_EXTENSIBLE = 0xFFFE,
}
}