Hello,
RTP Audio Demo working file in Windows XP system but throws error saying no device driver....in Windows 2003 server.
AudioOut aout = new AudioOut(AudioOut.Devices[0], 8000, 16, 2); statement internally calls function
int result = WavMethods.waveOutOpen(out m_pWavDevHandle, m_pOutDevice.Index, format, m_pWaveOutProc, 0, WavConstants.CALLBACK_FUNCTION);
if (result != MMSYSERR.NOERROR)
{
throw new Exception("Failed to open wav device, error: " + result.ToString() );
}
this is throwing above said exception. Please help me to solve the problem.
Regards,
gkris82