diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-07-27 21:04:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-12 13:27:20 +0200 |
commit | 791a86c37a03b94207bc2d0ad4cbe7f39d7e495a (patch) | |
tree | 2fa0b848147bb0b1f4b9bb3195cc0f7692100a94 | |
parent | b86ab38137be34376c90d45d08d49dbd28f2a72f (diff) | |
download | ffmpeg-791a86c37a03b94207bc2d0ad4cbe7f39d7e495a.tar.gz |
ffmpeg: add a warning stating that the program is deprecated.
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4394,6 +4394,10 @@ int main(int argc, char **argv) show_banner(); + av_log(NULL, AV_LOG_WARNING, "This program is not developed anymore and is only " + "provided for compatibility. Use avconv instead " + "(see Changelog for the list of incompatible changes).\n"); + /* parse options */ parse_options(argc, argv, options, opt_output_file); |