2006-08-15 20:37:04 +00:00
|
|
|
#include "libburn.h"
|
|
|
|
#include "options.h"
|
2007-02-07 16:30:42 +00:00
|
|
|
#include "drive.h"
|
2006-08-15 20:37:04 +00:00
|
|
|
#include "transport.h"
|
|
|
|
|
2006-10-07 14:19:32 +00:00
|
|
|
/* ts A61007 */
|
|
|
|
/* #include <a ssert.h> */
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2006-10-07 14:19:32 +00:00
|
|
|
|
|
|
|
#include "libdax_msgs.h"
|
|
|
|
extern struct libdax_msgs *libdax_messenger;
|
|
|
|
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
struct burn_write_opts *burn_write_opts_new(struct burn_drive *drive)
|
|
|
|
{
|
|
|
|
struct burn_write_opts *opts;
|
|
|
|
|
|
|
|
opts = malloc(sizeof(struct burn_write_opts));
|
2006-10-07 14:19:32 +00:00
|
|
|
if (opts == NULL) {
|
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020111,
|
|
|
|
LIBDAX_MSGS_SEV_FATAL, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"Could not allocate new auxiliary object", 0, 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-08-15 20:37:04 +00:00
|
|
|
opts->drive = drive;
|
|
|
|
opts->refcount = 1;
|
|
|
|
opts->write_type = BURN_WRITE_TAO;
|
|
|
|
opts->block_type = BURN_BLOCK_MODE1;
|
|
|
|
opts->toc_entry = NULL;
|
|
|
|
opts->toc_entries = 0;
|
|
|
|
opts->simulate = 0;
|
|
|
|
opts->underrun_proof = drive->mdata->underrun_proof;
|
|
|
|
opts->perform_opc = 1;
|
2006-12-20 11:20:08 +00:00
|
|
|
opts->obs = -1;
|
2006-12-24 14:24:35 +00:00
|
|
|
opts->obs_pad = 0;
|
2006-12-24 18:23:30 +00:00
|
|
|
opts->start_byte = -1;
|
2007-02-14 20:32:56 +00:00
|
|
|
opts->fill_up_media = 0;
|
2007-03-03 14:11:52 +00:00
|
|
|
opts->force_is_set = 0;
|
2006-08-15 20:37:04 +00:00
|
|
|
opts->has_mediacatalog = 0;
|
|
|
|
opts->format = BURN_CDROM;
|
|
|
|
opts->multi = 0;
|
|
|
|
opts->control = 0;
|
|
|
|
return opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_free(struct burn_write_opts *opts)
|
|
|
|
{
|
|
|
|
if (--opts->refcount <= 0)
|
|
|
|
free(opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct burn_read_opts *burn_read_opts_new(struct burn_drive *drive)
|
|
|
|
{
|
|
|
|
struct burn_read_opts *opts;
|
|
|
|
|
|
|
|
opts = malloc(sizeof(struct burn_read_opts));
|
|
|
|
opts->drive = drive;
|
|
|
|
opts->refcount = 1;
|
|
|
|
opts->raw = 0;
|
|
|
|
opts->c2errors = 0;
|
|
|
|
opts->subcodes_audio = 0;
|
|
|
|
opts->subcodes_data = 0;
|
|
|
|
opts->hardware_error_recovery = 0;
|
|
|
|
opts->report_recovered_errors = 0;
|
|
|
|
opts->transfer_damaged_blocks = 0;
|
|
|
|
opts->hardware_error_retries = 3;
|
|
|
|
|
|
|
|
return opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_free(struct burn_read_opts *opts)
|
|
|
|
{
|
|
|
|
if (--opts->refcount <= 0)
|
|
|
|
free(opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
int burn_write_opts_set_write_type(struct burn_write_opts *opts,
|
|
|
|
enum burn_write_types write_type,
|
|
|
|
int block_type)
|
|
|
|
{
|
2006-10-07 14:19:32 +00:00
|
|
|
int sector_get_outmode(enum burn_write_types write_type,
|
|
|
|
enum burn_block_types block_type);
|
|
|
|
int spc_block_type(enum burn_block_types b);
|
|
|
|
|
|
|
|
/* ts A61007 */
|
|
|
|
if (! ( (write_type == BURN_WRITE_SAO && block_type == BURN_BLOCK_SAO)
|
|
|
|
|| (opts->drive->block_types[write_type] & block_type) ) ) {
|
|
|
|
bad_combination:;
|
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020112,
|
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"Bad combination of write_type and block_type", 0, 0);
|
|
|
|
return 0;
|
2006-08-15 20:37:04 +00:00
|
|
|
}
|
2006-10-07 14:19:32 +00:00
|
|
|
/* ts A61007 : obsoleting Assert in sector.c:get_outmode() */
|
|
|
|
if (sector_get_outmode(write_type, (enum burn_block_types) block_type)
|
|
|
|
== -1)
|
|
|
|
goto bad_combination;
|
|
|
|
/* ts A61007 : obsoleting Assert in spc.c:spc_block_type() */
|
|
|
|
if (spc_block_type((enum burn_block_types) block_type) == -1)
|
|
|
|
goto bad_combination;
|
|
|
|
|
|
|
|
opts->write_type = write_type;
|
|
|
|
opts->block_type = block_type;
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* a ssert(0); */
|
2006-08-15 20:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_set_toc_entries(struct burn_write_opts *opts, int count,
|
|
|
|
struct burn_toc_entry *toc_entries)
|
|
|
|
{
|
|
|
|
opts->toc_entries = count;
|
|
|
|
opts->toc_entry = malloc(count * sizeof(struct burn_toc_entry));
|
|
|
|
memcpy(opts->toc_entry, &toc_entries,
|
|
|
|
sizeof(struct burn_toc_entry) * count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_set_format(struct burn_write_opts *opts, int format)
|
|
|
|
{
|
|
|
|
opts->format = format;
|
|
|
|
}
|
|
|
|
|
|
|
|
int burn_write_opts_set_simulate(struct burn_write_opts *opts, int sim)
|
|
|
|
{
|
2007-05-28 17:03:12 +00:00
|
|
|
/* <<< ts A70529 :
|
|
|
|
One cannot predict the ability to simulate from page 05h
|
|
|
|
information alone. This check is now done later in
|
|
|
|
function burn_write_opts_auto_write_type().
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
if (opts->drive->mdata->simulate) {
|
|
|
|
opts->simulate = sim;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2007-05-28 17:03:12 +00:00
|
|
|
*/
|
|
|
|
opts->simulate = !!sim;
|
|
|
|
return 1;
|
2006-08-15 20:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int burn_write_opts_set_underrun_proof(struct burn_write_opts *opts,
|
|
|
|
int underrun_proof)
|
|
|
|
{
|
2007-09-04 22:50:04 +00:00
|
|
|
if (!opts->drive->mdata->valid)
|
|
|
|
return 0;
|
2006-08-15 20:37:04 +00:00
|
|
|
if (opts->drive->mdata->underrun_proof) {
|
|
|
|
opts->underrun_proof = underrun_proof;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_set_perform_opc(struct burn_write_opts *opts, int opc)
|
|
|
|
{
|
|
|
|
opts->perform_opc = opc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_set_has_mediacatalog(struct burn_write_opts *opts,
|
|
|
|
int has_mediacatalog)
|
|
|
|
{
|
|
|
|
opts->has_mediacatalog = has_mediacatalog;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_write_opts_set_mediacatalog(struct burn_write_opts *opts,
|
|
|
|
unsigned char mediacatalog[13])
|
|
|
|
{
|
|
|
|
memcpy(opts->mediacatalog, &mediacatalog, 13);
|
|
|
|
}
|
|
|
|
|
2006-12-23 10:20:35 +00:00
|
|
|
|
2006-11-06 11:42:21 +00:00
|
|
|
/* ts A61106 */
|
|
|
|
void burn_write_opts_set_multi(struct burn_write_opts *opts, int multi)
|
|
|
|
{
|
|
|
|
opts->multi = !!multi;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-23 10:20:35 +00:00
|
|
|
/* ts A61222 */
|
|
|
|
void burn_write_opts_set_start_byte(struct burn_write_opts *opts, off_t value)
|
|
|
|
{
|
|
|
|
opts->start_byte = value;
|
|
|
|
}
|
|
|
|
|
2006-11-06 11:42:21 +00:00
|
|
|
|
2007-02-07 16:30:42 +00:00
|
|
|
/* ts A70207 API */
|
2007-02-21 20:53:28 +00:00
|
|
|
/** @param flag Bitfield for control purposes:
|
|
|
|
bit0= do not choose type but check the one that is already set
|
|
|
|
bit1= do not issue error messages via burn_msgs queue
|
|
|
|
*/
|
2007-02-07 16:30:42 +00:00
|
|
|
enum burn_write_types burn_write_opts_auto_write_type(
|
|
|
|
struct burn_write_opts *opts, struct burn_disc *disc,
|
2007-02-22 09:49:18 +00:00
|
|
|
char reasons[BURN_REASONS_LEN], int flag)
|
2007-02-07 16:30:42 +00:00
|
|
|
{
|
|
|
|
struct burn_multi_caps *caps = NULL;
|
|
|
|
struct burn_drive *d = opts->drive;
|
|
|
|
struct burn_disc_mode_demands demands;
|
2007-02-19 22:51:39 +00:00
|
|
|
enum burn_write_types wt;
|
|
|
|
int ret, would_do_sao = 0;
|
2007-02-07 16:30:42 +00:00
|
|
|
char *reason_pt;
|
|
|
|
|
|
|
|
reasons[0] = 0;
|
2007-02-15 20:16:22 +00:00
|
|
|
|
2007-02-21 20:53:28 +00:00
|
|
|
if (d->status != BURN_DISC_BLANK &&
|
|
|
|
d->status != BURN_DISC_APPENDABLE){
|
|
|
|
if (d->status == BURN_DISC_FULL)
|
|
|
|
strcat(reasons, "MEDIA: closed or not recordable, ");
|
|
|
|
else
|
|
|
|
strcat(reasons,"MEDIA: no writeable media detected, ");
|
|
|
|
if (!(flag & 3))
|
|
|
|
libdax_msgs_submit(libdax_messenger, d->global_index,
|
|
|
|
0x0002013a,
|
|
|
|
LIBDAX_MSGS_SEV_FATAL, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"No suitable media detected", 0, 0);
|
|
|
|
return BURN_WRITE_NONE;
|
|
|
|
}
|
2007-02-19 22:51:39 +00:00
|
|
|
ret = burn_disc_get_write_mode_demands(disc, opts, &demands,
|
2007-02-15 20:16:22 +00:00
|
|
|
!!opts->fill_up_media);
|
2007-02-07 16:30:42 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
strcat(reasons, "cannot recognize job demands, ");
|
2007-02-19 22:51:39 +00:00
|
|
|
{wt = BURN_WRITE_NONE; goto ex;}
|
2007-02-07 16:30:42 +00:00
|
|
|
}
|
|
|
|
if (demands.exotic_track && !d->current_is_cd_profile) {
|
|
|
|
if (demands.audio)
|
|
|
|
strcat(reasons, "audio track prohibited by non-CD, ");
|
|
|
|
else
|
|
|
|
strcat(reasons, "exotic track prohibited by non-CD, ");
|
2007-02-19 22:51:39 +00:00
|
|
|
{wt = BURN_WRITE_NONE; goto ex;}
|
2007-02-07 16:30:42 +00:00
|
|
|
}
|
2007-02-15 20:16:22 +00:00
|
|
|
if ((flag & 1) && opts->write_type != BURN_WRITE_SAO)
|
|
|
|
goto try_tao;
|
2007-02-21 20:53:28 +00:00
|
|
|
reason_pt = reasons + strlen(reasons);
|
|
|
|
strcat(reasons, "SAO: ");
|
|
|
|
if (d->status != BURN_DISC_BLANK) {
|
|
|
|
strcat(reasons, "write type SAO works only on blank media, ");
|
|
|
|
goto try_tao;
|
|
|
|
}
|
2007-02-19 22:51:39 +00:00
|
|
|
burn_disc_free_multi_caps(&caps);
|
2007-02-07 16:30:42 +00:00
|
|
|
ret = burn_disc_get_multi_caps(d, BURN_WRITE_SAO, &caps, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
no_caps:;
|
|
|
|
strcat(reasons, "cannot inquire write mode capabilities, ");
|
2007-02-19 22:51:39 +00:00
|
|
|
{wt = BURN_WRITE_NONE; goto ex;}
|
2007-02-15 20:16:22 +00:00
|
|
|
} else if (ret == 0) {
|
2007-02-21 20:53:28 +00:00
|
|
|
strcat(reasons, "no SAO offered by drive and media, ");
|
2007-02-15 20:16:22 +00:00
|
|
|
goto no_sao;
|
|
|
|
}
|
|
|
|
if ((opts->multi || demands.multi_session) &&
|
|
|
|
!caps->multi_session)
|
|
|
|
strcat(reasons, "multi session capability lacking, ");
|
2007-02-19 22:51:39 +00:00
|
|
|
if (demands.will_append)
|
|
|
|
strcat(reasons, "appended session capability lacking, ");
|
2007-02-15 20:16:22 +00:00
|
|
|
if (demands.multi_track && !caps->multi_track)
|
|
|
|
strcat(reasons, "multi track capability lacking, ");
|
2007-02-22 07:26:41 +00:00
|
|
|
if (demands.unknown_track_size == 1 &&
|
|
|
|
(caps->might_do_sao == 1 || caps->might_do_sao == 3))
|
2007-02-15 20:16:22 +00:00
|
|
|
strcat(reasons, "track size unpredictable, ");
|
|
|
|
if (demands.mixed_mode)
|
|
|
|
strcat(reasons, "tracks of different modes mixed, ");
|
2007-03-03 15:16:19 +00:00
|
|
|
if (demands.exotic_track && !d->current_is_cd_profile)
|
|
|
|
strcat(reasons, "non-data track on non-cd, ");
|
2007-02-19 22:51:39 +00:00
|
|
|
else if (d->current_is_cd_profile)
|
|
|
|
if ((d->block_types[BURN_WRITE_TAO] & demands.block_types) !=
|
|
|
|
demands.block_types)
|
|
|
|
strcat(reasons, "drive dislikes block type, ");
|
2007-02-15 20:16:22 +00:00
|
|
|
if (d->current_is_cd_profile && opts->fill_up_media)
|
|
|
|
strcat(reasons, "cd sao cannot do media fill up yet, ");
|
|
|
|
if (strcmp(reason_pt, "SAO: ") != 0)
|
|
|
|
goto no_sao;
|
2007-02-19 22:51:39 +00:00
|
|
|
would_do_sao = 1;
|
2007-02-22 07:26:41 +00:00
|
|
|
if (demands.unknown_track_size == 2 && (!(flag & 1)) &&
|
|
|
|
(caps->might_do_sao == 1 || caps->might_do_sao == 3)) {
|
2007-02-19 22:51:39 +00:00
|
|
|
strcat(reasons, "would have to use default track sizes, ");
|
|
|
|
goto no_sao;
|
2007-02-22 07:26:41 +00:00
|
|
|
} else if (caps->might_do_sao >= 3 && !(flag & 1))
|
2007-02-21 20:53:28 +00:00
|
|
|
goto try_tao;
|
2007-02-19 22:51:39 +00:00
|
|
|
do_sao:;
|
2007-05-28 17:03:12 +00:00
|
|
|
if (caps->might_simulate == 0 && opts->simulate && !opts->force_is_set)
|
|
|
|
goto no_simulate;
|
2007-02-19 22:51:39 +00:00
|
|
|
if (!(flag & 1))
|
|
|
|
burn_write_opts_set_write_type(
|
|
|
|
opts, BURN_WRITE_SAO, BURN_BLOCK_SAO);
|
|
|
|
{wt = BURN_WRITE_SAO; goto ex;}
|
2007-02-07 16:30:42 +00:00
|
|
|
no_sao:;
|
2007-02-15 20:16:22 +00:00
|
|
|
try_tao:;
|
|
|
|
if ((flag & 1) && opts->write_type != BURN_WRITE_TAO)
|
2007-02-19 22:51:39 +00:00
|
|
|
goto try_raw;
|
2007-02-07 16:30:42 +00:00
|
|
|
reason_pt = reasons + strlen(reasons);
|
|
|
|
strcat(reasons, "TAO: ");
|
2007-02-19 22:51:39 +00:00
|
|
|
burn_disc_free_multi_caps(&caps);
|
2007-02-07 16:30:42 +00:00
|
|
|
ret = burn_disc_get_multi_caps(d, BURN_WRITE_TAO, &caps, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
goto no_caps;
|
|
|
|
if (ret == 0) {
|
|
|
|
strcat(reasons, "no TAO offered by drive and media, ");
|
2007-02-15 20:16:22 +00:00
|
|
|
goto no_tao;
|
2007-02-07 16:30:42 +00:00
|
|
|
}
|
|
|
|
if ((opts->multi || demands.multi_session) && !caps->multi_session)
|
|
|
|
strcat(reasons, "multi session capability lacking, ");
|
|
|
|
if (demands.multi_track && !caps->multi_track)
|
|
|
|
strcat(reasons, "multi track capability lacking, ");
|
2007-03-03 15:16:19 +00:00
|
|
|
if (demands.exotic_track && !d->current_is_cd_profile)
|
|
|
|
strcat(reasons, "non-data track on non-cd, ");
|
2007-03-03 14:11:52 +00:00
|
|
|
if (d->current_is_cd_profile && !opts->force_is_set)
|
2007-02-19 22:51:39 +00:00
|
|
|
if ((d->block_types[BURN_WRITE_TAO] & demands.block_types) !=
|
|
|
|
demands.block_types)
|
|
|
|
strcat(reasons, "drive dislikes block type, ");
|
2007-02-07 16:30:42 +00:00
|
|
|
if (strcmp(reason_pt, "TAO: ") != 0)
|
2007-02-15 20:16:22 +00:00
|
|
|
goto no_tao;
|
2007-02-07 16:30:42 +00:00
|
|
|
/* ( TAO data/audio block size will be handled automatically ) */
|
2007-05-28 17:03:12 +00:00
|
|
|
if (caps->might_simulate == 0 && opts->simulate && !opts->force_is_set)
|
|
|
|
goto no_simulate;
|
2007-02-19 22:51:39 +00:00
|
|
|
if (!(flag & 1))
|
|
|
|
burn_write_opts_set_write_type(
|
|
|
|
opts, BURN_WRITE_TAO, BURN_BLOCK_MODE1);
|
|
|
|
{wt = BURN_WRITE_TAO; goto ex;}
|
2007-02-15 20:16:22 +00:00
|
|
|
no_tao:;
|
2007-02-21 20:53:28 +00:00
|
|
|
if (would_do_sao && !(flag & 1))
|
2007-02-19 22:51:39 +00:00
|
|
|
goto do_sao;
|
2007-02-15 20:16:22 +00:00
|
|
|
if (!d->current_is_cd_profile)
|
|
|
|
goto no_write_mode;
|
2007-02-19 22:51:39 +00:00
|
|
|
try_raw:;
|
|
|
|
if ((flag & 1) && opts->write_type != BURN_WRITE_RAW)
|
|
|
|
goto no_write_mode;
|
2007-02-15 20:16:22 +00:00
|
|
|
|
2007-02-19 22:51:39 +00:00
|
|
|
if (!(flag & 1)) /* For now: no automatic raw write modes */
|
|
|
|
goto no_write_mode;
|
|
|
|
|
|
|
|
reason_pt = reasons + strlen(reasons);
|
|
|
|
strcat(reasons, "RAW: ");
|
|
|
|
if (!d->current_is_cd_profile)
|
2007-03-03 15:16:19 +00:00
|
|
|
strcat(reasons, "write type RAW prohibited by non-cd, ");
|
2007-02-21 20:53:28 +00:00
|
|
|
else if (d->status != BURN_DISC_BLANK)
|
|
|
|
strcat(reasons, "write type RAW works only on blank media, ");
|
|
|
|
else if ((d->block_types[BURN_WRITE_TAO] & demands.block_types) !=
|
|
|
|
demands.block_types)
|
2007-02-19 22:51:39 +00:00
|
|
|
strcat(reasons, "drive dislikes block type, ");
|
|
|
|
if (strcmp(reason_pt, "RAW: ") != 0)
|
|
|
|
goto no_write_mode;
|
2007-05-28 17:03:12 +00:00
|
|
|
if (!opts->force_is_set)
|
|
|
|
goto no_simulate;
|
2007-02-19 22:51:39 +00:00
|
|
|
|
|
|
|
/* For now: no setting of raw write modes */
|
|
|
|
|
|
|
|
{wt = BURN_WRITE_RAW; goto ex;}
|
2007-02-15 20:16:22 +00:00
|
|
|
|
|
|
|
no_write_mode:;
|
2007-05-28 17:03:12 +00:00
|
|
|
{wt = BURN_WRITE_NONE; goto ex;}
|
|
|
|
|
|
|
|
no_simulate:;
|
|
|
|
strcat(reasons,
|
|
|
|
"simulation of write job not supported by drive and media, ");
|
|
|
|
{wt = BURN_WRITE_NONE; goto ex;}
|
|
|
|
|
2007-02-21 20:53:28 +00:00
|
|
|
ex:;
|
|
|
|
burn_disc_free_multi_caps(&caps);
|
|
|
|
if (wt == BURN_WRITE_NONE && !(flag & 3)) {
|
2007-02-19 22:51:39 +00:00
|
|
|
libdax_msgs_submit(libdax_messenger, d->global_index,
|
|
|
|
0x0002012b,
|
2007-02-15 20:16:22 +00:00
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"Drive offers no suitable write mode with this job",
|
|
|
|
0, 0);
|
2007-02-21 20:53:28 +00:00
|
|
|
}
|
2007-02-19 22:51:39 +00:00
|
|
|
return wt;
|
2007-02-07 16:30:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-14 20:32:56 +00:00
|
|
|
/* ts A70213 : new API function */
|
|
|
|
void burn_write_opts_set_fillup(struct burn_write_opts *opts,int fill_up_media)
|
|
|
|
{
|
|
|
|
opts->fill_up_media = !!fill_up_media;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-03 14:11:52 +00:00
|
|
|
/* ts A70303: API */
|
|
|
|
void burn_write_opts_set_force(struct burn_write_opts *opts, int use_force)
|
|
|
|
{
|
|
|
|
opts->force_is_set = !!use_force;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-01 18:23:06 +00:00
|
|
|
/* ts A70901: API */
|
|
|
|
struct burn_drive *burn_write_opts_get_drive(struct burn_write_opts *opts)
|
|
|
|
{
|
|
|
|
return opts->drive;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
void burn_read_opts_set_raw(struct burn_read_opts *opts, int raw)
|
|
|
|
{
|
|
|
|
opts->raw = raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_set_c2errors(struct burn_read_opts *opts, int c2errors)
|
|
|
|
{
|
|
|
|
opts->c2errors = c2errors;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_read_subcodes_audio(struct burn_read_opts *opts,
|
|
|
|
int subcodes_audio)
|
|
|
|
{
|
|
|
|
opts->subcodes_audio = subcodes_audio;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_read_subcodes_data(struct burn_read_opts *opts,
|
|
|
|
int subcodes_data)
|
|
|
|
{
|
|
|
|
opts->subcodes_data = subcodes_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_set_hardware_error_recovery(struct burn_read_opts *opts,
|
|
|
|
int hardware_error_recovery)
|
|
|
|
{
|
|
|
|
opts->hardware_error_recovery = hardware_error_recovery;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_report_recovered_errors(struct burn_read_opts *opts,
|
|
|
|
int report_recovered_errors)
|
|
|
|
{
|
|
|
|
opts->report_recovered_errors = report_recovered_errors;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_transfer_damaged_blocks(struct burn_read_opts *opts,
|
|
|
|
int transfer_damaged_blocks)
|
|
|
|
{
|
|
|
|
opts->transfer_damaged_blocks = transfer_damaged_blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_read_opts_set_hardware_error_retries(struct burn_read_opts *opts,
|
|
|
|
unsigned char
|
|
|
|
hardware_error_retries)
|
|
|
|
{
|
|
|
|
opts->hardware_error_retries = hardware_error_retries;
|
|
|
|
}
|
2006-11-06 11:42:21 +00:00
|
|
|
|