New command -modesty_on_drive, new -as cdrecord -immed, minbuf=, modesty_on_drive=
This commit is contained in:
@ -78,6 +78,9 @@ int Xorriso_cdrskin_help(struct XorrisO *xorriso, int flag)
|
||||
"\t-isosize\tUse iso9660 file system size for next data track",
|
||||
"\t-pad\t\tpadsize=30k",
|
||||
"\t-nopad\t\tDo not pad",
|
||||
"\tminbuf=\t\tKeep drive buffer hungry",
|
||||
"\tmodesty_on_drive=\tLike minbuf=, but with more parameters",
|
||||
"\t-immed\t\tEquivalent to minbuf=75",
|
||||
"\t--grow_overwriteable_iso\temulate multi-session on DVD+RW, BD-RE",
|
||||
"\twrite_start_address=#\t\twrite to byte address on DVD+RW, BD-RE",
|
||||
"\tstream_recording=on|number\ttry to get full speed on DVD-RAM, BD",
|
||||
@ -120,10 +123,10 @@ int Xorriso_cdrskin(struct XorrisO *xorriso, char *whom, int argc, char **argv,
|
||||
"timeout=", "debug=", "kdebug=", "kd=", "driver=", "ts=",
|
||||
"pregap=", "defpregap=", "mcn=", "isrc=", "index=", "textfile=",
|
||||
"pktsize=", "cuefile=",
|
||||
"gracetime=", "minbuf=",
|
||||
"gracetime=",
|
||||
|
||||
"assert_write_lba=", "fifo_start_at=", "dev_translation=",
|
||||
"drive_scsi_dev_family=", "fallback_program=", "modesty_on_drive=",
|
||||
"drive_scsi_dev_family=", "fallback_program=",
|
||||
"tao_to_sao_tsize=",
|
||||
|
||||
"direct_write_amount=", "msifile=",
|
||||
@ -332,6 +335,17 @@ no_volunteer:;
|
||||
strncmp(argpt, "stream_recording=", 17)==0) {
|
||||
cpt= strchr(argpt, '=')+1;
|
||||
Xorriso_option_stream_recording(xorriso, cpt, 0);
|
||||
|
||||
} else if(strcmp(argpt, "-immed") == 0) {
|
||||
Xorriso_option_modesty_on_drive(xorriso, "75", 0);
|
||||
|
||||
} else if(strncmp(argpt, "-minbuf=", 8) == 0 ||
|
||||
strncmp(argpt, "minbuf=", 7) == 0 ||
|
||||
strncmp(argpt, "-modesty_on_drive=", 18) == 0 ||
|
||||
strncmp(argpt, "modesty_on_drive=", 17) == 0) {
|
||||
cpt= strchr(argpt, '=') + 1;
|
||||
Xorriso_option_modesty_on_drive(xorriso, cpt, 0);
|
||||
|
||||
} else if(strncmp(argpt, "-stdio_sync=", 12)==0 ||
|
||||
strncmp(argpt, "stdio_sync=", 11)==0) {
|
||||
cpt= strchr(argpt, '=') + 1;
|
||||
|
Reference in New Issue
Block a user