diff options
author | Lukasz Marek <lukasz.m.luki2@gmail.com> | 2014-05-27 23:04:52 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-28 03:52:50 +0200 |
commit | 8518da23f59d8f5a52f7c1c919f584a119484d0f (patch) | |
tree | f802b9b11a80c0a3d57b682fa3e8f15a5f17c7c1 /cmdutils_common_opts.h | |
parent | bbc10a1aa537c75224b14252eb94c4c829c61a3b (diff) | |
download | ffmpeg-8518da23f59d8f5a52f7c1c919f584a119484d0f.tar.gz |
ffmpeg: add -devices param
FFmpeg mix devices and file formats when -formats option is used.
This commit adds a -devices param to list devices only.
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils_common_opts.h')
-rw-r--r-- | cmdutils_common_opts.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils_common_opts.h b/cmdutils_common_opts.h index 190dba674f..49b5180e37 100644 --- a/cmdutils_common_opts.h +++ b/cmdutils_common_opts.h @@ -6,6 +6,7 @@ { "version" , OPT_EXIT, {.func_arg = show_version}, "show version" }, { "buildconf" , OPT_EXIT, {.func_arg = show_buildconf}, "show build configuration" }, { "formats" , OPT_EXIT, {.func_arg = show_formats }, "show available formats" }, + { "devices" , OPT_EXIT, {.func_arg = show_devices }, "show available devices" }, { "codecs" , OPT_EXIT, {.func_arg = show_codecs }, "show available codecs" }, { "decoders" , OPT_EXIT, {.func_arg = show_decoders }, "show available decoders" }, { "encoders" , OPT_EXIT, {.func_arg = show_encoders }, "show available encoders" }, |