Merge branch 'mpg-duration-fix' of https://github.com/boedy/MPD

This commit is contained in:
Max Kellermann 2024-08-10 16:54:48 +02:00
commit 965c466e9b
1 changed files with 4 additions and 0 deletions

View File

@ -353,6 +353,10 @@ mpd_mpg123_stream_decode(DecoderClient &client, InputStream &is)
};
mpd_mpg123_open_stream(*handle, iohandle);
if (is.KnownSize())
mpg123_set_filesize(handle, is.GetSize());
Decode(client, *handle, is.IsSeekable());
}