diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2016-11-04 20:20:25 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-08 01:56:31 +0100 |
commit | acd87dfc05b5c4d8ebf6832fe7c0aa13b9cc0c5f (patch) | |
tree | 38aa40f706bef575f2479eb6c1627a8c8063a4ca /cmdutils.h | |
parent | 0cf6853804675c99573889670b3447af4de1a3f3 (diff) | |
download | ffmpeg-acd87dfc05b5c4d8ebf6832fe7c0aa13b9cc0c5f.tar.gz |
cmdutils: add show_demuxers and show_muxers
add -muxers and -demuxers parameters to list the dexmuers and muxers
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index 1b96aa48d1..e75d8d3161 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -442,6 +442,20 @@ int show_license(void *optctx, const char *opt, const char *arg); int show_formats(void *optctx, const char *opt, const char *arg); /** + * Print a listing containing all the muxers supported by the + * program (including devices). + * This option processing function does not utilize the arguments. + */ +int show_muxers(void *optctx, const char *opt, const char *arg); + +/** + * Print a listing containing all the demuxer supported by the + * program (including devices). + * This option processing function does not utilize the arguments. + */ +int show_demuxers(void *optctx, const char *opt, const char *arg); + +/** * Print a listing containing all the devices supported by the * program. * This option processing function does not utilize the arguments. |