Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-06 11:20:05 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-08-06 11:20:22 +0400
commita59a64cbc85375b7a6a0266c62f654e2ea80a5c6 (patch)
tree055b7cd9372359de17c709075e8e8fe0b29b05b9 /ffmpeg_filter.c
parent4131f21f7761d911e5e1b1f44068b652872e454f (diff)
parent06cd4c5a68e23f5be199c0d2d563da80989f839f (diff)
Merge commit '06cd4c5a68e23f5be199c0d2d563da80989f839f'
* commit '06cd4c5a68e23f5be199c0d2d563da80989f839f': avconv: fix usage of deprecated lavfi API Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg_filter.c')
-rw-r--r--ffmpeg_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c
index 89ee7e9426..281d12c8ec 100644
--- a/ffmpeg_filter.c
+++ b/ffmpeg_filter.c
@@ -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) \