comparison acelp_filters.h @ 7644:3d5972069016 libavcodec

Mention the fixed-point scale of the FIR filter coefficients.
author michael
date Thu, 21 Aug 2008 21:56:48 +0000
parents cb997823ead5
children dcfbc11cfd7d
comparison
equal deleted inserted replaced
7643:cb997823ead5 7644:3d5972069016
26 #include <stdint.h> 26 #include <stdint.h>
27 27
28 /** 28 /**
29 * low-pass Finite Impulse Response filter coefficients. 29 * low-pass Finite Impulse Response filter coefficients.
30 * 30 *
31 * Hamming windowed sinc filter with cutoff freq 3/40 of the sampling freq. 31 * Hamming windowed sinc filter with cutoff freq 3/40 of the sampling freq,
32 * the coefficients are scaled by 2^15.
32 * This array only contains the right half of the filter. 33 * This array only contains the right half of the filter.
33 * This filter is likely identical to the one used in G.729, though this 34 * This filter is likely identical to the one used in G.729, though this
34 * could not be determined from the original comments with certainity. 35 * could not be determined from the original comments with certainity.
35 */ 36 */
36 extern const int16_t ff_acelp_interp_filter[61]; 37 extern const int16_t ff_acelp_interp_filter[61];