diff options
author | Lynne <dev@lynne.ee> | 2021-04-10 03:45:03 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-04-24 17:17:15 +0200 |
commit | aa910a7ecd68b41379506998b6a32aa0a2a69dec (patch) | |
tree | fb31bf907d76036cb4db555826ac00a10ecad961 /libavutil/tx.h | |
parent | da6e137cb6e81e2389cf62dca2b1f957862a8498 (diff) | |
download | ffmpeg-aa910a7ecd68b41379506998b6a32aa0a2a69dec.tar.gz |
lavu/tx: minor code style improvements and additional comments
Diffstat (limited to 'libavutil/tx.h')
-rw-r--r-- | libavutil/tx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/tx.h b/libavutil/tx.h index bfc0c7f2a3..fccded8bc3 100644 --- a/libavutil/tx.h +++ b/libavutil/tx.h @@ -49,9 +49,11 @@ enum AVTXType { * float. Length is the frame size, not the window size (which is 2x frame) * For forward transforms, the stride specifies the spacing between each * sample in the output array in bytes. The input must be a flat array. + * * For inverse transforms, the stride specifies the spacing between each * sample in the input array in bytes. The output will be a flat array. * Stride must be a non-zero multiple of sizeof(float). + * * NOTE: the inverse transform is half-length, meaning the output will not * contain redundant data. This is what most codecs work with. */ |