From 8b9dfbabdb57a281bc4e621dc20c6f3d5471e578 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 19 Jul 2020 21:40:23 +0100 Subject: [PATCH] Declare optical image capabilities for the images that support writing indexes. --- Enums/Images.cs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Enums/Images.cs b/Enums/Images.cs index 221daf0..a3c226c 100644 --- a/Enums/Images.cs +++ b/Enums/Images.cs @@ -341,13 +341,11 @@ namespace Aaru.CommonTypes.Enums [Flags] public enum OpticalImageCapabilities : ulong { - CanStoreAudioTracks = 0x01, CanStoreVideoTracks = 0x02, CanStoreDataTracks = 0x03, - CanStorePregaps = 0x04, - - // TODO: Implement - CanStoreIndexes = 0x08, CanStoreSubchannelRw = 0x10, CanStoreSessions = 0x20, - CanStoreIsrc = 0x40, CanStoreCdText = 0x80, CanStoreMcn = 0x100, - CanStoreRawData = 0x200, CanStoreNotCdSessions = 0x2000, CanStoreNotCdTracks = 0x4000, + CanStoreAudioTracks = 0x01, CanStoreVideoTracks = 0x02, CanStoreDataTracks = 0x03, + CanStorePregaps = 0x04, CanStoreIndexes = 0x08, CanStoreSubchannelRw = 0x10, + CanStoreSessions = 0x20, CanStoreIsrc = 0x40, CanStoreCdText = 0x80, + CanStoreMcn = 0x100, CanStoreRawData = 0x200, CanStoreNotCdSessions = 0x2000, + CanStoreNotCdTracks = 0x4000, // TODO: Implement CanStoreScrambledData = 0x400, CanStoreCookedData = 0x800, CanStoreMultipleTracks = 0x1000