diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-17 18:29:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-17 20:29:55 +0100 |
commit | 4fef94c6d2ea14c1ca9e1ca100428f1fcba896fc (patch) | |
tree | 54bae413ba6e9e4c155d5a224cc375ddf77b4fa0 /libswresample/swresample_internal.h | |
parent | 0bfc03df3a52e5b256b6a7d9acedf3f21f572a1a (diff) | |
download | ffmpeg-4fef94c6d2ea14c1ca9e1ca100428f1fcba896fc.tar.gz |
swr: doxument matrix fields.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 7ca278a7ab..0fc1c6b6a6 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -69,9 +69,9 @@ typedef struct SwrContext { struct AudioConvert *full_convert; ///< full conversion context (single conversion for input and output) struct ResampleContext *resample; ///< resampling context - float matrix[SWR_CH_MAX][SWR_CH_MAX]; - int32_t matrix32[SWR_CH_MAX][SWR_CH_MAX]; - uint8_t matrix_ch[SWR_CH_MAX][SWR_CH_MAX+1]; + float matrix[SWR_CH_MAX][SWR_CH_MAX]; ///< floating point rematrixing coefficients + 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]; ///< Lists of input channels per output channel that have non zero rematrixing coefficients /* TODO: callbacks for ASM optimizations */ }SwrContext; |