diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-06-04 23:35:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-04 23:50:45 +0200 |
commit | 4cfc92081dfe9dfd14045b99b60e531b4f2cf6e7 (patch) | |
tree | f0d0405320f54cfc7a80963d32e139f492f361b9 /libswresample/rematrix.c | |
parent | e3e398b80be483e99eeda08d96c7409cfb6706cf (diff) | |
download | ffmpeg-4cfc92081dfe9dfd14045b99b60e531b4f2cf6e7.tar.gz |
swr: add native_simd_one
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r-- | libswresample/rematrix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index 3abfb3e760..48aff3be7f 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -403,6 +403,7 @@ av_cold void swri_rematrix_free(SwrContext *s){ av_freep(&s->native_matrix); av_freep(&s->native_one); av_freep(&s->native_simd_matrix); + av_freep(&s->native_simd_one); } int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){ |