Commit a59a64cb authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '06cd4c5a'

* commit '06cd4c5a':
  avconv: fix usage of deprecated lavfi API
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 4131f21f 06cd4c5a
......@@ -548,7 +548,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
{ \
AVFilterContext *ctx = inout->filter_ctx; \
AVFilterPad *pads = in ? ctx->input_pads : ctx->output_pads; \
int nb_pads = in ? ctx->input_count : ctx->output_count; \
int nb_pads = in ? ctx->nb_inputs : ctx->nb_outputs; \
AVIOContext *pb; \
\
if (avio_open_dyn_buf(&pb) < 0) \
......
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