Commit da1bb21c authored by Clément Bœsch's avatar Clément Bœsch

lavfi/aphaser: silence uninitialized variable warnings.

parent 977ee8af
......@@ -186,6 +186,7 @@ static void phaser_## name ##p(AudioPhaserContext *p, \
{ \
int i, c, delay_pos, modulation_pos; \
\
av_assert0(channels > 0); \
for (c = 0; c < channels; c++) { \
type *s = (type *)src[c]; \
type *d = (type *)dst[c]; \
......
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