mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Solved repeated field names.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2015-11-27 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* DVD/PFI.cs:
|
||||||
|
Solved repeated field names.
|
||||||
|
|
||||||
2015-11-27 Natalia Portillo <claunia@claunia.com>
|
2015-11-27 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* DVD/PFI.cs:
|
* DVD/PFI.cs:
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
/// Disc type, respecting case recordability
|
/// Disc type, respecting case recordability
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public DVDRAMDiscType DiscType;
|
public DVDRAMDiscType DiscType;
|
||||||
#region DVD-RAM PFI
|
#endregion DVD-RAM PFI
|
||||||
|
|
||||||
#region DVD-RAM PFI, Version 0001b
|
#region DVD-RAM PFI, Version 0001b
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -704,14 +704,14 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
/// Indicates how many bytes, up to 63, are used in ADIP's PFI
|
/// Indicates how many bytes, up to 63, are used in ADIP's PFI
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public byte PFIUsedInADIP;
|
public byte PFIUsedInADIP;
|
||||||
#region DVD+RW PFI and DVD+R PFI
|
#endregion DVD+RW PFI and DVD+R PFI
|
||||||
|
|
||||||
#region DVD+RW PFI, version 0010b
|
#region DVD+RW PFI, version 0010b
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Byte 55
|
/// Byte 55
|
||||||
/// Ttop first pulse duration
|
/// Ttop first pulse duration
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public byte FirstPulseDuration;
|
public byte TopFirstPulseDuration;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Byte 56
|
/// Byte 56
|
||||||
/// Tmp multi pulse duration
|
/// Tmp multi pulse duration
|
||||||
@@ -869,7 +869,7 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
/// Byte 36
|
/// Byte 36
|
||||||
/// Primary recording velocity for the basic write strategy
|
/// Primary recording velocity for the basic write strategy
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public byte PrimaryVelocity;
|
public byte BasicPrimaryVelocity;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Byte 37
|
/// Byte 37
|
||||||
/// Maximum read power at Primary velocity
|
/// Maximum read power at Primary velocity
|
||||||
@@ -1193,7 +1193,7 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
|
|
||||||
public enum DVDRecordingSpeed
|
public enum DVDRecordingSpeed
|
||||||
{
|
{
|
||||||
None = 0
|
None = 0,
|
||||||
Two = 0,
|
Two = 0,
|
||||||
Four = 0x10,
|
Four = 0x10,
|
||||||
Six = 0x20,
|
Six = 0x20,
|
||||||
|
|||||||
49
DiscImageChef/Commands/Benchmark.cs
Normal file
49
DiscImageChef/Commands/Benchmark.cs
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
// /***************************************************************************
|
||||||
|
// The Disc Image Chef
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Filename : Benchmark.cs
|
||||||
|
// Version : 1.0
|
||||||
|
// Author(s) : Natalia Portillo
|
||||||
|
//
|
||||||
|
// Component : Component
|
||||||
|
//
|
||||||
|
// Revision : $Revision$
|
||||||
|
// Last change by : $Author$
|
||||||
|
// Date : $Date$
|
||||||
|
//
|
||||||
|
// --[ Description ] ----------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Description
|
||||||
|
//
|
||||||
|
// --[ License ] --------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2011-2015 Claunia.com
|
||||||
|
// ****************************************************************************/
|
||||||
|
// //$Id$
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Commands
|
||||||
|
{
|
||||||
|
public class Benchmark
|
||||||
|
{
|
||||||
|
public Benchmark()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user