Commit 1ba0d9b5 authored by Michael Niedermayer's avatar Michael Niedermayer

oss: warn when non block mode cannot be enabled.

Fixes CID732183
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a0348d09
...@@ -76,8 +76,11 @@ static int audio_open(AVFormatContext *s1, int is_output, const char *audio_devi ...@@ -76,8 +76,11 @@ static int audio_open(AVFormatContext *s1, int is_output, const char *audio_devi
} }
/* non blocking mode */ /* non blocking mode */
if (!is_output) if (!is_output) {
fcntl(audio_fd, F_SETFL, O_NONBLOCK); if (fcntl(audio_fd, F_SETFL, O_NONBLOCK) < 0) {
av_log(s1, AV_LOG_WARNING, "%s: Could not enable non block mode (%s)\n", audio_device, strerror(errno));
}
}
s->frame_size = AUDIO_BLOCK_SIZE; s->frame_size = AUDIO_BLOCK_SIZE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment