[FFmpeg-cvslog] swr: add function pointers for SIMD rematrixing

Michael Niedermayer git at videolan.org
Tue Jun 12 16:36:38 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Jun 12 16:12:08 2012 +0200| [9abbbf753033b07cd72803b256b6c865fe397909] | committer: Michael Niedermayer

swr: add function pointers for SIMD rematrixing

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9abbbf753033b07cd72803b256b6c865fe397909
---

 libswresample/swresample_internal.h |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h
index 6675c99..c16be60 100644
--- a/libswresample/swresample_internal.h
+++ b/libswresample/swresample_internal.h
@@ -98,7 +98,10 @@ struct SwrContext {
     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
     mix_1_1_func_type *mix_1_1_f;
+    mix_1_1_func_type *mix_1_1_simd;
+
     mix_2_1_func_type *mix_2_1_f;
+    mix_2_1_func_type *mix_2_1_simd;
 
     mix_any_func_type *mix_any_f;
 



More information about the ffmpeg-cvslog mailing list