1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavu/tx: space out enum AVTXType values with newlines

Makes separation clearer.
This commit is contained in:
Lynne
2021-02-21 17:03:57 +01:00
parent a2f9270f1c
commit aa34e99f88

View File

@@ -43,6 +43,7 @@ enum AVTXType {
* The stride parameter is ignored. * The stride parameter is ignored.
*/ */
AV_TX_FLOAT_FFT = 0, AV_TX_FLOAT_FFT = 0,
/** /**
* Standard MDCT with sample data type of float and a scale type of * 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) * 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. * contain redundant data. This is what most codecs work with.
*/ */
AV_TX_FLOAT_MDCT = 1, AV_TX_FLOAT_MDCT = 1,
/** /**
* Same as AV_TX_FLOAT_FFT with a data type of AVComplexDouble. * Same as AV_TX_FLOAT_FFT with a data type of AVComplexDouble.
*/ */
AV_TX_DOUBLE_FFT = 2, AV_TX_DOUBLE_FFT = 2,
/** /**
* Same as AV_TX_FLOAT_MDCT with data and scale type of double. * Same as AV_TX_FLOAT_MDCT with data and scale type of double.
* Stride must be a non-zero multiple of sizeof(double). * Stride must be a non-zero multiple of sizeof(double).
*/ */
AV_TX_DOUBLE_MDCT = 3, AV_TX_DOUBLE_MDCT = 3,
/** /**
* Same as AV_TX_FLOAT_FFT with a data type of AVComplexInt32. * Same as AV_TX_FLOAT_FFT with a data type of AVComplexInt32.
*/ */
AV_TX_INT32_FFT = 4, AV_TX_INT32_FFT = 4,
/** /**
* Same as AV_TX_FLOAT_MDCT with data type of int32_t and scale type of float. * 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. * Only scale values less than or equal to 1.0 are supported.