示例#1
0
SoundOutput::SoundOutput(int mixing_frequency, int latency)
{
	SoundOutput_Description desc;
	desc.set_mixing_frequency(mixing_frequency);
	desc.set_mixing_latency(latency);
	operator =(SoundOutput(desc));
}
示例#2
0
	SoundOutput Sound::get_current_output()
	{
		return SoundOutput(cl_current_output);
	}