Commit 0c28ee74 authored by vitor's avatar vitor

Use doubles in ff_set_min_dist_lsf(). After this patch, AMR can use this

function with no change in output.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20511 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9b4ee8fa
......@@ -47,7 +47,7 @@ void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, in
lsfq[lp_order-1] = FFMIN(lsfq[lp_order-1], lsfq_max);//Is warning required ?
}
void ff_set_min_dist_lsf(float *lsf, float min_spacing, int size)
void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size)
{
int i;
float prev = 0.0;
......
......@@ -50,7 +50,7 @@ void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, in
* @param min_spacing minimum distance between two consecutive lsf values
* @param size size of the lsf vector
*/
void ff_set_min_dist_lsf(float *lsf, float min_spacing, int order);
void ff_set_min_dist_lsf(float *lsf, double min_spacing, int order);
/**
* \brief Convert LSF to LSP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment