|
Description
|
When passing the check capacity option (-C) to cdrw, cdrw will make a call to get_last_possible_lba(). The problem is that it erroneously does the MSF to LBA conversion.
Currently it does the following
(m * 60 + s) * 75
However, the correct formula is:
(m * 60 + s) * 75 + f - 150
Where m is minutes, s is seconds and f is frames.
|