diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-12 16:27:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-12 16:35:13 +0200 |
commit | cbeeaf25932aac5923e075ae241fcc5287f7396a (patch) | |
tree | 73cca1c32b4e7ed3d6e31f871cb93fb7dbf284a6 /libswresample/rematrix.c | |
parent | 52afa43691116bf35b6398ef3087f3a1508ef9a6 (diff) | |
download | ffmpeg-cbeeaf25932aac5923e075ae241fcc5287f7396a.tar.gz |
swr: mix_1_1 int16 MMX
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r-- | libswresample/rematrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index 18e89c96ba..b9c5a4cf50 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -380,7 +380,7 @@ int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mus in_i= s->matrix_ch[out_i][1]; if(s->matrix[out_i][in_i]!=1.0){ if(s->mix_1_1_simd && len1) - s->mix_1_1_simd(out->ch[out_i] , in->ch[in_i] , s->native_matrix, in->ch_count*out_i + in_i, len1); + s->mix_1_1_simd(out->ch[out_i] , in->ch[in_i] , s->native_simd_matrix, in->ch_count*out_i + in_i, len1); if(len != len1) s->mix_1_1_f (out->ch[out_i]+off, in->ch[in_i]+off, s->native_matrix, in->ch_count*out_i + in_i, len-len1); }else if(mustcopy){ |