diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-06 19:08:13 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-01-07 11:02:13 +0100 |
commit | ceef1ee7674f21824a3392c654465b43b06c94fe (patch) | |
tree | e20c105177bb2d38251b6d625ef0ae3a10004a21 /ffplay.c | |
parent | 44cc1936be0ec2d734e5e2b4e215ce2908caf46e (diff) | |
download | ffmpeg-ceef1ee7674f21824a3392c654465b43b06c94fe.tar.gz |
cmdutils: make show_usage() use av_log()
Avoid printing on stdout when show_usage is used in an error message.
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3105,9 +3105,9 @@ static const OptionDef options[] = { static void show_usage(void) { - printf("Simple media player\n"); - printf("usage: %s [options] input_file\n", program_name); - printf("\n"); + av_log(NULL, AV_LOG_INFO, "Simple media player\n"); + av_log(NULL, AV_LOG_INFO, "usage: %s [options] input_file\n", program_name); + av_log(NULL, AV_LOG_INFO, "\n"); } static int opt_help(const char *opt, const char *arg) |