Commit cca2177f authored by michael's avatar michael

Vertically align function arguments.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20413 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9e89b55a
......@@ -21,9 +21,9 @@
#include "synth_filter.h"
void ff_synth_filter_float(FFTContext *imdct,
float *synth_buf_ptr, int *synth_buf_offset,
float synth_buf2[32], const float window[512],
float out[32], const float in[32], float scale, float bias)
float *synth_buf_ptr, int *synth_buf_offset,
float synth_buf2[32], const float window[512],
float out[32], const float in[32], float scale, float bias)
{
float *synth_buf= synth_buf_ptr + *synth_buf_offset;
int i, j;
......
......@@ -21,7 +21,7 @@
#include "dsputil.h"
void ff_synth_filter_float(FFTContext *imdct,
float *synth_buf_ptr, int *synth_buf_offset,
float synth_buf2[32], const float window[512],
float out[32], const float in[32], float scale, float bias);
float *synth_buf_ptr, int *synth_buf_offset,
float synth_buf2[32], const float window[512],
float out[32], const float in[32], float scale, float bias);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment