Home | History | Annotate | Download | only in audio

Lines Matching defs:audio_fd

53 	int audio_fd;
73 audio_fd = open(audiodev, flags, 0);
76 if ( (audio_fd < 0) && (SDL_strlen(audiodev) < (sizeof(audiopath)-3)) ) {
87 audio_fd = open(audiopath, flags, 0);
89 } while ( exists && (audio_fd < 0) );
96 return(audio_fd);
129 int audio_fd;
138 audio_fd = open(audiodev, flags, 0);
143 return audio_fd;
149 int audio_fd;
153 audio_fd = OpenUserDefinedDevice(path,maxlen,flags);
154 if ( audio_fd != -1 ) {
155 return audio_fd;
167 audio_fd = open(audiopath, flags, 0);
168 if ( audio_fd > 0 ) {
172 return audio_fd;