mirror of https://github.com/mpv-player/mpv
Remove idiotic check that would always be false
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24951 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
420b6b4d44
commit
11e44a3936
|
@ -300,7 +300,7 @@ static int get_space(void) {
|
||||||
pa_threaded_mainloop_lock(mainloop);
|
pa_threaded_mainloop_lock(mainloop);
|
||||||
l = pa_stream_writable_size(stream);
|
l = pa_stream_writable_size(stream);
|
||||||
pa_threaded_mainloop_unlock(mainloop);
|
pa_threaded_mainloop_unlock(mainloop);
|
||||||
return l < 0 ? 0 : l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Return the current latency in seconds */
|
/** Return the current latency in seconds */
|
||||||
|
|
Loading…
Reference in New Issue