Commit 197968d6 authored by Max Kellermann's avatar Max Kellermann

input/Stream: mark qobuz:// and tidal:// as "seeking is expensive"

Those are loaded with the "curl" input plugin, and this one is "expensive", because it needs to send a new HTTP request with Range header for each seek.
parent 2cb83a1f
......@@ -79,6 +79,8 @@ static bool
ExpensiveSeeking(const char *uri) noexcept
{
return StringStartsWith(uri, "http://") ||
StringStartsWith(uri, "tidal://") ||
StringStartsWith(uri, "qobuz://") ||
StringStartsWith(uri, "https://");
}
......
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