mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
stream: don't sleep for reconnecting network if playback is stopped
Also silences the bogus message if that happens. CC: @mpv-player/stable
This commit is contained in:
@@ -388,6 +388,8 @@ static int stream_reconnect(stream_t *s)
|
||||
return 0;
|
||||
if (!s->seekable)
|
||||
return 0;
|
||||
if (stream_check_interrupt(s))
|
||||
return 0;
|
||||
int64_t pos = s->pos;
|
||||
int sleep_ms = 5;
|
||||
for (int retry = 0; retry < MAX_RECONNECT_RETRIES; retry++) {
|
||||
|
||||
Reference in New Issue
Block a user