[MPlayer-cvslog] r23613 - trunk/libao2/ao_sun.c
reimar
subversion at mplayerhq.hu
Sat Jun 23 20:16:15 CEST 2007
Author: reimar
Date: Sat Jun 23 20:16:14 2007
New Revision: 23613
Log:
Fix r23353, it broke ao_sun on non-BSD due to accidentially removing
a return ao_data.outburst;
Modified:
trunk/libao2/ao_sun.c
Modified: trunk/libao2/ao_sun.c
==============================================================================
--- trunk/libao2/ao_sun.c (original)
+++ trunk/libao2/ao_sun.c Sat Jun 23 20:16:14 2007
@@ -655,6 +655,7 @@ static int get_space(void){
#if !defined (__OpenBSD__) && !defined(__NetBSD__)
if (queued_bursts - info.play.eof > 2)
return 0;
+ return ao_data.outburst;
#else
return info.hiwat * info.blocksize - info.play.seek;
#endif
More information about the MPlayer-cvslog
mailing list