Commit 8d5fa522 authored by Felix Paul Kühne's avatar Felix Paul Kühne

You want to use mdate() instead of mtime() which is invalid

parent 3196a099
......@@ -1226,7 +1226,7 @@ static int AudioStreamChangeFormat( aout_instance_t *p_aout, AudioStreamID i_str
for( i = 0; i < 5; i++ )
{
AudioStreamBasicDescription actual_format;
mtime_t timeout = mtime() + 500000;
mtime_t timeout = mdate() + 500000;
if( vlc_cond_timedwait( &w.cond, &w.lock, timeout ) )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment