[MPlayer-cvslog] r24951 - trunk/libao2/ao_pulse.c
reimar
subversion at mplayerhq.hu
Sat Nov 3 11:46:16 CET 2007
Author: reimar
Date: Sat Nov 3 11:46:15 2007
New Revision: 24951
Log:
Remove idiotic check that would always be false
Modified:
trunk/libao2/ao_pulse.c
Modified: trunk/libao2/ao_pulse.c
==============================================================================
--- trunk/libao2/ao_pulse.c (original)
+++ trunk/libao2/ao_pulse.c Sat Nov 3 11:46:15 2007
@@ -300,7 +300,7 @@ static int get_space(void) {
pa_threaded_mainloop_lock(mainloop);
l = pa_stream_writable_size(stream);
pa_threaded_mainloop_unlock(mainloop);
- return l < 0 ? 0 : l;
+ return l;
}
/** Return the current latency in seconds */
More information about the MPlayer-cvslog
mailing list