summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-10-03 16:13:32 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-10-03 16:13:32 +0000
commit621dab2328c1828ab669c1903c576c74f6ea6b19 (patch)
tree8d8aee0c56685cbf8952582871ab814e304471f5 /ext
parent419ede208d5ca0c8aac97a5b258d217f8abd03ce (diff)
ext/pulse/: Return -1 instead of 0 in error cases. Fixes #554771.
Original commit message from CVS: * ext/pulse/pulsesink.c: (gst_pulsesink_write): * ext/pulse/pulsesrc.c: (gst_pulsesrc_read): Return -1 instead of 0 in error cases. Fixes #554771.
Diffstat (limited to 'ext')
-rw-r--r--ext/pulse/pulsesink.c8
-rw-r--r--ext/pulse/pulsesrc.c7
2 files changed, 10 insertions, 5 deletions
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c
index 33b51d5435..e434bf4095 100644
--- a/ext/pulse/pulsesink.c
+++ b/ext/pulse/pulsesink.c
@@ -717,10 +717,12 @@ gst_pulsesink_write (GstAudioSink * asink, gpointer data, guint length)
return sum;
+ /* ERRORS */
unlock_and_fail:
-
- pa_threaded_mainloop_unlock (pulsesink->mainloop);
- return 0;
+ {
+ pa_threaded_mainloop_unlock (pulsesink->mainloop);
+ return -1;
+ }
}
static guint
diff --git a/ext/pulse/pulsesrc.c b/ext/pulse/pulsesrc.c
index 26e0897eaf..0e1ca20e17 100644
--- a/ext/pulse/pulsesrc.c
+++ b/ext/pulse/pulsesrc.c
@@ -578,9 +578,12 @@ gst_pulsesrc_read (GstAudioSrc * asrc, gpointer data, guint length)
return sum;
+ /* ERRORS */
unlock_and_fail:
- pa_threaded_mainloop_unlock (pulsesrc->mainloop);
- return 0;
+ {
+ pa_threaded_mainloop_unlock (pulsesrc->mainloop);
+ return -1;
+ }
}
static guint