#1 Burning Software

It is currently Fri Dec 20, 2024 10:18 am

All times are UTC




Post new topic Reply to topic  [ 21 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Setting Volume Label
PostPosted: Sun Sep 26, 2004 11:42 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
How do I set the volume label? I see where if your are using the tree process there is something but I can't find anything for DAO. (I'm burning an audio cd). In the example for DiscAtOnceFromFile it uses StarBurn_CdvdBurnerGrabber_SetCDTextItem to set the Volume label but there is no documentation on that function. Do I have to build the trees to do this?


Top
 Profile  
 
 Post subject: Re: Setting Volume Label
PostPosted: Mon Sep 27, 2004 6:45 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
How do I set the volume label? I see where if your are using the tree process there is something but I can't find anything for DAO. (I'm burning an audio cd). In the example for DiscAtOnceFromFile it uses StarBurn_CdvdBurnerGrabber_SetCDTextItem to set the Volume label but there is no documentation on that function. Do I have to build the trees to do this?


No, for audio CD you don't need to build the file tree.
Our implementation of DAO supports CD-Text.
Call StarBurn_CdvdBurnerGrabber_SetCDTextItem and pass 0 as p__CHAR__TrackIndex. It will be disc information.
See declaration and description:

STARBURN_IMPEX_API
EXCEPTION_NUMBER
__stdcall
StarBurn_CdvdBurnerGrabber_SetCDTextItem(
IN PVOID p__PVOID__CdvdBurnerGrabber,
IN CHAR p__CHAR__TrackIndex,
IN const PCHAR p__PCHAR__Artist,
IN const PCHAR p__PCHAR__Title,
OUT PCHAR p__PCHAR__ExceptionText,
IN ULONG p__ULONG__ExceptionTextSizeInUCHARs,
OUT PULONG p__PULONG__SystemError
);

Sets CD-Text item for the specified CD/DVD device.


Parameters

p__PVOID__CdvdBurnerGrabber - Pointer to CStarBurn_CdvdBurnerGrabber object.

p__CHAR__TrackIndex - 1-based track number. Or 0 for the common DISC information.

PCHAR p__PCHAR__Artist - Pointer to zero-terminated string with the name of artist/performer/singer.

PCHAR p__PCHAR__Title - Pointer to zero-terminated string with the track title/song name.

p__PCHAR__ExceptionText - Pointer to buffer for exception text.

p__ULONG__ExceptionTextSizeInUCHARs - Exception text size in UCHARs.

p__PULONG__SystemError - Pointer to system error.


Top
 Profile  
 
 Post subject: Can't get it to work
PostPosted: Tue Sep 28, 2004 3:06 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I can't get this to set the volume label with DAO.

Here is my declare
Declare Function StarBurn_CdvdBurnerGrabber_SetCDTextItem _
Lib "c:\windows\system32\StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal TrackNum As String, ByRef Artist As String, _
ByRef Title As String, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByRef SystemError As Long) As Long

Here is my call:
rc = StarBurn_CdvdBurnerGrabber_SetCDTextItem(ObjGrabber, _
0, mvarVolumeLabel & Chr(0), "TitleSample" & Chr(0), ExceptionText, TextSize, SystemError)

mvarVolumeLabel is a string.

I'm not getting any error but I'm also not getting the volume label set. It comes up as Audio CD in My Computer. The disc plays fine. Do I need to set each track text also? I was just trying to set the volume label.

I've tried ByVal and ByRef both on the Artist and Title parameters.


Top
 Profile  
 
 Post subject: Re: Can't get it to work
PostPosted: Tue Sep 28, 2004 6:30 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
I can't get this to set the volume label with DAO.
mvarVolumeLabel is a string.
I'm not getting any error but I'm also not getting the volume label set. It comes up as Audio CD in My Computer. The disc plays fine. Do I need to set each track text also? I was just trying to set the volume label.


Try to use other software which support CD-Text information. I think CDEx will read CD-Text info and display it.


Top
 Profile  
 
 Post subject: CDex
PostPosted: Wed Sep 29, 2004 12:43 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
What is CDEx? I can't find it in your documentation.

Do does your function not work so windows can read the volume label or am I doing something wrong?


Top
 Profile  
 
 Post subject: Re: CDex
PostPosted: Wed Sep 29, 2004 7:19 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
What is CDEx? I can't find it in your documentation.

Do does your function not work so windows can read the volume label or am I doing something wrong?

Volume label is the text strng associated with FileSystem. But for Auio CD there are no file system at all. I don't know why, but Windows Media Player does not detect CD-Text information.
But there are some other softwares which do so. For example:
http://www.cdex.n3.net/


Top
 Profile  
 
 Post subject: Now I Understand
PostPosted: Thu Sep 30, 2004 1:16 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I've been doing some more experimenting. Even with a commercial CD, windows does not display a Volume label in 'My Computer'. I appologize for the misunderstanding.


Top
 Profile  
 
 Post subject: Re: Now I Understand
PostPosted: Wed Oct 06, 2004 9:40 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
Note a problem at all! We'd still recommend you to create CD-Text enabled AudioCDs. You'll be able to assign a "disc label" to them.

bbriggstkd wrote:
I've been doing some more experimenting. Even with a commercial CD, windows does not display a Volume label in 'My Computer'. I appologize for the misunderstanding.


Top
 Profile  
 
 Post subject: Disc Label?
PostPosted: Thu Oct 07, 2004 12:34 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
What do you mean by a disc label? I have asked about a volume label. What I meant by that is the name that comes up in My Computer when you insert the disc into the CD Drive. Is this what you mean by disc label?


Top
 Profile  
 
 Post subject: Re: Disc Label?
PostPosted: Thu Oct 07, 2004 9:41 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
No. I'm talking about the label stand alone stereo (car audio or whatever) would display when CD-Text AudioCD would be inserted.

bbriggstkd wrote:
What do you mean by a disc label? I have asked about a volume label. What I meant by that is the name that comes up in My Computer when you insert the disc into the CD Drive. Is this what you mean by disc label?


Top
 Profile  
 
 Post subject: What's the difference
PostPosted: Fri Oct 08, 2004 2:18 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
That is what I'm wanting too. Is that done differently than using the setCDText with a track number of 0? Or are we talking about the same thing, just using different phrases?


Top
 Profile  
 
 Post subject: Re: What's the difference
PostPosted: Fri Oct 08, 2004 8:34 pm 
Offline
Site Admin

Joined: Fri Jun 18, 2004 12:03 am
Posts: 4089
Location: British Virgin Islands
AudioCD would not have volume label in Explorer or whatever. CD-Text enabled AudioCD would show assigned volume name in CD-Text compatible hardware. You can use SetCDText to set CD-Text volume label. That's all.

bbriggstkd wrote:
That is what I'm wanting too. Is that done differently than using the setCDText with a track number of 0? Or are we talking about the same thing, just using different phrases?


Top
 Profile  
 
 Post subject: Thought I had it working
PostPosted: Tue Oct 26, 2004 3:33 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I thought I had this working but now I'm not sure.

In an earlier post, you gave me the C declare for SetCDTextItem which had the track number as char, I declared that as a string in VB. Now I am thinking I need to change that to a byte.

Am I correct?


Top
 Profile  
 
 Post subject: Re: Thought I had it working
PostPosted: Tue Oct 26, 2004 4:32 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
In an earlier post, you gave me the C declare for SetCDTextItem which had the track number as char, I declared that as a string in VB. Now I am thinking I need to change that to a byte.
Am I correct?


Yes, you are right. Change it to byte.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Nov 20, 2004 1:29 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I don't think my code is working. I am using win amp to look at my CD text but it is not coming up like I programmed it. I'm not getting an error though.

I'm trying to set both the disk label and cd text for each track.

Here is my declare.

Declare Function StarBurn_CdvdBurnerGrabber_SetCDTextItem _
Lib "StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal TrackNum As Byte, ByRef Artist As String, _
ByRef Title As String, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByRef SystemError As Long) As Long

Here is my call: x here is the track number I'm setting up.

rc = StarBurn_CdvdBurnerGrabber_SetCDTextItem(ObjGrabber, _
x, "Artist " & x & Chr(0), "Title" & x & Chr(0), ExceptionText, TextSize, SystemError)

Here is some debug info;

00000000 0.00000000 [3396]
00000001 0.00000000 [3396] WnASPI32 ASPI Layer for Windows NT/2000/XP/2003 Version 4.7.3 ( 0x20041114 )
00000002 0.00000000 [3396] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000003 0.00000000 [3396]
00000004 0.00505260 [3396] StarBurn CD/DVD Burning, Grabbing and Mastering Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.7.3 ( 0x20041114 )
00000005 0.00505260 [3396] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000006 0.00576805 [3396]
00000007 0.00576805 [3396] StarBurn:StarBurn_UpStart(): Current module path 'C:\WINDOWS\system32\StarBurn.dll'
00000008 0.00583035 [3396]
00000009 0.00583035 [3396] StarBurn:StarBurn_UpStart(): Complete destination path 'C:\WINDOWS\system32\StarBurn.key'
00000010 0.00637232 [3396]
00000011 0.00637232 [3396] StarBurn:StarBurn_UpStart(): CreateFile( 'C:\WINDOWS\system32\StarBurn.key', 0x80000000, 0, 0x00000000, 3, 0, 0x00000000 ) failed, status 2 ( 0x2 )
00000012 7.68934571 [3396]
00000013 7.68934571 [3396] StarWave Media Streaming Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.7.3 ( 0x20041114 )
00000014 7.68934571 [3396] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000015 7.68934571 [3396]
00000016 7.71738503 [3396]
00000017 7.71738503 [3396] SCSI port inquiry dump:
00000018 7.71744314 [3396] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000019 7.71747834 [3396] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000020 7.71751242 [3396] Single Transfer Size: 65536 UCHARs
00000021 7.71751242 [3396]
00000022 7.71761970 [3396]
00000023 7.71761970 [3396] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000024 7.71805718 [3396]
00000025 7.71805718 [3396] SCSI device inquiry data dump:
00000026 7.71805718 [3396] Device Type: 0x05, Removable: Yes
00000027 7.71809909 [3396] SCSI Version: 0, Soft Reset Supported: No
00000028 7.71813261 [3396] Command Queue Supported: No, Linked Commands Supported: No
00000029 7.71816614 [3396] Sync Transfer Supported: No, 16-bit bus: No
00000030 7.71819938 [3396] 32-bit bus: No, Relative Addressing Supported: No
00000031 7.71825106 [3396] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US06'
00000032 7.71825106 [3396]
00000033 7.71827565 [3396]
00000034 7.71827565 [3396] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US06' sits at 1:0:0:0
00000035 7.71982529 [3396]
00000036 7.71982529 [3396] CDVD capabilities page dump:
00000037 7.71982529 [3396] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000038 7.71986859 [3396] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000039 7.71990323 [3396] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000040 7.71993759 [3396] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000041 7.71999318 [3396] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000042 7.72002699 [3396] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000043 7.72003956 [3396] Digital Port One: No, Digital Port Two: No
00000044 7.72007252 [3396] MODE2 Form1: Yes, MODE2 Form2: Yes
00000045 7.72010577 [3396] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000046 7.72013929 [3396] BUP (Buffer Underrun Protection) Supported: Yes
00000047 7.72019349 [3396] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000048 7.72022729 [3396] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000049 7.72023986 [3396] Lock: Yes, LockState: 0, Prevent Jumper: No
00000050 7.72027367 [3396] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000051 7.72030691 [3396] Separate Volume: Yes, Separate Channel Mute: Yes
00000052 7.72034015 [3396] Supports Disc Present: No, SW Slot Selection: No
00000053 7.72039491 [3396] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000054 7.72042927 [3396] Maximum read speed: 3522 KBps
00000055 7.72044156 [3396] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000056 7.72047453 [3396] Current read speed: 3522 KBps
00000057 7.72050694 [3396] Reserved7: 0x00
00000058 7.72054018 [3396] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000059 7.72059354 [3396] Reserved8: 0x00
00000060 7.72062622 [3396] Maximum write speed: 1762 KBps
00000061 7.72063824 [3396] Current write speed: 1762 KBps
00000062 7.72068657 [3396] Reserved9: 0x0001
00000063 7.72068657 [3396]
00000064 7.73294148 [3396]
00000065 7.73294148 [3396] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+RW page size in UCHAR(s): 12
00000066 7.73693360 [3396]
00000067 7.73693360 [3396] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+R page size in UCHAR(s): 12
00000068 7.73721548 [3396]
00000069 7.73721548 [3396] StarBurn:StarBurn_GetDeviceNameByDeviceAddress(): Running under Windows NT and up...
00000070 7.74146379 [3396]
00000071 7.74146379 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000072 7.74148334 [3396]
00000073 7.74148334 [3396] Write parameter page dump:
00000074 7.74148334 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000075 7.74152190 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000076 7.74155570 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000077 7.74158978 [3396] Track Mode: 0x00, Copy Allowed: No, FP (Is Fixed Packet): No
00000078 7.74164510 [3396] Next Session: 0x03, Data Block Type: 0x03, Reserved4: 0x00
00000079 7.74167918 [3396] Host Application Code: 0x00, Session Format: 0x00
00000080 7.74169175 [3396] Packet Size: 0, Audio Pause Length: 150
00000081 7.74172835 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000082 7.74177947 [3396] ISRC: 0x00000000000000000000000000000000
00000083 7.74181300 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000084 7.74186719 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000085 7.74190183 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000086 7.74190183 [3396]
00000087 7.74191552 [3396]
00000088 7.74191552 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000089 7.74195156 [3396]
00000090 7.74195156 [3396] Write parameter page dump:
00000091 7.74195156 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000092 7.74198955 [3396] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000093 7.74202308 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000094 7.74207755 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000095 7.74211136 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000096 7.74212421 [3396] Host Application Code: 0x00, Session Format: 0x00
00000097 7.74215773 [3396] Packet Size: 0, Audio Pause Length: 150
00000098 7.74219377 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000099 7.74223009 [3396] ISRC: 0x00000000000000000000000000000000
00000100 7.74228428 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000101 7.74231809 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000102 7.74233122 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000103 7.74233122 [3396]
00000104 7.74372469 [3396]
00000105 7.74372469 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000106 7.74384286 [3396]
00000107 7.74384286 [3396] Write parameter page dump:
00000108 7.74384286 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000109 7.74388169 [3396] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000110 7.74393729 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000111 7.74397193 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000112 7.74402333 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000113 7.74405769 [3396] Host Application Code: 0x00, Session Format: 0x00
00000114 7.74409429 [3396] Packet Size: 0, Audio Pause Length: 150
00000115 7.74413005 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000116 7.74416413 [3396] ISRC: 0x00000000000000000000000000000000
00000117 7.74419794 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000118 7.74423174 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000119 7.74428538 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000120 7.74428538 [3396]
00000121 7.74465861 [3396]
00000122 7.74465861 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000123 7.74468431 [3396]
00000124 7.74468431 [3396] Write parameter page dump:
00000125 7.74468431 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000126 7.74474298 [3396] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000127 7.74479941 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000128 7.74483377 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000129 7.74486813 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000130 7.74490194 [3396] Host Application Code: 0x00, Session Format: 0x00
00000131 7.74493797 [3396] Packet Size: 0, Audio Pause Length: 150
00000132 7.74498854 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000133 7.74502318 [3396] ISRC: 0x00000000000000000000000000000000
00000134 7.74505698 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000135 7.74509107 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000136 7.74512571 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000137 7.74512571 [3396]
00000138 7.74516091 [3396]
00000139 7.74516091 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000140 7.74519778 [3396]
00000141 7.74519778 [3396] Write parameter page dump:
00000142 7.74519778 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000143 7.74523438 [3396] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000144 7.74526874 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000145 7.74530282 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000146 7.74533691 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000147 7.74537071 [3396] Host Application Code: 0x00, Session Format: 0x00
00000148 7.74540759 [3396] Packet Size: 0, Audio Pause Length: 150
00000149 7.74544307 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000150 7.74547687 [3396] ISRC: 0x00000000000000000000000000000000
00000151 7.74551039 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000152 7.74554420 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000153 7.74561543 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000154 7.74561543 [3396]
00000155 7.74698460 [3396]
00000156 7.74698460 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000157 7.74702399 [3396]
00000158 7.74702399 [3396] Write parameter page dump:
00000159 7.74702399 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000160 7.74705109 [3396] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000161 7.74708601 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000162 7.74712037 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000163 7.74715474 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000164 7.74720949 [3396] Host Application Code: 0x00, Session Format: 0x00
00000165 7.74724581 [3396] Packet Size: 0, Audio Pause Length: 150
00000166 7.74725810 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000167 7.74729386 [3396] ISRC: 0x00000000000000000000000000000000
00000168 7.74732738 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000169 7.74736119 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000170 7.74743103 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000171 7.74743103 [3396]
00000172 7.74780035 [3396]
00000173 7.74780035 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000174 7.74783834 [3396]
00000175 7.74783834 [3396] Write parameter page dump:
00000176 7.74783834 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000177 7.74787634 [3396] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000178 7.74791014 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000179 7.74794450 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000180 7.74799982 [3396] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000181 7.74801295 [3396] Host Application Code: 0x00, Session Format: 0x00
00000182 7.74804647 [3396] Packet Size: 0, Audio Pause Length: 150
00000183 7.74808251 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000184 7.74811855 [3396] ISRC: 0x00000000000000000000000000000000
00000185 7.74815179 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000186 7.74820627 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000187 7.74821912 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000188 7.74821912 [3396]
00000189 7.74825432 [3396]
00000190 7.74825432 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000191 7.74829036 [3396]
00000192 7.74829036 [3396] Write parameter page dump:
00000193 7.74829036 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000194 7.74832835 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000195 7.74836215 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000196 7.74841691 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000197 7.74842976 [3396] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000198 7.74846384 [3396] Host Application Code: 0x00, Session Format: 0x00
00000199 7.74849736 [3396] Packet Size: 0, Audio Pause Length: 150
00000200 7.74853340 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000201 7.74856916 [3396] ISRC: 0x00000000000000000000000000000000
00000202 7.74862280 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000203 7.74863565 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000204 7.74866917 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000205 7.74866917 [3396]
00000206 7.75008248 [3396]
00000207 7.75008248 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000208 7.75012550 [3396]
00000209 7.75012550 [3396] Write parameter page dump:
00000210 7.75012550 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000211 7.75015177 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000212 7.75020652 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000213 7.75024088 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000214 7.75027552 [3396] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000215 7.75030933 [3396] Host Application Code: 0x00, Session Format: 0x00
00000216 7.75034620 [3396] Packet Size: 0, Audio Pause Length: 150
00000217 7.75038224 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000218 7.75041604 [3396] ISRC: 0x00000000000000000000000000000000
00000219 7.75044985 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000220 7.75048337 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000221 7.75053030 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000222 7.75053030 [3396]
00000223 7.75090130 [3396]
00000224 7.75090130 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000225 7.75094097 [3396]
00000226 7.75094097 [3396] Write parameter page dump:
00000227 7.75094097 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000228 7.75098986 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000229 7.75101305 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000230 7.75104685 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000231 7.75108093 [3396] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000232 7.75111502 [3396] Host Application Code: 0x00, Session Format: 0x00
00000233 7.75114854 [3396] Packet Size: 0, Audio Pause Length: 150
00000234 7.75119743 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000235 7.75122006 [3396] ISRC: 0x00000000000000000000000000000000
00000236 7.75125330 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000237 7.75128683 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000238 7.75132035 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000239 7.75132035 [3396]
00000240 7.75135611 [3396]
00000241 7.75135611 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000242 7.75140388 [3396]
00000243 7.75140388 [3396] Write parameter page dump:
00000244 7.75140388 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000245 7.75142986 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000246 7.75146394 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000247 7.75149803 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000248 7.75153267 [3396] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000249 7.75156647 [3396] Host Application Code: 0x00, Session Format: 0x00
00000250 7.75161368 [3396] Packet Size: 0, Audio Pause Length: 150
00000251 7.75163631 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000252 7.75167235 [3396] ISRC: 0x00000000000000000000000000000000
00000253 7.75170587 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000254 7.75174917 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000255 7.75179555 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000256 7.75179555 [3396]
00000257 7.75322422 [3396]
00000258 7.75322422 [3396] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000259 7.75324182 [3396]
00000260 7.75324182 [3396] Write parameter page dump:
00000261 7.75324182 [3396] Page Code: 0x05, PSBit (Page Saveable): 0
00000262 7.75327982 [3396] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000263 7.75331334 [3396] BUP (Buffer Underrun Protection) Enabled: No
00000264 7.75334714 [3396] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000265 7.75338151 [3396] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000266 7.75343570 [3396] Host Application Code: 0x00, Session Format: 0x00
00000267 7.75344855 [3396] Packet Size: 0, Audio Pause Length: 150
00000268 7.75348431 [3396] Media Catalog Number: 0x00000000000000000000000000000000
00000269 7.75352035 [3396] ISRC: 0x00000000000000000000000000000000
00000270 7.75355359 [3396] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000271 7.75358684 [3396] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000272 7.75375055 [3396] Vendor Specific: 0x00 0x00 0x00 0x00
00000273 7.75375055 [3396]
00000274 7.75376591 [3396]
00000275 7.75376591 [3396] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): ENTERed
00000276 7.75515128 [3396]
00000277 7.75515128 [3396] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): Current Read 3522, Maximum Read 3522, Current Write 1762, Maximum Write 1762
00000278 7.75516916 [3396]
00000279 7.75516916 [3396] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): EXITing with success
00000280 7.76629711 [3396]
00000281 7.76629711 [3396] SCSI port inquiry dump:
00000282 7.76633818 [3396] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000283 7.76639489 [3396] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000284 7.76643177 [3396] Single Transfer Size: 65536 UCHARs
00000285 7.76643177 [3396]
00000286 7.76651474 [3396]
00000287 7.76651474 [3396] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000288 7.76695809 [3396]
00000289 7.76695809 [3396] SCSI device inquiry data dump:
00000290 7.76695809 [3396] Device Type: 0x05, Removable: Yes
00000291 7.76700055 [3396] SCSI Version: 0, Soft Reset Supported: No
00000292 7.76703408 [3396] Command Queue Supported: No, Linked Commands Supported: No
00000293 7.76708800 [3396] Sync Transfer Supported: No, 16-bit bus: No
00000294 7.76712571 [3396] 32-bit bus: No, Relative Addressing Supported: No
00000295 7.76716259 [3396] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US06'
00000296 7.76716259 [3396]
00000297 7.76717767 [3396]
00000298 7.76717767 [3396] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US06' sits at 1:0:0:0
00000299 7.76874323 [3396]
00000300 7.76874323 [3396] CDVD capabilities page dump:
00000301 7.76874323 [3396] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000302 7.76877452 [3396] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000303 7.76885442 [3396] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000304 7.76888962 [3396] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000305 7.76892342 [3396] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000306 7.76895723 [3396] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000307 7.76899047 [3396] Digital Port One: No, Digital Port Two: No
00000308 7.76902400 [3396] MODE2 Form1: Yes, MODE2 Form2: Yes
00000309 7.76905724 [3396] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000310 7.76909132 [3396] BUP (Buffer Underrun Protection) Supported: Yes
00000311 7.76912513 [3396] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000312 7.76915921 [3396] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000313 7.76919357 [3396] Lock: Yes, LockState: 0, Prevent Jumper: No
00000314 7.76922682 [3396] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000315 7.76926034 [3396] Separate Volume: Yes, Separate Channel Mute: Yes
00000316 7.76929470 [3396] Supports Disc Present: No, SW Slot Selection: No
00000317 7.76932822 [3396] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000318 7.76936287 [3396] Maximum read speed: 3522 KBps
00000319 7.76939583 [3396] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000320 7.76942908 [3396] Current read speed: 3522 KBps
00000321 7.76946260 [3396] Reserved7: 0x00
00000322 7.76949501 [3396] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000323 7.76952825 [3396] Reserved8: 0x00
00000324 7.76956094 [3396] Maximum write speed: 1762 KBps
00000325 7.76959418 [3396] Current write speed: 1762 KBps
00000326 7.78203822 [3396] Reserved9: 0x0001
00000327 7.78203822 [3396]
00000328 7.78282324 [3396]
00000329 7.78282324 [3396] SCSI port inquiry dump:
00000330 7.78286514 [3396] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000331 7.78291906 [3396] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000332 7.78295593 [3396] Single Transfer Size: 65536 UCHARs
00000333 7.78295593 [3396]
00000334 7.78304645 [3396]
00000335 7.78304645 [3396] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000336 7.78347946 [3396]
00000337 7.78347946 [3396] SCSI device inquiry data dump:
00000338 7.78347946 [3396] Device Type: 0x05, Removable: Yes
00000339 7.78354092 [3396] SCSI Version: 0, Soft Reset Supported: No
00000340 7.78357417 [3396] Command Queue Supported: No, Linked Commands Supported: No
00000341 7.78358758 [3396] Sync Transfer Supported: No, 16-bit bus: No
00000342 7.78362110 [3396] 32-bit bus: No, Relative Addressing Supported: No
00000343 7.78365966 [3396] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US06'
00000344 7.78365966 [3396]
00000345 7.78369877 [3396]
00000346 7.78369877 [3396] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US06' sits at 1:0:0:0
00000347 7.78526964 [3396]
00000348 7.78526964 [3396] CDVD capabilities page dump:
00000349 7.78526964 [3396] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000350 7.78531126 [3396] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000351 7.78535931 [3396] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000352 7.78539423 [3396] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000353 7.78542804 [3396] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000354 7.78546184 [3396] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000355 7.78549536 [3396] Digital Port One: No, Digital Port Two: No
00000356 7.78552889 [3396] MODE2 Form1: Yes, MODE2 Form2: Yes
00000357 7.78556213 [3396] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000358 7.78559593 [3396] BUP (Buffer Underrun Protection) Supported: Yes
00000359 7.78562974 [3396] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000360 7.78566382 [3396] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000361 7.78569818 [3396] Lock: Yes, LockState: 0, Prevent Jumper: No
00000362 7.78573199 [3396] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000363 7.78576579 [3396] Separate Volume: Yes, Separate Channel Mute: Yes
00000364 7.78580015 [3396] Supports Disc Present: No, SW Slot Selection: No
00000365 7.78583367 [3396] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000366 7.78586832 [3396] Maximum read speed: 3522 KBps
00000367 7.78592028 [3396] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000368 7.78595324 [3396] Current read speed: 3522 KBps
00000369 7.78598677 [3396] Reserved7: 0x00
00000370 7.78601917 [3396] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000371 7.78605242 [3396] Reserved8: 0x00
00000372 7.78608510 [3396] Maximum write speed: 1762 KBps
00000373 7.78611807 [3396] Current write speed: 1762 KBps
00000374 7.80076323 [3396] Reserved9: 0x0001
00000375 7.80076323 [3396]
00000376 7.83273936 [3396]
00000377 7.83273936 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): ENTERed for 10 second(s)
00000378 7.88020964 [3396]
00000379 7.88020964 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): EXITing with success
00000380 7.88182492 [3396]
00000381 7.88182492 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000382 7.88566647 [3396]
00000383 7.88566647 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000384 7.88578716 [3396]
00000385 7.88578716 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000386 7.89024331 [3396]
00000387 7.89024331 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000388 7.91563313 [3396]
00000389 7.91563313 [3396] SCSI port inquiry dump:
00000390 7.91567392 [3396] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000391 7.91570940 [3396] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000392 7.91574376 [3396] Single Transfer Size: 65536 UCHARs
00000393 7.91574376 [3396]
00000394 7.91584992 [3396]
00000395 7.91584992 [3396] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000396 7.91627344 [3396]
00000397 7.91627344 [3396] SCSI device inquiry data dump:
00000398 7.91627344 [3396] Device Type: 0x05, Removable: Yes
00000399 7.91633853 [3396] SCSI Version: 0, Soft Reset Supported: No
00000400 7.91638183 [3396] Command Queue Supported: No, Linked Commands Supported: No
00000401 7.91643323 [3396] Sync Transfer Supported: No, 16-bit bus: No
00000402 7.91646760 [3396] 32-bit bus: No, Relative Addressing Supported: No
00000403 7.91652934 [3396] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US06'
00000404 7.91652934 [3396]
00000405 7.91654414 [3396]
00000406 7.91654414 [3396] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US06' sits at 1:0:0:0
00000407 7.91818793 [3396]
00000408 7.91818793 [3396] CDVD capabilities page dump:
00000409 7.91818793 [3396] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000410 7.91821922 [3396] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000411 7.91825414 [3396] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000412 7.91828822 [3396] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000413 7.91835582 [3396] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000414 7.91839019 [3396] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000415 7.91842371 [3396] Digital Port One: No, Digital Port Two: No
00000416 7.91845695 [3396] MODE2 Form1: Yes, MODE2 Form2: Yes
00000417 7.91848964 [3396] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000418 7.91852316 [3396] BUP (Buffer Underrun Protection) Supported: Yes
00000419 7.91855669 [3396] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000420 7.91859049 [3396] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000421 7.91862457 [3396] Lock: Yes, LockState: 0, Prevent Jumper: No
00000422 7.91865810 [3396] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000423 7.91869162 [3396] Separate Volume: Yes, Separate Channel Mute: Yes
00000424 7.91872570 [3396] Supports Disc Present: No, SW Slot Selection: No
00000425 7.91875867 [3396] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000426 7.91879331 [3396] Maximum read speed: 3522 KBps
00000427 7.91882628 [3396] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000428 7.91885924 [3396] Current read speed: 3522 KBps
00000429 7.91889276 [3396] Reserved7: 0x00
00000430 7.91892517 [3396] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000431 7.91895842 [3396] Reserved8: 0x00
00000432 7.91899082 [3396] Maximum write speed: 1762 KBps
00000433 7.91902351 [3396] Current write speed: 1762 KBps
00000434 7.93219362 [3396] Reserved9: 0x0001
00000435 7.93219362 [3396]
00000436 7.93621536 [3396]
00000437 7.93621536 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): ENTERed for 10 second(s)
00000438 7.93847877 [3396]
00000439 7.93847877 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): EXITing with success
00000440 7.93997282 [3396]
00000441 7.93997282 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000442 7.94366770 [3396]
00000443 7.94366770 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000444 7.94368921 [3396]
00000445 7.94368921 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000446 7.95054511 [3396]
00000447 7.95054511 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000448 7.95325691 [3396]
00000449 7.95325691 [3396] SCSI port inquiry dump:
00000450 7.95329630 [3396] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000451 7.95335301 [3396] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000452 7.95339017 [3396] Single Transfer Size: 65536 UCHARs
00000453 7.95339017 [3396]
00000454 7.95349744 [3396]
00000455 7.95349744 [3396] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000456 7.95394778 [3396]
00000457 7.95394778 [3396] SCSI device inquiry data dump:
00000458 7.95394778 [3396] Device Type: 0x05, Removable: Yes
00000459 7.95398857 [3396] SCSI Version: 0, Soft Reset Supported: No
00000460 7.95402237 [3396] Command Queue Supported: No, Linked Commands Supported: No
00000461 7.95407629 [3396] Sync Transfer Supported: No, 16-bit bus: No
00000462 7.95411428 [3396] 32-bit bus: No, Relative Addressing Supported: No
00000463 7.95415060 [3396] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US06'
00000464 7.95415060 [3396]
00000465 7.95416540 [3396]
00000466 7.95416540 [3396] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US06' sits at 1:0:0:0
00000467 7.95608995 [3396]
00000468 7.95608995 [3396] CDVD capabilities page dump:
00000469 7.95608995 [3396] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000470 7.95612990 [3396] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000471 7.95618577 [3396] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000472 7.95622097 [3396] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000473 7.95625505 [3396] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000474 7.95628886 [3396] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000475 7.95632182 [3396] Digital Port One: No, Digital Port Two: No
00000476 7.95635507 [3396] MODE2 Form1: Yes, MODE2 Form2: Yes
00000477 7.95638831 [3396] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000478 7.95644055 [3396] BUP (Buffer Underrun Protection) Supported: Yes
00000479 7.95647575 [3396] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000480 7.95650984 [3396] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000481 7.95654420 [3396] Lock: Yes, LockState: 0, Prevent Jumper: No
00000482 7.95657744 [3396] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000483 7.95661097 [3396] Separate Volume: Yes, Separate Channel Mute: Yes
00000484 7.95664561 [3396] Supports Disc Present: No, SW Slot Selection: No
00000485 7.95667941 [3396] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000486 7.95671405 [3396] Maximum read speed: 3522 KBps
00000487 7.95674730 [3396] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000488 7.95678026 [3396] Current read speed: 3522 KBps
00000489 7.95681406 [3396] Reserved7: 0x00
00000490 7.95684647 [3396] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000491 7.95688027 [3396] Reserved8: 0x00
00000492 7.95691296 [3396] Maximum write speed: 1762 KBps
00000493 7.95694565 [3396] Current write speed: 1762 KBps
00000494 7.96896337 [3396] Reserved9: 0x0001
00000495 7.96896337 [3396]
00000496 7.97305272 [3396]
00000497 7.97305272 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): ENTERed for 10 second(s)
00000498 7.97520188 [3396]
00000499 7.97520188 [3396] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): EXITing with success
00000500 7.97604025 [3396]
00000501 7.97604025 [3396] CStarBurn_CdvdBurnerGrabber::GetBUP(): JustLink buffer underrun protection, supported status 0x01, enabled status 0x01
00000502 7.97819276 [3396]
00000503 7.97819276 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000504 7.98219159 [3396]
00000505 7.98219159 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000506 7.98227345 [3396]
00000507 7.98227345 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000508 7.98613232 [3396]
00000509 7.98613232 [3396] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000003
00000510 7.98723860 [3396]
00000511 7.98723860 [3396] CStarBurn_CdvdBurnerGrabber::Blank(): ENTERed
00000512 7.99277338 [3396]
00000513 7.99277338 [3396] CStarBurn_CdvdBurnerGrabber::BlankForCDRW(): ENTERed
00000514 7.99940886 [3396]
00000515 7.99940886 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000516 7.99946977 [3396]
00000517 7.99946977 [3396] SCSI request block dump:
00000518 7.99946977 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000519 7.99951279 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000520 7.99951279 [3396]
00000521 7.99961364 [3396]
00000522 7.99961364 [3396] SCSI sense data dump:
00000523 7.99961364 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000524 7.99965359 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000525 7.99968683 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000526 7.99972091 [3396] Additional Sense Length: 0x0A (10)
00000527 7.99975500 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000528 7.99978936 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000529 7.99978936 [3396]
00000530 8.10358467 [3396]
00000531 8.10358467 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000532 8.10361652 [3396]
00000533 8.10361652 [3396] SCSI request block dump:
00000534 8.10361652 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000535 8.10365871 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000536 8.10365871 [3396]
00000537 8.10369726 [3396]
00000538 8.10369726 [3396] SCSI sense data dump:
00000539 8.10369726 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000540 8.10373497 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000541 8.10376961 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000542 8.10382493 [3396] Additional Sense Length: 0x0A (10)
00000543 8.10383750 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000544 8.10387158 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000545 8.10387158 [3396]
00000546 8.20784150 [3396]
00000547 8.20784150 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000548 8.20790017 [3396]
00000549 8.20790017 [3396] SCSI request block dump:
00000550 8.20790017 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000551 8.20794598 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000552 8.20794598 [3396]
00000553 8.20798342 [3396]
00000554 8.20798342 [3396] SCSI sense data dump:
00000555 8.20798342 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000556 8.20802113 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000557 8.20807812 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000558 8.20811248 [3396] Additional Sense Length: 0x0A (10)
00000559 8.20812506 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000560 8.20815942 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000561 8.20815942 [3396]
00000562 8.31122280 [3396]
00000563 8.31122280 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000564 8.31128426 [3396]
00000565 8.31128426 [3396] SCSI request block dump:
00000566 8.31128426 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000567 8.31135019 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000568 8.31135019 [3396]
00000569 8.31138734 [3396]
00000570 8.31138734 [3396] SCSI sense data dump:
00000571 8.31138734 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000572 8.31140410 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000573 8.31143902 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000574 8.31147311 [3396] Additional Sense Length: 0x0A (10)
00000575 8.31150691 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000576 8.31154714 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000577 8.31154714 [3396]
00000578 8.41452978 [3396]
00000579 8.41452978 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000580 8.41459068 [3396]
00000581 8.41459068 [3396] SCSI request block dump:
00000582 8.41459068 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000583 8.41463314 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000584 8.41463314 [3396]
00000585 8.41467142 [3396]
00000586 8.41467142 [3396] SCSI sense data dump:
00000587 8.41467142 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000588 8.41470941 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000589 8.41477786 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000590 8.41481278 [3396] Additional Sense Length: 0x0A (10)
00000591 8.41482535 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000592 8.41485943 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000593 8.41485943 [3396]
00000594 8.51777419 [3396]
00000595 8.51777419 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000596 8.51783621 [3396]
00000597 8.51783621 [3396] SCSI request block dump:
00000598 8.51783621 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000599 8.51790158 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000600 8.51790158 [3396]
00000601 8.51793873 [3396]
00000602 8.51793873 [3396] SCSI sense data dump:
00000603 8.51793873 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000604 8.51795521 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000605 8.51798986 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000606 8.51802366 [3396] Additional Sense Length: 0x0A (10)
00000607 8.51805746 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000608 8.51809769 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000609 8.51809769 [3396]
00000610 8.62123231 [3396]
00000611 8.62123231 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000612 8.62129405 [3396]
00000613 8.62129405 [3396] SCSI request block dump:
00000614 8.62129405 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000615 8.62133651 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000616 8.62133651 [3396]
00000617 8.62137478 [3396]
00000618 8.62137478 [3396] SCSI sense data dump:
00000619 8.62137478 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000620 8.62141278 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000621 8.62146977 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000622 8.62150469 [3396] Additional Sense Length: 0x0A (10)
00000623 8.62151726 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000624 8.62158682 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000625 8.62158682 [3396]
00000626 8.72548355 [3396]
00000627 8.72548355 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000628 8.72554221 [3396]
00000629 8.72554221 [3396] SCSI request block dump:
00000630 8.72554221 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000631 8.72558719 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000632 8.72558719 [3396]
00000633 8.72562490 [3396]
00000634 8.72562490 [3396] SCSI sense data dump:
00000635 8.72562490 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000636 8.72566262 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000637 8.72570871 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000638 8.72573162 [3396] Additional Sense Length: 0x0A (10)
00000639 8.72576543 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000640 8.72579979 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000641 8.72579979 [3396]
00000642 8.82881623 [3396]
00000643 8.82881623 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000644 8.82887546 [3396]
00000645 8.82887546 [3396] SCSI request block dump:
00000646 8.82887546 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000647 8.82893049 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000648 8.82893049 [3396]
00000649 8.82895591 [3396]
00000650 8.82895591 [3396] SCSI sense data dump:
00000651 8.82895591 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000652 8.82899335 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000653 8.82902771 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000654 8.82906151 [3396] Additional Sense Length: 0x0A (10)
00000655 8.82909560 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000656 8.82913527 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000657 8.82913527 [3396]
00000658 8.93234922 [3396]
00000659 8.93234922 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000660 8.93241124 [3396]
00000661 8.93241124 [3396] SCSI request block dump:
00000662 8.93241124 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000663 8.93245399 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000664 8.93245399 [3396]
00000665 8.93249254 [3396]
00000666 8.93249254 [3396] SCSI sense data dump:
00000667 8.93249254 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000668 8.93253025 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000669 8.93259506 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000670 8.93261797 [3396] Additional Sense Length: 0x0A (10)
00000671 8.93265178 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000672 8.93268642 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000673 8.93268642 [3396]
00000674 9.03652364 [3396]
00000675 9.03652364 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000676 9.03658649 [3396]
00000677 9.03658649 [3396] SCSI request block dump:
00000678 9.03658649 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000679 9.03664153 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000680 9.03664153 [3396]
00000681 9.03666779 [3396]
00000682 9.03666779 [3396] SCSI sense data dump:
00000683 9.03666779 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000684 9.03670550 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000685 9.03674014 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000686 9.03678596 [3396] Additional Sense Length: 0x0A (10)
00000687 9.03681976 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000688 9.03685915 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000689 9.03685915 [3396]
00000690 9.14174902 [3396]
00000691 9.14174902 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000692 9.14180517 [3396]
00000693 9.14180517 [3396] SCSI request block dump:
00000694 9.14180517 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000695 9.14184931 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000696 9.14184931 [3396]
00000697 9.14188731 [3396]
00000698 9.14188731 [3396] SCSI sense data dump:
00000699 9.14188731 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000700 9.14192474 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000701 9.14197028 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000702 9.14199291 [3396] Additional Sense Length: 0x0A (10)
00000703 9.14202643 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000704 9.14206051 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000705 9.14206051 [3396]
00000706 9.24519988 [3396]
00000707 9.24519988 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000708 9.24526218 [3396]
00000709 9.24526218 [3396] SCSI request block dump:
00000710 9.24526218 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000711 9.24532755 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000712 9.24532755 [3396]
00000713 9.24536470 [3396]
00000714 9.24536470 [3396] SCSI sense data dump:
00000715 9.24536470 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000716 9.24538119 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000717 9.24541611 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000718 9.24544991 [3396] Additional Sense Length: 0x0A (10)
00000719 9.24548399 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000720 9.24552394 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000721 9.24552394 [3396]
00000722 9.34853927 [3396]
00000723 9.34853927 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000724 9.34860269 [3396]
00000725 9.34860269 [3396] SCSI request block dump:
00000726 9.34860269 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000727 9.34864459 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000728 9.34864459 [3396]
00000729 9.34868258 [3396]
00000730 9.34868258 [3396] SCSI sense data dump:
00000731 9.34868258 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000732 9.34872114 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000733 9.34877841 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000734 9.34881361 [3396] Additional Sense Length: 0x0A (10)
00000735 9.34882674 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000736 9.34887926 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000737 9.34887926 [3396]
00000738 9.45376074 [3396]
00000739 9.45376074 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000740 9.45399513 [3396]
00000741 9.45399513 [3396] SCSI request block dump:
00000742 9.45399513 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000743 9.45410771 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000744 9.45410771 [3396]
00000745 9.45414571 [3396]
00000746 9.45414571 [3396] SCSI sense data dump:
00000747 9.45414571 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000748 9.45416191 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000749 9.45419683 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000750 9.45425382 [3396] Additional Sense Length: 0x0A (10)
00000751 9.45428763 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000752 9.45432730 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000753 9.45432730 [3396]
00000754 9.55820530 [3396]
00000755 9.55820530 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000756 9.55826704 [3396]
00000757 9.55826704 [3396] SCSI request block dump:
00000758 9.55826704 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000759 9.55830951 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000760 9.55830951 [3396]
00000761 9.55834834 [3396]
00000762 9.55834834 [3396] SCSI sense data dump:
00000763 9.55834834 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000764 9.55838633 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000765 9.55844276 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000766 9.55847740 [3396] Additional Sense Length: 0x0A (10)
00000767 9.55848998 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000768 9.55852406 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000769 9.55852406 [3396]
00000770 9.66256661 [3396]
00000771 9.66256661 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000772 9.66262556 [3396]
00000773 9.66262556 [3396] SCSI request block dump:
00000774 9.66262556 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000775 9.66267081 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000776 9.66267081 [3396]
00000777 9.66270881 [3396]
00000778 9.66270881 [3396] SCSI sense data dump:
00000779 9.66270881 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000780 9.66274708 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000781 9.66278172 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000782 9.66281553 [3396] Additional Sense Length: 0x0A (10)
00000783 9.66284905 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000784 9.66292224 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000785 9.66292224 [3396]
00000786 9.76679913 [3396]
00000787 9.76679913 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000788 9.76686059 [3396]
00000789 9.76686059 [3396] SCSI request block dump:
00000790 9.76686059 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000791 9.76690250 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000792 9.76690250 [3396]
00000793 9.76694105 [3396]
00000794 9.76694105 [3396] SCSI sense data dump:
00000795 9.76694105 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000796 9.76697848 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000797 9.76702458 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000798 9.76704749 [3396] Additional Sense Length: 0x0A (10)
00000799 9.76708129 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000800 9.76711565 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000801 9.76711565 [3396]
00000802 9.87016646 [3396]
00000803 9.87016646 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000804 9.87022820 [3396]
00000805 9.87022820 [3396] SCSI request block dump:
00000806 9.87022820 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000807 9.87028240 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000808 9.87028240 [3396]
00000809 9.87030810 [3396]
00000810 9.87030810 [3396] SCSI sense data dump:
00000811 9.87030810 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000812 9.87034553 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000813 9.87038017 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000814 9.87041426 [3396] Additional Sense Length: 0x0A (10)
00000815 9.87044806 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000816 9.87048857 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000817 9.87048857 [3396]
00000818 9.97348965 [3396]
00000819 9.97348965 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000820 9.97355167 [3396]
00000821 9.97355167 [3396] SCSI request block dump:
00000822 9.97355167 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000823 9.97359441 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000824 9.97359441 [3396]
00000825 9.97363296 [3396]
00000826 9.97363296 [3396] SCSI sense data dump:
00000827 9.97363296 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000828 9.97367096 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000829 9.97371705 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000830 9.97373996 [3396] Additional Sense Length: 0x0A (10)
00000831 9.97377376 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000832 9.97380784 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000833 9.97380784 [3396]
00000834 10.07683183 [3396]
00000835 10.07683183 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000836 10.07689497 [3396]
00000837 10.07689497 [3396] SCSI request block dump:
00000838 10.07689497 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000839 10.07694972 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000840 10.07694972 [3396]
00000841 10.07698604 [3396]
00000842 10.07698604 [3396] SCSI sense data dump:
00000843 10.07698604 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000844 10.07702376 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000845 10.07705840 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000846 10.07709248 [3396] Additional Sense Length: 0x0A (10)
00000847 10.07712656 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000848 10.07716791 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000849 10.07716791 [3396]
00000850 10.18054390 [3396]
00000851 10.18054390 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000852 10.18060256 [3396]
00000853 10.18060256 [3396] SCSI request block dump:
00000854 10.18060256 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000855 10.18064838 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000856 10.18064838 [3396]
00000857 10.18068637 [3396]
00000858 10.18068637 [3396] SCSI sense data dump:
00000859 10.18068637 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000860 10.18072409 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000861 10.18077046 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000862 10.18079365 [3396] Additional Sense Length: 0x0A (10)
00000863 10.18082717 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000864 10.18086181 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000865 10.18086181 [3396]
00000866 10.28446995 [3396]
00000867 10.28446995 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000868 10.28453393 [3396]
00000869 10.28453393 [3396] SCSI request block dump:
00000870 10.28453393 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000871 10.28458952 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000872 10.28458952 [3396]
00000873 10.28461522 [3396]
00000874 10.28461522 [3396] SCSI sense data dump:
00000875 10.28461522 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000876 10.28465322 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000877 10.28468786 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000878 10.28472166 [3396] Additional Sense Length: 0x0A (10)
00000879 10.28475574 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000880 10.28480799 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000881 10.28480799 [3396]
00000882 10.38778504 [3396]
00000883 10.38778504 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000884 10.38784678 [3396]
00000885 10.38784678 [3396] SCSI request block dump:
00000886 10.38784678 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000887 10.38788896 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000888 10.38788896 [3396]
00000889 10.38792752 [3396]
00000890 10.38792752 [3396] SCSI sense data dump:
00000891 10.38792752 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000892 10.38796495 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000893 10.38801077 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000894 10.38803395 [3396] Additional Sense Length: 0x0A (10)
00000895 10.38806804 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000896 10.38810240 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000897 10.38810240 [3396]
00000898 10.49103475 [3396]
00000899 10.49103475 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000900 10.49109230 [3396]
00000901 10.49109230 [3396] SCSI request block dump:
00000902 10.49109230 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000903 10.49114706 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000904 10.49114706 [3396]
00000905 10.49117220 [3396]
00000906 10.49117220 [3396] SCSI sense data dump:
00000907 10.49117220 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000908 10.49120936 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000909 10.49124400 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000910 10.49127808 [3396] Additional Sense Length: 0x0A (10)
00000911 10.49131188 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000912 10.49135155 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000913 10.49135155 [3396]
00000914 10.59445823 [3396]
00000915 10.59445823 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000916 10.59451969 [3396]
00000917 10.59451969 [3396] SCSI request block dump:
00000918 10.59451969 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000919 10.59456216 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000920 10.59456216 [3396]
00000921 10.59460071 [3396]
00000922 10.59460071 [3396] SCSI sense data dump:
00000923 10.59460071 [3396] Error Code: 0x70, Is Sense Valid: No, Segment Number: 0x00 (0)
00000924 10.59463926 [3396] Sense Key: 0x02, Reserved: 0x00, Incorrect Length: No
00000925 10.59468536 [3396] End Of Media: No, File Mark: No, Information: 0x00 0x00 0x00 0x00
00000926 10.59470855 [3396] Additional Sense Length: 0x0A (10)
00000927 10.59474263 [3396] Command Specific Information: 0x00 0x00 0x00 0x00
00000928 10.59477727 [3396] Additional Sense Code (ASC): 0x04, Additional Sense Code Qualifier (ASCQ): 0x08
00000929 10.59477727 [3396]
00000930 10.69785517 [3396]
00000931 10.69785517 [3396] CStarBurn_ScsiTransportASPI::ExecuteCDB(): Command failed
00000932 10.69791328 [3396]
00000933 10.69791328 [3396] SCSI request block dump:
00000934 10.69791328 [3396] SRB_Status: 0x04, SRB_HaStat: 0x00, SRB_TargStat: 0x02
00000935 10.69795826 [3396] CDB Length: 10, CDB dump: 0x51 0x00 0x00 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
00000936 10.69795826 [3396]
00000937 10.69799653 [3396]
00000938 10.69799653 [3396] SCSI sense data dump:
00000939 10.69799653 [3396] Error Code: 0x70, Is Sense Valid: No, Segment N


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 21 posts ]  Go to page 1, 2  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 15 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group