Fix r23353, it broke ao_sun on non-BSD due to accidentially removing

a return ao_data.outburst;


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23613 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-06-23 18:16:14 +00:00
parent 74047be59a
commit f0ca74bd86
1 changed files with 1 additions and 0 deletions

View File

@ -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