* DiscImageChef.DiscImages/CDRWin.cs:

Corrected return of CD+G data, should return all 2448 bytes.

	* DiscImageChef.Partitions/AppleMap.cs:
	  Do not continue checking APM on CDs with incorrect sector
	  size. It is buggy and needs a lot of retesting.
This commit is contained in:
2016-08-09 15:31:44 +01:00
parent 0de296b512
commit beeaf4110f
5 changed files with 60 additions and 3 deletions

View File

@@ -0,0 +1,42 @@
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Alcohol120.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// --[ Description ] ----------------------------------------------------------
//
// Description
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2016 Natalia Portillo
// ****************************************************************************/
using System;
namespace DiscImageChef.DiscImages
{
public class Alcohol120
{
public Alcohol120()
{
}
}
}

View File

@@ -1802,8 +1802,8 @@ namespace DiscImageChef.ImagePlugins
case CDRWinTrackTypeCDG:
{
sector_offset = 0;
sector_size = 2352;
sector_skip = 96;
sector_size = 2448;
sector_skip = 0;
break;
}
default:

View File

@@ -1,3 +1,8 @@
2016-08-09 Natalia Portillo <claunia@claunia.com>
* CDRWin.cs: Corrected return of CD+G data, should return all
2448 bytes.
2016-08-08 Natalia Portillo <claunia@claunia.com>
* CDRDAO.cs: Corrected typo on audio track matching.

View File

@@ -142,7 +142,11 @@ namespace DiscImageChef.PartPlugins
for(ulong i = 0; i < apm_entries; i++) // For each partition
{
if(APMFromHDDOnCD)
APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
{
return false;
// TODO This needs several retesting
// APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
}
else
APMEntry_sector = imagePlugin.ReadSector(first_sector + i);

View File

@@ -1,3 +1,9 @@
2016-08-09 Natalia Portillo <claunia@claunia.com>
* AppleMap.cs: Do not continue checking APM on CDs with
incorrect sector size. It is buggy and needs a lot of
retesting.
2016-08-07 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.Partitions.csproj: Public beta release