[Slim-Checkins] r10149 - /branches/6.5/server/Slim/Formats/MP3.pm

andy at svn.slimdevices.com andy at svn.slimdevices.com
Tue Oct 3 10:10:10 PDT 2006


Author: andy
Date: Tue Oct  3 10:10:09 2006
New Revision: 10149

URL: http://svn.slimdevices.com?rev=10149&view=rev
Log:
Fix bug in finding the first audio frame, needed for gapless mp3

Modified:
    branches/6.5/server/Slim/Formats/MP3.pm

Modified: branches/6.5/server/Slim/Formats/MP3.pm
URL: http://svn.slimdevices.com/branches/6.5/server/Slim/Formats/MP3.pm?rev=10149&r1=10148&r2=10149&view=diff
==============================================================================
--- branches/6.5/server/Slim/Formats/MP3.pm (original)
+++ branches/6.5/server/Slim/Formats/MP3.pm Tue Oct  3 10:10:09 2006
@@ -180,7 +180,7 @@
 		return undef;
 	}
 
-	my ($start, $end) = $class->findFrameBoundaries($fh, $info->{'OFFSET'}, $info->{'SIZE'});
+	my ($start, $end) = $class->findFrameBoundaries($fh, 0, $info->{'SIZE'});
 
 	if ($start) {
 		$info->{'OFFSET'} = $start;



More information about the checkins mailing list