mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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/branches/1.4@115944 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -105,7 +105,6 @@ static snd_pcm_format_t format = SND_PCM_FORMAT_S16_LE;
|
|||||||
static snd_pcm_format_t format = SND_PCM_FORMAT_S16_BE;
|
static snd_pcm_format_t format = SND_PCM_FORMAT_S16_BE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* static int block = O_NONBLOCK; */
|
|
||||||
static char indevname[50] = ALSA_INDEV;
|
static char indevname[50] = ALSA_INDEV;
|
||||||
static char outdevname[50] = ALSA_OUTDEV;
|
static char outdevname[50] = ALSA_OUTDEV;
|
||||||
|
|
||||||
@@ -360,7 +359,7 @@ static snd_pcm_t *alsa_card_init(char *dev, snd_pcm_stream_t stream)
|
|||||||
/* unsigned int per_max = 8; */
|
/* unsigned int per_max = 8; */
|
||||||
snd_pcm_uframes_t start_threshold, stop_threshold;
|
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) {
|
if (err < 0) {
|
||||||
ast_log(LOG_ERROR, "snd_pcm_open failed: %s\n", snd_strerror(err));
|
ast_log(LOG_ERROR, "snd_pcm_open failed: %s\n", snd_strerror(err));
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Reference in New Issue
Block a user