diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-26 16:02:37 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-01 13:52:59 -0400 |
commit | 4010d724e1d57858d56bff66fa245f2d5646be6e (patch) | |
tree | 52302973e6372e554c5a063cade02b113c553e56 /libavresample/audio_mix.h | |
parent | f1ffb01ee9fd3a15c395c3cf6ff362ac5cd668d0 (diff) | |
download | ffmpeg-4010d724e1d57858d56bff66fa245f2d5646be6e.tar.gz |
lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff type
Diffstat (limited to 'libavresample/audio_mix.h')
-rw-r--r-- | libavresample/audio_mix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/audio_mix.h b/libavresample/audio_mix.h index ffa1b23842..61db33047d 100644 --- a/libavresample/audio_mix.h +++ b/libavresample/audio_mix.h @@ -47,7 +47,7 @@ typedef struct AudioMix { mix_func *mix; mix_func *mix_generic; - int16_t *matrix_q6[AVRESAMPLE_MAX_CHANNELS]; + int16_t *matrix_q8[AVRESAMPLE_MAX_CHANNELS]; int32_t *matrix_q15[AVRESAMPLE_MAX_CHANNELS]; float *matrix_flt[AVRESAMPLE_MAX_CHANNELS]; void **matrix; |