summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-08-06 07:20:05 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-08-06 07:20:22 (GMT)
commita59a64cbc85375b7a6a0266c62f654e2ea80a5c6 (patch)
tree055b7cd9372359de17c709075e8e8fe0b29b05b9
parent4131f21f7761d911e5e1b1f44068b652872e454f (diff)
parent06cd4c5a68e23f5be199c0d2d563da80989f839f (diff)
downloadffmpeg-a59a64cbc85375b7a6a0266c62f654e2ea80a5c6.zip
ffmpeg-a59a64cbc85375b7a6a0266c62f654e2ea80a5c6.tar.gz
ffmpeg-a59a64cbc85375b7a6a0266c62f654e2ea80a5c6.tar.bz2
Merge commit '06cd4c5a68e23f5be199c0d2d563da80989f839f'
* commit '06cd4c5a68e23f5be199c0d2d563da80989f839f': avconv: fix usage of deprecated lavfi API Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--ffmpeg_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c
index 89ee7e9..281d12c 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) \