summaryrefslogtreecommitdiff
path: root/libavresample/avresample.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-04-26 16:02:37 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-05-01 13:52:59 -0400
commit4010d724e1d57858d56bff66fa245f2d5646be6e (patch)
tree52302973e6372e554c5a063cade02b113c553e56 /libavresample/avresample.h
parentf1ffb01ee9fd3a15c395c3cf6ff362ac5cd668d0 (diff)
lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff type
Diffstat (limited to 'libavresample/avresample.h')
-rw-r--r--libavresample/avresample.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h
index 41688ed555..7350805e41 100644
--- a/libavresample/avresample.h
+++ b/libavresample/avresample.h
@@ -39,7 +39,7 @@ typedef struct AVAudioResampleContext AVAudioResampleContext;
/** Mixing Coefficient Types */
enum AVMixCoeffType {
- AV_MIX_COEFF_TYPE_Q6, /** 16-bit 10.6 fixed-point */
+ AV_MIX_COEFF_TYPE_Q8, /** 16-bit 8.8 fixed-point */
AV_MIX_COEFF_TYPE_Q15, /** 32-bit 17.15 fixed-point */
AV_MIX_COEFF_TYPE_FLT, /** floating-point */
AV_MIX_COEFF_TYPE_NB, /** Number of coeff types. Not part of ABI */