Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4e268285
Commit
4e268285
authored
Oct 17, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmdutils: add -colors option
parent
d61617a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
0 deletions
+22
-0
cmdutils.c
cmdutils.c
+12
-0
cmdutils.h
cmdutils.h
+6
-0
cmdutils_common_opts.h
cmdutils_common_opts.h
+1
-0
fftools-common-opts.texi
doc/fftools-common-opts.texi
+3
-0
No files found.
cmdutils.c
View file @
4e268285
...
...
@@ -1518,6 +1518,18 @@ int show_filters(void *optctx, const char *opt, const char *arg)
return
0
;
}
void
show_colors
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
const
char
*
name
;
const
uint8_t
*
rgb
;
int
i
;
printf
(
"%-32s #RRGGBB
\n
"
,
"name"
);
for
(
i
=
0
;
name
=
av_get_known_color_name
(
i
,
&
rgb
);
i
++
)
printf
(
"%-32s #%02x%02x%02x
\n
"
,
name
,
rgb
[
0
],
rgb
[
1
],
rgb
[
2
]);
}
int
show_pix_fmts
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
const
AVPixFmtDescriptor
*
pix_desc
=
NULL
;
...
...
cmdutils.h
View file @
4e268285
...
...
@@ -488,6 +488,12 @@ int show_layouts(void *optctx, const char *opt, const char *arg);
*/
int
show_sample_fmts
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
);
/**
* Print a listing containing all the color names and values recognized
* by the program.
*/
void
show_colors
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
);
/**
* Return a positive value if a line read from standard input
* starts with [yY], otherwise return 0.
...
...
cmdutils_common_opts.h
View file @
4e268285
...
...
@@ -14,6 +14,7 @@
{
"pix_fmts"
,
OPT_EXIT
,
{.
func_arg
=
show_pix_fmts
},
"show available pixel formats"
},
{
"layouts"
,
OPT_EXIT
,
{.
func_arg
=
show_layouts
},
"show standard channel layouts"
},
{
"sample_fmts"
,
OPT_EXIT
,
{.
func_arg
=
show_sample_fmts
},
"show available audio sample formats"
},
{
"colors"
,
OPT_EXIT
,
{.
func_arg
=
show_colors
},
"show available color names"
},
{
"loglevel"
,
HAS_ARG
,
{.
func_arg
=
opt_loglevel
},
"set logging level"
,
"loglevel"
},
{
"v"
,
HAS_ARG
,
{.
func_arg
=
opt_loglevel
},
"set logging level"
,
"loglevel"
},
{
"report"
,
0
,
{(
void
*
)
opt_report
},
"generate a report"
},
...
...
doc/fftools-common-opts.texi
View file @
4e268285
...
...
@@ -128,6 +128,9 @@ Show available sample formats.
@item -layouts
Show channel names and standard channel layouts.
@item -colors
Show recognized color names.
@item -loglevel [repeat+]@var{loglevel} | -v [repeat+]@var{loglevel}
Set the logging level used by the library.
Adding "repeat+" indicates that repeated log output should not be compressed
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment