comparison ra288.c @ 7854:e5e3c56c358c libavcodec

Cosmetics: line breaks
author vitor
date Sat, 13 Sep 2008 16:56:58 +0000
parents 21ab545aed8b
children 29010c2697da
comparison
equal deleted inserted replaced
7853:21ab545aed8b 7854:e5e3c56c358c
134 * @param hist pointer to the input history of the filter 134 * @param hist pointer to the input history of the filter
135 * @param out pointer to the non-recursive part of the output 135 * @param out pointer to the non-recursive part of the output
136 * @param out2 pointer to the recursive part of the output 136 * @param out2 pointer to the recursive part of the output
137 * @param window pointer to the windowing function table 137 * @param window pointer to the windowing function table
138 */ 138 */
139 static void do_hybrid_window(int order, int n, int non_rec, 139 static void do_hybrid_window(int order, int n, int non_rec, float *out,
140 float *out, float *hist, float *out2, 140 float *hist, float *out2, const float *window)
141 const float *window)
142 { 141 {
143 int i; 142 int i;
144 float buffer1[order + 1]; 143 float buffer1[order + 1];
145 float buffer2[order + 1]; 144 float buffer2[order + 1];
146 float work[order + n + non_rec]; 145 float work[order + n + non_rec];