diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-04 14:54:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-04 14:54:14 +0100 |
commit | cddbe9fa2eb50ffb8424c9ed090840972ff48f3c (patch) | |
tree | bfdb7091ccf3bd2b0dfe327ce30bec23f71266f3 | |
parent | 905cd28a5a0be7bb1729d80871369d13a9a598cc (diff) | |
download | ffmpeg-cddbe9fa2eb50ffb8424c9ed090840972ff48f3c.tar.gz |
avfilter/dualinput: fix repeatlast to match docs and eof_action=pass
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/dualinput.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/dualinput.c b/libavfilter/dualinput.c index 88f7a272f1..45f681078d 100644 --- a/libavfilter/dualinput.c +++ b/libavfilter/dualinput.c @@ -59,7 +59,7 @@ int ff_dualinput_init(AVFilterContext *ctx, FFDualInputContext *s) if (s->shortest) in[0].after = in[1].after = EXT_STOP; if (!s->repeatlast) { - in[0].after = EXT_STOP; + in[1].after = EXT_NULL; in[1].sync = 0; } |