diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-06-01 06:29:50 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-06-01 06:29:50 +0000 |
commit | 4979362ae4202395df99627803cae7180d7473cb (patch) | |
tree | c5775e7f6eed78cd6e85860d15a56dff8e2ca1d5 | |
parent | 0546386dffe219e2f6c93f64aac4accefe2b1f93 (diff) | |
download | ffmpeg-4979362ae4202395df99627803cae7180d7473cb.tar.gz |
ffmpeg: offer alternatives for experimental codecs if they exist
backport r23398 by janne
Originally committed as revision 23400 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2935,6 +2935,12 @@ static enum CodecID find_codec_or_die(const char *name, int type, int encoder, i fprintf(stderr, "%s '%s' is experimental and might produce bad " "results.\nAdd '-strict experimental' if you want to use it.\n", codec_string, codec->name); + codec = encoder ? + avcodec_find_encoder(codec->id) : + avcodec_find_decoder(codec->id); + if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL)) + fprintf(stderr, "Or use the non experimental %s '%s'.\n", + codec_string, codec->name); av_exit(1); } return codec->id; |