chatmurai / mp3infoutil

Automatically exported from code.google.com/p/mp3infoutil
1 stars 0 forks source link

VPR Determination #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There seems to be an issue in the code block that determines if the file is
VBR.  I just wrapped the the following lines in a try and things seem to
work well.  I don't need to know if it VBR, so I don't mind if its
incorrect, but I still want to use that first frame header to determine the
other stuff.  I was getting inconsistent results without this fix. 
Otherwise the tool works great, thanks for sharing!

try
{
  ba.readBytes(bytVBitRate,0,12);
  _isVarBitRate = loadVBRHeader(bytVBitRate);
}

Original issue reported on code.google.com by kazmi...@gmail.com on 13 Aug 2009 at 5:31

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Thanks for catching this. 

Fixed in r7, along with a lot of other improvements.

Would be great if you could give the new version a spin.

Original comment by beatportscott@gmail.com on 25 Sep 2009 at 10:16