New API burn_write_opts_set_multi(). (But libburn cannot burn next session yet)

This commit is contained in:
2006-11-06 11:42:21 +00:00
parent b96fbd5bd8
commit d7c34f05e4
5 changed files with 48 additions and 6 deletions

View File

@ -319,7 +319,10 @@ void spc_select_write_params(struct burn_drive *d,
c.page->data[10] = (bufe << 6)
+ (sim << 4)
+ o->write_type;
c.page->data[11] = (o->multi << 6) | o->control;
/* ts A61106 : MMC-1 table 110 : multi==0 or multi==3 */
c.page->data[11] = ((3 * !!o->multi) << 6) | o->control;
c.page->data[12] = spc_block_type(o->block_type);
/* ts A61104 */