1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-16 22:42:38 +02:00

lavu/tx: drop requirement of input == output for in-place transforms

No longer necessary.
This commit is contained in:
Lynne
2022-11-17 20:08:50 +01:00
parent fff3e1d848
commit d4e39cae2e

View File

@ -115,9 +115,8 @@ typedef void (*av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride);
*/ */
enum AVTXFlags { enum AVTXFlags {
/** /**
* Performs an in-place transformation on the input. The output argument * Allows for in-place transformations, where input == output.
* of av_tn_fn() MUST match the input. May be unsupported or slower for some * May be unsupported or slower for some transform types.
* transform types.
*/ */
AV_TX_INPLACE = 1ULL << 0, AV_TX_INPLACE = 1ULL << 0,