/dev/dsp

  1. desertwind

    Handling /dev/dsp in C

    Hi gurus, For one of my project text2speech project, I want to access the sound device to play a sound file. Code is written in C like this fd = open("/dev/dsp", O_RDWR); if (fd < 0) { perror("open of /dev/dsp failed"); exit(1); } The problem I am experiencing here is...
Top Bottom