Comment 58 for bug 581925

Revision history for this message
jonie (jonie) wrote : Re: cdrom_id: Does not recognize reblanked DVD+RW and DVD-RAM

You're welcome!

Two minor omissions crept in:

- include DVD-RW (in Restricted Overwrite mode it's basically same as DVD+RW, I finally found one that I could blank)

- if ((cd_media_dvd_plus_rw || cd_media_dvd_plus_rw_dl || cd_media_dvd_ram) && (header[2] & 3) > 1) {
+ if ((cd_media_dvd_rw || cd_media_dvd_plus_rw || cd_media_dvd_plus_rw_dl || cd_media_dvd_ram) && (header[2] & 3) > 1) {

- also change this line

- if ((header[2] & 3) != 2)
+ if ((header[2] & 3) < 2)

DVD-RAM has "other" (=3) status and here a session can't be appended either

I guess all this is a regression since hal has been dropped?