diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-12-27 07:46:44 +0000 |
---|---|---|
committer | Anton Khirnov <wyskas@gmail.com> | 2010-12-27 07:46:44 +0000 |
commit | bb62d5c1f06e7ff0446abb9cbe6a102cdbd38cc0 (patch) | |
tree | c0b31fbd2963a2cefa446c54b011b8e49ca550d9 /ffmpeg.c | |
parent | 18f1add31c93940359086465825adada99bd6bc9 (diff) | |
download | ffmpeg-bb62d5c1f06e7ff0446abb9cbe6a102cdbd38cc0.tar.gz |
Allow output formats without any streams.
Required for future metadata format.
Originally committed as revision 26100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1990,7 +1990,7 @@ static int transcode(AVFormatContext **output_files, nb_ostreams = 0; for(i=0;i<nb_output_files;i++) { os = output_files[i]; - if (!os->nb_streams) { + if (!os->nb_streams && !(os->oformat->flags & AVFMT_NOSTREAMS)) { dump_format(output_files[i], i, output_files[i]->filename, 1); fprintf(stderr, "Output file #%d does not contain any stream\n", i); ret = AVERROR(EINVAL); |