mirror of
https://github.com/taglib/taglib.git
synced 2025-09-03 11:55:18 -04:00
Check for CBR Info headers also.
BUG:141681 git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@649037 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -88,7 +88,7 @@ void MPEG::XingHeader::parse(const ByteVector &data)
|
||||
{
|
||||
// Check to see if a valid Xing header is available.
|
||||
|
||||
if(!data.startsWith("Xing"))
|
||||
if(!data.startsWith("Xing") && !data.startsWith("Info"))
|
||||
return;
|
||||
|
||||
// If the XingHeader doesn't contain the number of frames and the total stream
|
||||
|
Reference in New Issue
Block a user