comparison qcelpdec.c @ 9343:dfe2d348aa50 libavcodec

Add missing static qualifier from function declaration. Patch by Kenan Gillet.
author reynaldo
date Sat, 04 Apr 2009 16:27:54 +0000
parents 33477a19f89e
children 70c3982d0bad
comparison
equal deleted inserted replaced
9342:7f594601d5e9 9343:dfe2d348aa50
584 * @note: bandwith_expansion_coeff could be precalculated into a table 584 * @note: bandwith_expansion_coeff could be precalculated into a table
585 * but it seems to be slower on x86 585 * but it seems to be slower on x86
586 * 586 *
587 * TIA/EIA/IS-733 2.4.3.3.5 587 * TIA/EIA/IS-733 2.4.3.3.5
588 */ 588 */
589 void lspf2lpc(const float *lspf, float *lpc) 589 static void lspf2lpc(const float *lspf, float *lpc)
590 { 590 {
591 double lsf[10]; 591 double lsf[10];
592 double bandwith_expansion_coeff = QCELP_BANDWITH_EXPANSION_COEFF; 592 double bandwith_expansion_coeff = QCELP_BANDWITH_EXPANSION_COEFF;
593 int i; 593 int i;
594 594