diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-08 14:57:57 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-11 19:38:41 +0100 |
commit | d75c4cc7c1f1b9636140bee530ceda2c0b6b7c1d (patch) | |
tree | 5f966a0836ca1d0d68eb30748df836feecc81e27 | |
parent | 6bb46cd765b50907e2c3396210448e80825681e2 (diff) | |
download | ffmpeg-d75c4cc7c1f1b9636140bee530ceda2c0b6b7c1d.tar.gz |
avutil/tx: Fix documentation of av_tx_uninit()
Adapt it to the actual (sane) behaviour.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavutil/tx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tx.h b/libavutil/tx.h index 087355f10d..3de2f7231b 100644 --- a/libavutil/tx.h +++ b/libavutil/tx.h @@ -154,7 +154,7 @@ int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags); /** - * Frees a context and sets ctx to NULL, does nothing when ctx == NULL + * Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL. */ void av_tx_uninit(AVTXContext **ctx); |