Logo: code clean up

This commit is contained in:
李通洲
2024-06-03 14:15:45 +08:00
parent 678e9471e5
commit d860ce528a
2 changed files with 3 additions and 10 deletions
+2 -9
View File
@@ -43,17 +43,10 @@ logoType:
exit(477);
}
//this is usually wanted when disabling logo
if(strcasecmp(value, "none") == 0)
{
options->paddingTop = 0;
options->paddingRight = 0;
options->paddingLeft = 0;
if(ffStrEqualsIgnCase(value, "none"))
options->type = FF_LOGO_TYPE_NONE;
}
else if(strcasecmp(value, "small") == 0)
{
else if(ffStrEqualsIgnCase(value, "small"))
options->type = FF_LOGO_TYPE_SMALL;
}
else
ffOptionParseString(key, value, &options->source);
}