diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-16 22:43:11 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-17 07:00:53 +0200 |
commit | 0a858048af695e0d5788f0613fc2dc490572e1de (patch) | |
tree | 5cb2066d40cefa2afae6cfebba076f8fe2fca772 /ffplay.c | |
parent | a4e540c4f58f4c3b8d2cd924d6cd7ebf8183b074 (diff) | |
download | ffmpeg-0a858048af695e0d5788f0613fc2dc490572e1de.tar.gz |
ffplay: warn that -pix_fmt is no longer working, suggest alternative
Also remove now unused variable.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -226,7 +226,6 @@ static int fs_screen_width; static int fs_screen_height; static int screen_width = 0; static int screen_height = 0; -static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; static int audio_disable; static int video_disable; static int wanted_stream[AVMEDIA_TYPE_NB]={ @@ -2850,8 +2849,9 @@ static int opt_format(const char *opt, const char *arg) static int opt_frame_pix_fmt(const char *opt, const char *arg) { - frame_pix_fmt = av_get_pix_fmt(arg); - return 0; + av_log(NULL, AV_LOG_ERROR, + "Option '%s' has been removed, use private format options instead\n", opt); + return AVERROR(EINVAL); } static int opt_sync(const char *opt, const char *arg) |