You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avconv: fix usage of deprecated lavfi API
This commit is contained in:
@@ -384,7 +384,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
|
|||||||
{ \
|
{ \
|
||||||
AVFilterContext *ctx = inout->filter_ctx; \
|
AVFilterContext *ctx = inout->filter_ctx; \
|
||||||
AVFilterPad *pads = in ? ctx->input_pads : ctx->output_pads; \
|
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; \
|
AVIOContext *pb; \
|
||||||
\
|
\
|
||||||
if (avio_open_dyn_buf(&pb) < 0) \
|
if (avio_open_dyn_buf(&pb) < 0) \
|
||||||
|
Reference in New Issue
Block a user