From 8069db86338de422485751e5970b512cd4705454 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Thu, 28 Jun 2012 21:02:31 +0200 Subject: ffmpeg: warn that -t does not work with -filter_complex. --- ffmpeg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index 2bf783278c..f442638736 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -4943,6 +4943,9 @@ static void init_output_filter(OutputFilter *ofilter, OptionsContext *o, "cannot be used together.\n", ost->file_index, ost->index); exit_program(1); } + if (o->recording_time != INT64_MAX) + av_log(NULL, AV_LOG_WARNING, + "-t does not work with -filter_complex (yet).\n"); if (configure_output_filter(ofilter->graph, ofilter, ofilter->out_tmp) < 0) { av_log(NULL, AV_LOG_FATAL, "Error configuring filter.\n"); -- cgit v1.2.1