File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -675,9 +675,9 @@ void ESP32_VS1053_Stream::loop()
675
675
_streamStalledTime += _streamStalledTime ? 0 : 1 ;
676
676
return ;
677
677
}
678
- if (millis () - _streamStalledTime > VS1053_DATA_TIMEOUT_MS )
678
+ if (millis () - _streamStalledTime > VS1053_NOBUFFER_TIMEOUT_MS )
679
679
{
680
- log_e (" Stream timeout %lu ms" , VS1053_DATA_TIMEOUT_MS );
680
+ log_e (" Stream timeout %lu ms" , VS1053_NOBUFFER_TIMEOUT_MS );
681
681
_eofStream ();
682
682
return ;
683
683
}
Original file line number Diff line number Diff line change 11
11
#define VS1053_ICY_METADATA true
12
12
#define VS1053_CONNECT_TIMEOUT_MS 250
13
13
#define VS1053_CONNECT_TIMEOUT_MS_SSL 2500
14
- #define VS1053_DATA_TIMEOUT_MS 900
14
+ #define VS1053_NOBUFFER_TIMEOUT_MS 900
15
15
#define VS1053_MAX_PLAYLIST_READ 1024
16
16
#define VS1053_MAX_URL_LENGTH 512
17
17
#define VS1053_MAX_REDIRECT_COUNT 3
You can’t perform that action at this time.
0 commit comments