Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-12 18:16:15 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-06-12 18:16:15 +0400
commit48a45f819f393b9a967b2ad891eef22227fc2040 (patch)
tree09f09561bb2c896f16386130e87532bc50df8eda /libswresample/rematrix.c
parent9abbbf753033b07cd72803b256b6c865fe397909 (diff)
swr: add native matrix for SIMD
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r--libswresample/rematrix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 5fa77ce5f9..a7d000c016 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -346,6 +346,7 @@ int swri_rematrix_init(SwrContext *s){
void swri_rematrix_free(SwrContext *s){
av_freep(&s->native_matrix);
av_freep(&s->native_one);
+ av_freep(&s->native_simd_matrix);
}
int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){