diff options
author | Lynne <dev@lynne.ee> | 2021-02-21 17:03:57 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-02-21 17:05:04 +0100 |
commit | aa34e99f889af37e5c719737de1347e4985e0196 (patch) | |
tree | e41fb735495165336ab0c7b2b8487a2c43ca6f1c | |
parent | a2f9270f1c71e36060ebe9524b8409c75cc341bd (diff) | |
download | ffmpeg-aa34e99f889af37e5c719737de1347e4985e0196.tar.gz |
lavu/tx: space out enum AVTXType values with newlines
Makes separation clearer.
-rw-r--r-- | libavutil/tx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/tx.h b/libavutil/tx.h index f49eb8c4c7..14d6311e02 100644 --- a/libavutil/tx.h +++ b/libavutil/tx.h @@ -43,6 +43,7 @@ enum AVTXType { * The stride parameter is ignored. */ AV_TX_FLOAT_FFT = 0, + /** * Standard MDCT with sample data type of float and a scale type of * float. Length is the frame size, not the window size (which is 2x frame) @@ -55,19 +56,23 @@ enum AVTXType { * contain redundant data. This is what most codecs work with. */ AV_TX_FLOAT_MDCT = 1, + /** * Same as AV_TX_FLOAT_FFT with a data type of AVComplexDouble. */ AV_TX_DOUBLE_FFT = 2, + /** * Same as AV_TX_FLOAT_MDCT with data and scale type of double. * Stride must be a non-zero multiple of sizeof(double). */ AV_TX_DOUBLE_MDCT = 3, + /** * Same as AV_TX_FLOAT_FFT with a data type of AVComplexInt32. */ AV_TX_INT32_FFT = 4, + /** * Same as AV_TX_FLOAT_MDCT with data type of int32_t and scale type of float. * Only scale values less than or equal to 1.0 are supported. |