Bug 3408 - ID3 tag teader length changed in trunk/server/lib/Audio/FLAC/Header.pm I
: ID3 tag teader length changed in trunk/server/lib/Audio/FLAC/Header.pm I
Status: RESOLVED FIXED
Product: Logitech Media Server
Classification: Unclassified
Component: Formats
: 6.5b1
: All RedHat Linux
: P2 major (vote)
: ---
Assigned To: Chris Owens
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2006-05-11 09:14 UTC by Kari Lempiainen
Modified: 2008-09-15 14:39 UTC (History)
1 user (show)

See Also:
Category: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kari Lempiainen 2006-05-11 09:14:44 UTC
In revision 7334:

  # Skip the next two bytes 	                 
  read($fh, $buffer, 2) or return -1; 	                 

was changed to 

  # Skip the next three bytes - major & minor version number.
  read($fh, $buffer, 3) or return -1;

this has broken identification of many flac files. There are still two version bytes, or the specs have mystically changed:-)

Kari
Comment 1 Dan Sully 2006-05-11 09:26:40 UTC
Fixed in change 7389