mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* 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:
42
DiscImageChef.DiscImages/Alcohol120.cs
Normal file
42
DiscImageChef.DiscImages/Alcohol120.cs
Normal 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()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1802,8 +1802,8 @@ namespace DiscImageChef.ImagePlugins
|
|||||||
case CDRWinTrackTypeCDG:
|
case CDRWinTrackTypeCDG:
|
||||||
{
|
{
|
||||||
sector_offset = 0;
|
sector_offset = 0;
|
||||||
sector_size = 2352;
|
sector_size = 2448;
|
||||||
sector_skip = 96;
|
sector_skip = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -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>
|
2016-08-08 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* CDRDAO.cs: Corrected typo on audio track matching.
|
* CDRDAO.cs: Corrected typo on audio track matching.
|
||||||
|
|||||||
@@ -142,7 +142,11 @@ namespace DiscImageChef.PartPlugins
|
|||||||
for(ulong i = 0; i < apm_entries; i++) // For each partition
|
for(ulong i = 0; i < apm_entries; i++) // For each partition
|
||||||
{
|
{
|
||||||
if(APMFromHDDOnCD)
|
if(APMFromHDDOnCD)
|
||||||
APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
|
{
|
||||||
|
return false;
|
||||||
|
// TODO This needs several retesting
|
||||||
|
// APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
APMEntry_sector = imagePlugin.ReadSector(first_sector + i);
|
APMEntry_sector = imagePlugin.ReadSector(first_sector + i);
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
2016-08-07 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* DiscImageChef.Partitions.csproj: Public beta release
|
* DiscImageChef.Partitions.csproj: Public beta release
|
||||||
|
|||||||
Reference in New Issue
Block a user