Cosmos/source/Cosmos/Cosmos.Hardware/Audio/PCMStream.cs
2008-08-03 21:40:12 +00:00

22 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Hardware.Audio
{
public class PCMStream
{
int rate;
short[] data;
double phase;
public PCMStream(int rate, short[] data, double phase)
{
this.rate = rate;
this.data = data;
this.phase = phase;
}
}
}