mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
26 lines
499 B
C#
26 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.HAL.Drivers.PCI.Audio
|
|
{
|
|
public class PCMStream
|
|
{
|
|
double freq;
|
|
char[] data;
|
|
public PCMStream(double freq, char[] data)
|
|
{
|
|
this.freq = freq;
|
|
this.data = data;
|
|
}
|
|
public char[] getData()
|
|
{
|
|
return data;
|
|
}
|
|
public double getFreq()
|
|
{
|
|
return freq;
|
|
}
|
|
}
|
|
}
|