Skip to content

Commit 16e6dec

Browse files
committed
Logo: general fixes
1. updates JSON schema 2. removes unused fields 3. runs tests in CI
1 parent e10c9cc commit 16e6dec

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

doc/json_schema.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3202,6 +3202,20 @@
32023202
}
32033203
}
32043204
},
3205+
{
3206+
"title": "Logo",
3207+
"type": "object",
3208+
"additionalProperties": false,
3209+
"properties": {
3210+
"type": {
3211+
"const": "logo",
3212+
"description": "Query built-in logo for JSON output"
3213+
},
3214+
"condition": {
3215+
"$ref": "#/$defs/conditions"
3216+
}
3217+
}
3218+
},
32053219
{
32063220
"title": "Media",
32073221
"type": "object",

presets/ci.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
},
110110
"tpm",
111111
"version",
112+
"logo",
112113
"break",
113114
"colors"
114115
]

src/modules/logo/option.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
typedef struct FFLogoOptions
66
{
7-
FFModuleArgs moduleArgs;
87
} FFLogoOptions;
98

109
static_assert(sizeof(FFLogoOptions) <= FF_OPTION_MAX_SIZE, "FFLogoOptions size exceeds maximum allowed size");

0 commit comments

Comments
 (0)