| Summary: | CBR encoded mp3 files with "Info" Xing header have their duration reported incorrected by taglib | ||
|---|---|---|---|
| Product: | [Unmaintained] taglib | Reporter: | Xavier Duret <xaviour.maillists> |
| Component: | general | Assignee: | Scott Wheeler <wheeler> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Add support for "Info" headers | ||
|
Description
Xavier Duret
2007-02-14 14:17:47 UTC
Created attachment 19687 [details]
Add support for "Info" headers
This fix is trivial.
SVN commit 649037 by wheeler:
Check for CBR Info headers also.
BUG:141681
M +1 -1 xingheader.cpp
--- trunk/kdesupport/taglib/taglib/mpeg/xingheader.cpp #649036:649037
@@ -88,7 +88,7 @@
{
// 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
|