diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-11-19 16:35:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-11-19 16:35:55 +0000 |
commit | 8447f0bd74e979da5a0ba02e3c2d1abf02f9e6ec (patch) | |
tree | bd82ddac3e3ef093968bb5ede90db2741853d809 /cmdutils.h | |
parent | b711aaa2d8035b8a14bbdf0315cf2cea48dee890 (diff) | |
download | ffmpeg-8447f0bd74e979da5a0ba02e3c2d1abf02f9e6ec.tar.gz |
Split show_formats().
Originally committed as revision 20553 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cmdutils.h b/cmdutils.h index 826f00092f..efc8d02602 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -158,6 +158,24 @@ void show_license(void); void show_formats(void); /** + * Prints a listing containing all the codecs supported by the + * program. + */ +void show_codecs(void); + +/** + * Prints a listing containing all the bit stream filters supported by the + * program. + */ +void show_bsfs(void); + +/** + * Prints a listing containing all the protocols supported by the + * program. + */ +void show_protocols(void); + +/** * Returns a positive value if reads from standard input a line * starting with [yY], otherwise returns 0. */ |