mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
use err = snd_... instead of errno afterwards -- removed unnecessary include
Original commit message from CVS: use err = snd_... instead of errno afterwards -- removed unnecessary include
This commit is contained in:
parent
f7995c6fd8
commit
7b30d7b9a4
1 changed files with 5 additions and 4 deletions
|
@ -19,7 +19,6 @@
|
|||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <sys/time.h>
|
||||
#include "gstalsa.h"
|
||||
|
||||
|
@ -1085,9 +1084,11 @@ gst_alsa_update_avail (GstAlsa *this)
|
|||
inline static gboolean
|
||||
gst_alsa_pcm_wait (GstAlsa *this)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (snd_pcm_state (this->handle) == SND_PCM_STATE_RUNNING) {
|
||||
if (snd_pcm_wait (this->handle, 1000) < 0) {
|
||||
if (errno == EINTR) {
|
||||
if ((err = snd_pcm_wait (this->handle, 1000)) < 0) {
|
||||
if (err == EINTR) {
|
||||
/* happens mostly when run under gdb, or when exiting due to a signal */
|
||||
GST_DEBUG (GST_CAT_PLUGIN_INFO, "got interrupted while waiting");
|
||||
if (gst_element_interrupt (GST_ELEMENT (this))) {
|
||||
|
@ -1096,7 +1097,7 @@ gst_alsa_pcm_wait (GstAlsa *this)
|
|||
return FALSE;
|
||||
}
|
||||
}
|
||||
g_warning ("error waiting for alsa pcm: (%d: %s)", errno, strerror (errno));
|
||||
g_warning ("error waiting for alsa pcm: (%d: %s)", err, snd_strerror (err));
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue