mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* ALAC decoding length mismatches fixed
* Problem with single-track albums fixed * Added an option to disable assembler optimizations in flac
This commit is contained in:
@@ -201,10 +201,7 @@ namespace CUETools.Ripper.SCSI
|
||||
|
||||
m_device = new Device(m_logger);
|
||||
if (!m_device.Open(m_device_letter))
|
||||
{
|
||||
m_device = null;
|
||||
throw new Exception("Open failed: SCSI error");
|
||||
}
|
||||
throw new Exception("Open failed: " + WinDev.Win32ErrorToString(m_device.LastError));
|
||||
|
||||
// Get device info
|
||||
st = m_device.Inquiry(out m_inqury_result);
|
||||
@@ -1088,6 +1085,14 @@ namespace CUETools.Ripper.SCSI
|
||||
}
|
||||
}
|
||||
|
||||
public string EACName
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_inqury_result.VendorIdentification.TrimEnd(' ', '\0') + " " + m_inqury_result.ProductIdentification.TrimEnd(' ', '\0');
|
||||
}
|
||||
}
|
||||
|
||||
public ulong Position
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user