1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

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 = { static const FFTXCodelet ff_tx_null_def = {
.name = "null", .name = NULL_IF_CONFIG_SMALL("null"),
.function = ff_tx_null, .function = ff_tx_null,
.type = TX_TYPE_ANY, .type = TX_TYPE_ANY,
.flags = AV_TX_UNALIGNED | FF_TX_ALIGNED | .flags = AV_TX_UNALIGNED | FF_TX_ALIGNED |