Adjusted xorriso -as cdrecord fifo chunk size to -xa1
This commit is contained in:
@ -8931,9 +8931,11 @@ int Xorriso_burn_track(struct XorrisO *xorriso, off_t write_start_address,
|
||||
}
|
||||
if(do_isosize && xorriso->fs < 64)
|
||||
xorriso->fs= 64;
|
||||
fifo_src= burn_fifo_source_new(data_src, 2048, xorriso->fs, 0);
|
||||
fifo_src= burn_fifo_source_new(data_src, 2048 + 8 * !!(flag & 4),
|
||||
xorriso->fs, 0);
|
||||
if(fifo_src == NULL) {
|
||||
sprintf(xorriso->info_text, "Could not create fifo object of 4 MB");
|
||||
sprintf(xorriso->info_text, "Could not create fifo object of %.f MB",
|
||||
((double) xorriso->fs) / 1024.0 / 1024.0);
|
||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FATAL", 0);
|
||||
ret= 0; goto ex;
|
||||
}
|
||||
|
Reference in New Issue
Block a user