set MP3 header length to 0 for now so MP3 files can be read

This will need to be changed once ID3 interpolation actually works.
This commit is contained in:
Adrian Sampson
2010-07-21 11:19:29 -07:00
parent 6a2df1f1c1
commit 0256547b2c
+1 -1
View File
@@ -410,7 +410,7 @@ class FileHandler(object):
self.bound = len(self.header)
self.music_offset = self.inf.offset()
elif format == "mp3":
pass
self.bound = 0 # disable interpolation for now
def open(self):
# as init() handles actual opening, just increment instance count here