summaryrefslogtreecommitdiff
path: root/libswresample/audioconvert.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-14 04:47:17 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-14 04:47:17 +0100
commitceb9f8d9271f2cd18a0d389be044ca93aa1b4870 (patch)
treefffcf641d23ca1323ac642b015167e13ee79621c /libswresample/audioconvert.h
parenta286b04dafc43b9bd1fb884c3c87d636b399bd3e (diff)
audioconvert: support simd code with specific alignment requirements.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/audioconvert.h')
-rw-r--r--libswresample/audioconvert.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libswresample/audioconvert.h b/libswresample/audioconvert.h
index d8af003671..2e983df286 100644
--- a/libswresample/audioconvert.h
+++ b/libswresample/audioconvert.h
@@ -38,6 +38,8 @@ typedef void (simd_func_type)(uint8_t **dst, const uint8_t **src, int len);
typedef struct AudioConvert {
int channels;
+ int in_simd_align_mask;
+ int out_simd_align_mask;
conv_func_type *conv_f;
simd_func_type *simd_f;
const int *ch_map;