This commit is contained in:
Max Kellermann
2025-01-29 17:21:54 +01:00
7 changed files with 40 additions and 5 deletions

View File

@@ -239,6 +239,10 @@ DecoderBridge::UpdateStreamTag(InputStream *is) noexcept
/* discard the song tag; we don't need it */
song_tag.reset();
if (stream_tag && tag && *stream_tag == *tag)
/* not changed */
return false;
stream_tag = std::move(tag);
return true;
}