Circumventing BD-RE Quick Certification refusal of LG GGW-H20L YL03

This commit is contained in:
Thomas Schmitt 2008-11-29 14:04:31 +00:00
parent f3ea35b9b8
commit 717ad0f412
2 changed files with 12 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2008.11.29.140115"
#define Cdrskin_timestamP "2008.11.29.140404"

View File

@ -3030,6 +3030,17 @@ no_suitable_formatting_type:;
} else if(size_mode == 3) { /* default payload size */
if (accept_count < 1)
index = 0; /* this cannot certify */
/* ts A81129
LG GGW-H20L YL03 refuses on 0x30 with
"Quick certification". dvd+rw-format
does 0x00 by default and succeeds quickly.
*/
if ((flag & 64) && format_type == 0x00) {
index = i;
break;
}
if(format_type != 0x30)
continue;
accept_count++;