diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-20 17:04:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-21 20:36:00 +0100 |
commit | 7891fdcc0381b0e441c76b38b3167f86dfd96dc5 (patch) | |
tree | 7bfdc20a545363084832bace8faeb9ebdc87f03a /libavcodec | |
parent | b3b8b930fcff07650315f1cf2e2db7021ecf6025 (diff) | |
download | ffmpeg-7891fdcc0381b0e441c76b38b3167f86dfd96dc5.tar.gz |
cosmetics: wrap long line
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit ebb230279aa0ecc2fda4c617860eb354531d4b63)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/iirfilter.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/iirfilter.c b/libavcodec/iirfilter.c index e37fd810d6..60313f1abe 100644 --- a/libavcodec/iirfilter.c +++ b/libavcodec/iirfilter.c @@ -169,7 +169,9 @@ av_cold struct FFIIRFilterState* ff_iir_filter_init_state(int order) } \ } -void ff_iir_filter(const struct FFIIRFilterCoeffs *c, struct FFIIRFilterState *s, int size, const int16_t *src, int sstep, int16_t *dst, int dstep) +void ff_iir_filter(const struct FFIIRFilterCoeffs *c, + struct FFIIRFilterState *s, int size, + const int16_t *src, int sstep, int16_t *dst, int dstep) { if (c->order == 4) { FILTER_BW_O4(int16_t, S16) |