Commit 4ce86c99 authored by Laurent Aimar's avatar Laurent Aimar

Reset input slave eof flag on seek.

parent 2bde17e1
......@@ -2586,6 +2586,10 @@ static void SlaveSeek( input_thread_t *p_input )
msg_Err( p_input, "seek failed for slave %d -> EOF", i );
in->b_eof = true;
}
else
{
in->b_eof = false;
}
}
}
......
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