New -as cdrecord option stream_recording=on|off

This commit is contained in:
Thomas Schmitt 2008-11-29 21:42:44 +00:00
parent a860deb112
commit f9740b5aeb
2 changed files with 8 additions and 1 deletions

View File

@ -8805,6 +8805,7 @@ int Xorriso_cdrskin(struct XorrisO *xorriso, char *whom, int argc, char **argv,
"\t-nopad\t\tDo not pad", "\t-nopad\t\tDo not pad",
"\t--grow_overwriteable_iso\temulate multi-session on DVD+RW", "\t--grow_overwriteable_iso\temulate multi-session on DVD+RW",
"\twrite_start_address=#\t\twrite to given byte address on DVD+RW", "\twrite_start_address=#\t\twrite to given byte address on DVD+RW",
"\tstream_recording=on\t\ttry to get full speed DVD-RAM and BD-RE",
"\t-help\t\tprint this text to stderr and exit emulation", "\t-help\t\tprint this text to stderr and exit emulation",
"Actually this is the integrated ISO RockRidge filesystem manipulator xorriso", "Actually this is the integrated ISO RockRidge filesystem manipulator xorriso",
"lending its libburn capabilities to a very limited cdrecord emulation. Only", "lending its libburn capabilities to a very limited cdrecord emulation. Only",
@ -8961,6 +8962,12 @@ no_volunteer:;
cpt= strchr(argv[i], '=')+1; cpt= strchr(argv[i], '=')+1;
strncpy(speed, cpt, 79); strncpy(speed, cpt, 79);
speed[79]= 0; speed[79]= 0;
} else if(strncmp(argv[i], "-stream_recording=", 18)==0 ||
strncmp(argv[i], "stream_recording=", 17)==0) {
cpt= strchr(argv[i], '=')+1;
Xorriso_option_stream_recording(xorriso, cpt, 0);
} else if(strcmp(argv[i], "-toc")==0) { } else if(strcmp(argv[i], "-toc")==0) {
do_toc= 1; do_toc= 1;
} else if(strncmp(argv[i], "-tsize=", 7)==0 || } else if(strncmp(argv[i], "-tsize=", 7)==0 ||

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.11.29.165843" #define Xorriso_timestamP "2008.11.29.214208"