lavu/tx: wrap missed string in NULL_IF_CONFIG_SMALL

It's the only one that isn't defined through the macros used elsewhere.
This commit is contained in:
Lynne 2022-02-07 04:22:19 +01:00
parent eac4c3574b
commit 04cc7a5548
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ static void ff_tx_null(AVTXContext *s, void *_out, void *_in, ptrdiff_t stride)
}
static const FFTXCodelet ff_tx_null_def = {
.name = "null",
.name = NULL_IF_CONFIG_SMALL("null"),
.function = ff_tx_null,
.type = TX_TYPE_ANY,
.flags = AV_TX_UNALIGNED | FF_TX_ALIGNED |