mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Merged revisions 115944 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r115944 | file | 2008-05-13 17:28:23 -0300 (Tue, 13 May 2008) | 4 lines Use the right flag to open the audio in non-blocking. (closes issue #12616) Reported by: nicklewisdigiumuser ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115945 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -89,7 +89,6 @@ static snd_pcm_format_t format = SND_PCM_FORMAT_S16_LE;
|
||||
static snd_pcm_format_t format = SND_PCM_FORMAT_S16_BE;
|
||||
#endif
|
||||
|
||||
/* static int block = O_NONBLOCK; */
|
||||
static char indevname[50] = ALSA_INDEV;
|
||||
static char outdevname[50] = ALSA_OUTDEV;
|
||||
|
||||
@@ -170,7 +169,7 @@ static snd_pcm_t *alsa_card_init(char *dev, snd_pcm_stream_t stream)
|
||||
unsigned int rate = DESIRED_RATE;
|
||||
snd_pcm_uframes_t start_threshold, stop_threshold;
|
||||
|
||||
err = snd_pcm_open(&handle, dev, stream, O_NONBLOCK);
|
||||
err = snd_pcm_open(&handle, dev, stream, SND_PCM_NONBLOCK);
|
||||
if (err < 0) {
|
||||
ast_log(LOG_ERROR, "snd_pcm_open failed: %s\n", snd_strerror(err));
|
||||
return NULL;
|
||||
|
Reference in New Issue
Block a user