Made -print_size take into account the toc emulation on blank overwriteables
This commit is contained in:
parent
0b641cf425
commit
633cd2008d
@ -98,10 +98,11 @@ int Xorriso_sanitize_image_size(struct XorrisO *xorriso,
|
|||||||
struct burn_write_opts *burn_options, int flag)
|
struct burn_write_opts *burn_options, int flag)
|
||||||
{
|
{
|
||||||
int ret, img_sectors, num_sessions= 0, num_tracks= 0, padding= 0, profile;
|
int ret, img_sectors, num_sessions= 0, num_tracks= 0, padding= 0, profile;
|
||||||
int media_space, lba, nwa;
|
int media_space, lba, nwa, multi_emul_blocks= 0;
|
||||||
char profile_name[80];
|
char profile_name[80];
|
||||||
struct burn_session **sessions;
|
struct burn_session **sessions;
|
||||||
struct burn_track **tracks;
|
struct burn_track **tracks;
|
||||||
|
enum burn_disc_status s;
|
||||||
|
|
||||||
img_sectors= burn_disc_get_sectors(disc);
|
img_sectors= burn_disc_get_sectors(disc);
|
||||||
|
|
||||||
@ -140,6 +141,15 @@ no_track:;
|
|||||||
sessions survive and confuse -rom_toc_scan.
|
sessions survive and confuse -rom_toc_scan.
|
||||||
*/
|
*/
|
||||||
xorriso->alignment= 32;
|
xorriso->alignment= 32;
|
||||||
|
|
||||||
|
s= isoburn_disc_get_status(drive);
|
||||||
|
if(s == BURN_DISC_BLANK) {
|
||||||
|
/* Count blocks before nwa as part of the image */;
|
||||||
|
ret= isoburn_disc_track_lba_nwa(drive, burn_options, 0, &lba, &nwa);
|
||||||
|
if(ret <= 0)
|
||||||
|
nwa= 0;
|
||||||
|
multi_emul_blocks= nwa;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(xorriso->alignment > 0) {
|
if(xorriso->alignment > 0) {
|
||||||
@ -176,7 +186,7 @@ no_track:;
|
|||||||
{ret= 0; goto ex;}
|
{ret= 0; goto ex;}
|
||||||
}
|
}
|
||||||
if(flag&1) {
|
if(flag&1) {
|
||||||
ret= img_sectors+padding;
|
ret= multi_emul_blocks + img_sectors + padding;
|
||||||
} else
|
} else
|
||||||
ret= 1;
|
ret= 1;
|
||||||
ex:;
|
ex:;
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2010.12.25.094309"
|
#define Xorriso_timestamP "2010.12.28.093144"
|
||||||
|
Loading…
Reference in New Issue
Block a user