diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 09:18:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 09:25:50 +0200 |
commit | 8593b743a81263eebec79bb13b7b925bd024c5e1 (patch) | |
tree | 59a19c64b02b41c8cf435a29367e7f2040fee96b /libswresample/swresample_internal.h | |
parent | c3c1af6dc626a0677ec93ca10643ef2cc480814d (diff) | |
download | ffmpeg-8593b743a81263eebec79bb13b7b925bd024c5e1.tar.gz |
rematrix: dont use floats for int16 code.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 17a93d8dc9..c883269313 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -61,6 +61,7 @@ typedef struct SwrContext { //FIXME find unused fields struct AVResampleContext *resample; float matrix[SWR_CH_MAX][SWR_CH_MAX]; + int16_t matrix16[SWR_CH_MAX][SWR_CH_MAX]; uint8_t matrix_ch[SWR_CH_MAX][SWR_CH_MAX+1]; //TODO callbacks for asm optims |