diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-24 00:51:40 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-24 00:51:40 +0000 |
commit | e44c01563f03bf5cd0b6e59fd32f145db3861b33 (patch) | |
tree | 9b2bc01bb182ffd3ac0fb680768c4a1fed40dddd /ffmpeg.c | |
parent | 47941088f9d157216e942f6172cd39378493f52d (diff) | |
download | ffmpeg-e44c01563f03bf5cd0b6e59fd32f145db3861b33.tar.gz |
Deprecate av_opt_show() in favor of a new function av_opt_show2(),
which allows to specify only a subset of all the options to show.
Originally committed as revision 25166 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3905,11 +3905,11 @@ static void show_help(void) OPT_GRAB, OPT_GRAB); printf("\n"); - av_opt_show(avcodec_opts[0], NULL); + av_opt_show2(avcodec_opts[0], NULL, AV_OPT_FLAG_ENCODING_PARAM|AV_OPT_FLAG_DECODING_PARAM, 0); printf("\n"); - av_opt_show(avformat_opts, NULL); + av_opt_show2(avformat_opts, NULL, AV_OPT_FLAG_ENCODING_PARAM|AV_OPT_FLAG_DECODING_PARAM, 0); printf("\n"); - av_opt_show(sws_opts, NULL); + av_opt_show2(sws_opts, NULL, AV_OPT_FLAG_ENCODING_PARAM|AV_OPT_FLAG_DECODING_PARAM, 0); } static void opt_target(const char *arg) |