comparison acelp_filters.h @ 7654:999b818c33cc libavcodec

Mention cut-off freq of ff_acelp_high_pass_filter() instead of some meaningless input dependent value.
author michael
date Thu, 21 Aug 2008 23:39:52 +0000
parents de64f2e14b13
children c4a4495715dd
comparison
equal deleted inserted replaced
7653:155ec22a635a 7654:999b818c33cc
114 * @param length input data size 114 * @param length input data size
115 * 115 *
116 * out[i] = 0.93980581 * in[i] - 1.8795834 * in[i-1] + 0.93980581 * in[i-2] + 116 * out[i] = 0.93980581 * in[i] - 1.8795834 * in[i-1] + 0.93980581 * in[i-2] +
117 * 1.9330735 * out[i-1] - 0.93589199 * out[i-2] 117 * 1.9330735 * out[i-1] - 0.93589199 * out[i-2]
118 * 118 *
119 * The filter has a cut-off frequency of 100Hz 119 * The filter has a cut-off frequency of 1/80 of the sampling freq
120 * 120 *
121 * @note Two items before the top of the out buffer must contain two items from the 121 * @note Two items before the top of the out buffer must contain two items from the
122 * tail of the previous subframe. 122 * tail of the previous subframe.
123 * 123 *
124 * @remark It is safe to pass the same array in in and out parameters. 124 * @remark It is safe to pass the same array in in and out parameters.