feat: add support for BDXL QL (128GB)

This commit is contained in:
Stéphane Lesimple
2020-08-20 13:29:42 +02:00
parent a4efe71abf
commit b4aed53e23
8 changed files with 112 additions and 9 deletions

View File

@@ -326,6 +326,8 @@ int main(int argc, char *argv[])
Closure->mediumSize = BD_DL_SIZE;
else if(!strcmp(optarg, "BDXL3") || !strcmp(optarg, "bdxl3"))
Closure->mediumSize = BDXL_TL_SIZE;
else if(!strcmp(optarg, "BDXL4") || !strcmp(optarg, "bdxl4"))
Closure->mediumSize = BDXL_QL_SIZE;
else
{ int len = strlen(optarg);
if(strchr("0123456789", optarg[len-1]))