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
d00dcb8c
Commit
d00dcb8c
authored
Mar 31, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opt: attempt to improve options dump output.
Add some indent and remove the '-' prefix for filters.
parent
999a46b1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
opt.c
libavutil/opt.c
+4
-2
No files found.
libavutil/opt.c
View file @
d00dcb8c
...
...
@@ -841,7 +841,9 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit,
else
if
(
unit
&&
opt
->
type
==
AV_OPT_TYPE_CONST
)
av_log
(
av_log_obj
,
AV_LOG_INFO
,
" %-15s "
,
opt
->
name
);
else
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"-%-17s "
,
opt
->
name
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
" %s%-17s "
,
(
opt
->
flags
&
AV_OPT_FLAG_FILTERING_PARAM
)
?
""
:
"-"
,
opt
->
name
);
switch
(
opt
->
type
)
{
case
AV_OPT_TYPE_FLAGS
:
...
...
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