diff options
author | Lynne <dev@lynne.ee> | 2022-11-17 20:08:50 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2022-11-24 15:58:30 +0100 |
commit | d4e39cae2e250a6fb9ed3a3a5a93694f4d445165 (patch) | |
tree | aa36cea9807d20f8b9df5e1b9e0bc445794c8dd0 | |
parent | fff3e1d8489ee83949f67faba8908755846a6f4f (diff) | |
download | ffmpeg-d4e39cae2e250a6fb9ed3a3a5a93694f4d445165.tar.gz |
lavu/tx: drop requirement of input == output for in-place transforms
No longer necessary.
-rw-r--r-- | libavutil/tx.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavutil/tx.h b/libavutil/tx.h index 3de2f7231b..cd772ad903 100644 --- a/libavutil/tx.h +++ b/libavutil/tx.h @@ -115,9 +115,8 @@ typedef void (*av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride); */ enum AVTXFlags { /** - * Performs an in-place transformation on the input. The output argument - * of av_tn_fn() MUST match the input. May be unsupported or slower for some - * transform types. + * Allows for in-place transformations, where input == output. + * May be unsupported or slower for some transform types. */ AV_TX_INPLACE = 1ULL << 0, |