Rocket Division Software

CD/DVD/Blu-Ray/HD-DVD recording, iSCSI and AoE (ATA-over-Ethernet)




 [ 14 posts ] 
AuthorMessage
 Post subject: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
I have a DVD-RW disc, it has some data already and the status is INCOMPLETE.
My program want to burn other data in it incrementally and I have imported last session using ImportTrack(-1), but the program get a STARBURN_ERR_DISC_FINALIZED error.
I use the sample "DataBurner" to burn it, and get the some error.
But I use the program "StarBurn" that you provide, it can burn data incrementally on the same DVD-RW disc.
My program can burn other disc successfully using same method, such as CD-R, CD-RW, DVD+RW.
Please help me and the code is:

m_dataBurner->LockTray = VARIANT_TRUE;
m_fsParams.isTestBurn = VARIANT_FALSE;
// Specify Verification mode
m_fsParams.isVerifyNeed = VARIANT_FALSE;
m_dataBurner->NextSessionAllowed = VARIANT_TRUE;

// Specify the Drive
m_dataBurner->Drive = GetCurrentDrive();
// Specify the burning speed
m_dataBurner->WriteSpeed = GetCurrentSpeed();

//get disc type
IDiscInfoPtr discInfo = m_dataBurner->Drive->DiscInfo;
if((discInfo->DiscType & STARBURN_DISC_TYPE_DVD))
{
//If you plan to burn to DVD's you can use only TAO mode!!
m_dataBurner->Mode = STARBURN_WRITE_MODE_TAO;
}
else
{
// Specify the Write mode
m_dataBurner->Mode = STARBURN_WRITE_MODE_TAO;
}

//m_volumeName = _T("Star Burn");
m_volumeName = g_strLabel;
m_fsParams.Set(GetSafeHwnd(),m_dataBurner);
m_fsParams.volumeName = m_volumeName;


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
The picture shows infomation of DVD-RW disc.


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
the sample "DataBurner", error!


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
the program "StarBurn", successful


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline
Site Admin

Joined: F
Posts: 3553
Location: British Virgin Islands
We don't need your source and/or screenshots at this point. Provide us with StarBurn log.

_________________
Regards,
Anton Kolomyeytsev

Rocket Division Software


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
OK, thanks
Please tell me the location of log, both "DataBurner" and "StarBurn".


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
"Data Burner" log, the sample failed.


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
"StarBurn" log, the sample successful.


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
any result?? please tell me


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 201
Hello,

1) At the first the StarBurnX uses newest version of StarBurn SDK so some differences are possible.

2) It's seems bug in StarBurnX ...

TOC says that - "NWA_V (Next Writable Address Valid): No "

but

Track Info says - "NWA_V (Next Writable Address Valid): Yes"


so ... we are trying to solve this problem.

Regards,

Dmitry


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
thanks for your reply.
If you solve the bug, please tell me.


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 201
Hello,

Off course!

Thanx!

Dmitry


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline

Joined: T
Posts: 20
hi,
Can you tell me how to burn the disc successfully using my program?
or tell me the method that the example of "StarBurn" do.
Maybe some lines code like bellow:
m_dataBurner->NextSessionAllowed = VARIANT_TRUE;


Top
 Profile  
 
 Post subject: Re: Get a STARBURN_ERR_DISC_FINALIZED error when burning DVD-RW
Posted:
Offline
Site Admin

Joined: F
Posts: 3553
Location: British Virgin Islands
I don't think we know (and want to know really) how to use your program...

jyu_730 wrote:
hi,
Can you tell me how to burn the disc successfully using my program?
or tell me the method that the example of "StarBurn" do.
Maybe some lines code like bellow:
m_dataBurner->NextSessionAllowed = VARIANT_TRUE;

_________________
Regards,
Anton Kolomyeytsev

Rocket Division Software


Top
 Profile  
 
 [ 14 posts ]