summaryrefslogtreecommitdiff
path: root/libavcodec/lpc.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:24:06 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:24:06 +0000
commit56c07e298914d0533a74bb4ba4be4abc8ea6b245 (patch)
tree6ef6ae0a9296a54ef6f1aac807336360e71fddff /libavcodec/lpc.h
parente748e34dd6427271b779978a61156e47bfab3c8e (diff)
use limited range of lpc orders when quantizing coefficients
Originally committed as revision 14794 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index b967ff59d9..6c7c2eba93 100644
--- a/libavcodec/lpc.h
+++ b/libavcodec/lpc.h
@@ -39,7 +39,7 @@
* Calculate LPC coefficients for multiple orders
*/
int ff_lpc_calc_coefs(DSPContext *s,
- const int32_t *samples, int blocksize, int max_order,
+ const int32_t *samples, int blocksize, int min_order, int max_order,
int precision, int32_t coefs[][MAX_LPC_ORDER],
int *shift, int use_lpc, int omethod, int max_shift, int zero_shift);