Skip to content
Snippets Groups Projects
Commit 4fef94c6 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

swr: doxument matrix fields.

parent 0bfc03df
Branches
Tags
No related merge requests found
...@@ -69,9 +69,9 @@ typedef struct SwrContext { ...@@ -69,9 +69,9 @@ typedef struct SwrContext {
struct AudioConvert *full_convert; ///< full conversion context (single conversion for input and output) struct AudioConvert *full_convert; ///< full conversion context (single conversion for input and output)
struct ResampleContext *resample; ///< resampling context struct ResampleContext *resample; ///< resampling context
float matrix[SWR_CH_MAX][SWR_CH_MAX]; float matrix[SWR_CH_MAX][SWR_CH_MAX]; ///< floating point rematrixing coefficients
int32_t matrix32[SWR_CH_MAX][SWR_CH_MAX]; int32_t matrix32[SWR_CH_MAX][SWR_CH_MAX]; ///< 17.15 fixed point rematrixing coefficients
uint8_t matrix_ch[SWR_CH_MAX][SWR_CH_MAX+1]; uint8_t matrix_ch[SWR_CH_MAX][SWR_CH_MAX+1]; ///< Lists of input channels per output channel that have non zero rematrixing coefficients
/* TODO: callbacks for ASM optimizations */ /* TODO: callbacks for ASM optimizations */
}SwrContext; }SwrContext;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment