1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

swresample: fix another broken indent chunk.

Also use a consistent style inside that block.
This commit is contained in:
Clément Bœsch
2011-10-10 15:54:09 +02:00
committed by Clément Bœsch
parent b2f88ce21c
commit ade3ec8457

View File

@@ -213,7 +213,6 @@ AVResampleContext *swr_resample_init(AVResampleContext *c, int out_rate, int in_
c->phase_mask = phase_count - 1;
c->linear = linear;
c->factor = factor;
c->filter_length = FFMAX((int)ceil(filter_size/factor), 1);
c->filter_bank = av_mallocz(c->filter_length*(phase_count+1)*sizeof(FELEM));
if (!c->filter_bank)