NewTOAPIA.Media.ALawDecoder.ALawDecoder C# (CSharp) Method

ALawDecoder() static private method

static private ALawDecoder ( ) : System
return System
        static ALawDecoder()
        {
            aLawToPcmMap = new short[256];
            for (byte i = 0; i < byte.MaxValue; i++)
                aLawToPcmMap[i] = decode(i);
        }