summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-02-07 04:22:19 +0100
committerLynne <dev@lynne.ee>2022-02-07 04:23:31 +0100
commit04cc7a5548fa22241a2d6bb4f719fe8e0e0843f1 (patch)
tree4e05b6a30eb8c3a95ec3b8ed7a4375eea110968d
parenteac4c3574bb4e145a84e160c4dba1c50b60f3470 (diff)
lavu/tx: wrap missed string in NULL_IF_CONFIG_SMALL
It's the only one that isn't defined through the macros used elsewhere.
-rw-r--r--libavutil/tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tx.c b/libavutil/tx.c
index 2d8d21b65f..c648d4a1cd 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -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 |