Compare commits

...

4 Commits

5 changed files with 30 additions and 12 deletions

6
README
View File

@ -11,7 +11,7 @@ Still containing parts of Libburn. By Derek Foreman <derek@signalmarketing.com>
and Ben Jansens <xor@orodu.net>
Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
http://files.libburnia-project.org/releases/libburn-0.6.0.pl00.tar.gz
http://files.libburnia-project.org/releases/libburn-0.6.0.pl01.tar.gz
------------------------------------------------------------------------------
@ -19,9 +19,9 @@ Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
From tarball
Obtain libburn-0.6.0.pl00.tar.gz, take it to a directory of your choice and do:
Obtain libburn-0.6.0.pl01.tar.gz, take it to a directory of your choice and do:
tar xzf libburn-0.6.0.pl00.tar.gz
tar xzf libburn-0.6.0.pl01.tar.gz
cd libburn-0.6.0
./configure --prefix=/usr
make

View File

@ -4,7 +4,7 @@
cdrskin. By Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org but also published via:
http://scdbackup.sourceforge.net/cdrskin_eng.html
http://scdbackup.sourceforge.net/cdrskin-0.6.0.pl00.tar.gz
http://scdbackup.sourceforge.net/cdrskin-0.6.0.pl01.tar.gz
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------
@ -21,9 +21,9 @@ By using this software you agree to the disclaimer at the end of this text
Compilation, First Glimpse, Installation
Obtain cdrskin-0.6.0.pl00.tar.gz, take it to a directory of your choice and do:
Obtain cdrskin-0.6.0.pl01.tar.gz, take it to a directory of your choice and do:
tar xzf cdrskin-0.6.0.pl00.tar.gz
tar xzf cdrskin-0.6.0.pl01.tar.gz
cd cdrskin-0.6.0
Within that directory execute:

View File

@ -191,7 +191,7 @@ or to do experiments on BD-R media.
<P>
<DL>
<DT>Download as source code (see README):</DT>
<DD><A HREF="cdrskin-0.6.0.pl00.tar.gz">cdrskin-0.6.0.pl00.tar.gz</A>
<DD><A HREF="cdrskin-0.6.0.pl01.tar.gz">cdrskin-0.6.0.pl01.tar.gz</A>
(745 KB).
</DD>
<DD>
@ -256,6 +256,14 @@ Bug fixes towards cdrskin-0.5.8.pl00:
-->
</UL>
Bug fixes towards cdrskin-0.6.0.pl00:
<UL>
<LI>BD-R media were not closed properly.
The last session staid open and unreadable.</LI>
<!--
-->
</UL>
</P>
<HR>

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2009.01.02.160001"
#define Cdrskin_timestamP "2009.01.07.140001"

View File

@ -1159,19 +1159,29 @@ int burn_disc_close_track_dvd_minus_r(struct burn_write_opts *o,
int burn_disc_finalize_dvd_plus_r(struct burn_write_opts *o)
{
struct burn_drive *d = o->drive;
char msg[80];
sprintf(msg, "Finalizing %s ...",
d->current_profile_text);
libdax_msgs_submit(libdax_messenger, d->global_index,
0x00000002,
LIBDAX_MSGS_SEV_DEBUG, LIBDAX_MSGS_PRIO_ZERO,
"Finalizing DVD+R ...", 0, 0);
msg, 0, 0);
/* CLOSE SESSION, 101b, Finalize with minimal radius */
d->close_track_session(d, 2, 1); /* (2<<1)|1 = 5 */
if(d->current_profile == 0x41) { /* BD-R */
/* CLOSE SESSION, 110b, Finalize Disc */
d->close_track_session(d, 3, 0); /* (3<<1)|0 = 6 */
} else {
/* CLOSE SESSION, 101b, Finalize with minimal radius */
d->close_track_session(d, 2, 1); /* (2<<1)|1 = 5 */
}
sprintf(msg, "... finalizing %s done ",
d->current_profile_text);
libdax_msgs_submit(libdax_messenger, d->global_index,
0x00000002,
LIBDAX_MSGS_SEV_DEBUG, LIBDAX_MSGS_PRIO_ZERO,
"... finalizing DVD+R done ", 0, 0);
msg, 0, 0);
return 1;
}