comparison lsp.h @ 12066:57fba1b7867b libavcodec

Fix the signature of ff_set_min_dist_lsf() to match the implementation and add doxy for the size parameter.
author diego
date Fri, 02 Jul 2010 12:26:22 +0000
parents 372f7fed2806
children 4f06422196ee
comparison
equal deleted inserted replaced
12065:1b6557975db1 12066:57fba1b7867b
46 * Omitting this step creates audible distortion on the sinusoidal sweep 46 * Omitting this step creates audible distortion on the sinusoidal sweep
47 * test vectors in 3GPP TS 26.074. 47 * test vectors in 3GPP TS 26.074.
48 * 48 *
49 * @param lsf [in,out] LSFs in Hertz 49 * @param lsf [in,out] LSFs in Hertz
50 * @param min_spacing minimum distance between two consecutive lsf values 50 * @param min_spacing minimum distance between two consecutive lsf values
51 * @param size size of the lsf vector
51 */ 52 */
52 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int order); 53 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size);
53 54
54 /** 55 /**
55 * \brief Convert LSF to LSP 56 * \brief Convert LSF to LSP
56 * \param lsp [out] LSP coefficients (-0x8000 <= (0.15) < 0x8000) 57 * \param lsp [out] LSP coefficients (-0x8000 <= (0.15) < 0x8000)
57 * \param lsf normalized LSF coefficients (0 <= (2.13) < 0x2000 * PI) 58 * \param lsf normalized LSF coefficients (0 <= (2.13) < 0x2000 * PI)