From 0485b576425714eee656adf324a8a0706a44bee5 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 27 Nov 2015 10:32:54 +0000 Subject: [PATCH] Solved repeated field names. --- DiscImageChef.Decoders/ChangeLog | 5 +++ DiscImageChef.Decoders/DVD/PFI.cs | 10 +++--- DiscImageChef/Commands/Benchmark.cs | 49 +++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 5 deletions(-) create mode 100644 DiscImageChef/Commands/Benchmark.cs diff --git a/DiscImageChef.Decoders/ChangeLog b/DiscImageChef.Decoders/ChangeLog index 675e500a..414db1e8 100644 --- a/DiscImageChef.Decoders/ChangeLog +++ b/DiscImageChef.Decoders/ChangeLog @@ -1,3 +1,8 @@ +2015-11-27 Natalia Portillo + + * DVD/PFI.cs: + Solved repeated field names. + 2015-11-27 Natalia Portillo * DVD/PFI.cs: diff --git a/DiscImageChef.Decoders/DVD/PFI.cs b/DiscImageChef.Decoders/DVD/PFI.cs index b248f897..9b1d16b1 100644 --- a/DiscImageChef.Decoders/DVD/PFI.cs +++ b/DiscImageChef.Decoders/DVD/PFI.cs @@ -182,7 +182,7 @@ namespace DiscImageChef.Decoders.DVD /// Disc type, respecting case recordability /// public DVDRAMDiscType DiscType; - #region DVD-RAM PFI + #endregion DVD-RAM PFI #region DVD-RAM PFI, Version 0001b /// @@ -704,14 +704,14 @@ namespace DiscImageChef.Decoders.DVD /// Indicates how many bytes, up to 63, are used in ADIP's PFI /// 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 /// /// Byte 55 /// Ttop first pulse duration /// - public byte FirstPulseDuration; + public byte TopFirstPulseDuration; /// /// Byte 56 /// Tmp multi pulse duration @@ -869,7 +869,7 @@ namespace DiscImageChef.Decoders.DVD /// Byte 36 /// Primary recording velocity for the basic write strategy /// - public byte PrimaryVelocity; + public byte BasicPrimaryVelocity; /// /// Byte 37 /// Maximum read power at Primary velocity @@ -1193,7 +1193,7 @@ namespace DiscImageChef.Decoders.DVD public enum DVDRecordingSpeed { - None = 0 + None = 0, Two = 0, Four = 0x10, Six = 0x20, diff --git a/DiscImageChef/Commands/Benchmark.cs b/DiscImageChef/Commands/Benchmark.cs new file mode 100644 index 00000000..7ebe300f --- /dev/null +++ b/DiscImageChef/Commands/Benchmark.cs @@ -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 . +// +// ---------------------------------------------------------------------------- +// Copyright (C) 2011-2015 Claunia.com +// ****************************************************************************/ +// //$Id$ +using System; + +namespace DiscImageChef.Commands +{ + public class Benchmark + { + public Benchmark() + { + } + } +} +