From 1959351aecf09fc3e90208ff775f4849801dc13f Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 15 Jul 2015 15:51:39 +0200 Subject: avconv: move the no streams failure to open_output_file() It is a better place for it, there is no reason to wait until transcode_init(). --- avconv_opt.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'avconv_opt.c') diff --git a/avconv_opt.c b/avconv_opt.c index e231f539d2..1ec165db01 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -1622,6 +1622,12 @@ loop_end: avio_close(pb); } + if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) { + av_dump_format(oc, nb_output_files - 1, oc->filename, 1); + av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", nb_output_files - 1); + exit_program(1); + } + /* check if all codec options have been used */ unused_opts = strip_specifiers(o->g->codec_opts); for (i = of->ost_index; i < nb_output_streams; i++) { -- cgit v1.2.3