summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-09-10 02:26:02 +0200
committerLynne <dev@lynne.ee>2022-09-10 02:37:11 +0200
commit8c283e8fe631135a0c36d50f9c8d558f43cfef7b (patch)
treebcf10f77c6ac3b6146f21e11dde2a671555d31d3 /libavutil
parent91e9a6df33d8b14577fe1ec9623d9d0466fdd7d3 (diff)
lavu/tx: propagate the codelet flags into the context
The field is documented as a combination of both.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tx.c b/libavutil/tx.c
index da8ebddd9a..aeb0d9dada 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -620,7 +620,7 @@ av_cold int ff_tx_init_subtx(AVTXContext *s, enum AVTXType type,
sctx->len = len;
sctx->inv = inv;
sctx->type = type;
- sctx->flags = flags;
+ sctx->flags = cd->flags | flags;
sctx->cd_self = cd;
s->fn[s->nb_sub] = cd->function;