OSU: Add debug printing of more LogotypeExtn fields
Couple of the image info fields were not printed previously in debug log. Add those to make this more complete. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
0b905c8a87
commit
2088ecb970
1 changed files with 14 additions and 2 deletions
|
@ -644,13 +644,25 @@ static void i2r_LogotypeImageInfo(LogotypeImageInfo *info, BIO *out, int indent)
|
||||||
} else {
|
} else {
|
||||||
BIO_printf(out, "%*stype: default (1)\n", indent, "");
|
BIO_printf(out, "%*stype: default (1)\n", indent, "");
|
||||||
}
|
}
|
||||||
|
val = ASN1_INTEGER_get(info->fileSize);
|
||||||
|
BIO_printf(out, "%*sfileSize: %ld\n", indent, "", val);
|
||||||
val = ASN1_INTEGER_get(info->xSize);
|
val = ASN1_INTEGER_get(info->xSize);
|
||||||
BIO_printf(out, "%*sxSize: %ld\n", indent, "", val);
|
BIO_printf(out, "%*sxSize: %ld\n", indent, "", val);
|
||||||
val = ASN1_INTEGER_get(info->ySize);
|
val = ASN1_INTEGER_get(info->ySize);
|
||||||
BIO_printf(out, "%*sySize: %ld\n", indent, "", val);
|
BIO_printf(out, "%*sySize: %ld\n", indent, "", val);
|
||||||
if (info->resolution) {
|
if (info->resolution) {
|
||||||
BIO_printf(out, "%*sresolution\n", indent, "");
|
BIO_printf(out, "%*sresolution [%d]\n", indent, "",
|
||||||
/* TODO */
|
info->resolution->type);
|
||||||
|
switch (info->resolution->type) {
|
||||||
|
case 0:
|
||||||
|
val = ASN1_INTEGER_get(info->resolution->d.numBits);
|
||||||
|
BIO_printf(out, "%*snumBits: %ld\n", indent, "", val);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
val = ASN1_INTEGER_get(info->resolution->d.tableSize);
|
||||||
|
BIO_printf(out, "%*stableSize: %ld\n", indent, "", val);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (info->language) {
|
if (info->language) {
|
||||||
BIO_printf(out, "%*slanguage: ", indent, "");
|
BIO_printf(out, "%*slanguage: ", indent, "");
|
||||||
|
|
Loading…
Add table
Reference in a new issue