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
e0a553d5
Commit
e0a553d5
authored
Dec 08, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opt_list: fix vertical alignment of types
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f4ceca62
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
opt.c
libavutil/opt.c
+12
-12
No files found.
libavutil/opt.c
View file @
e0a553d5
...
...
@@ -782,41 +782,41 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit,
switch
(
opt
->
type
)
{
case
AV_OPT_TYPE_FLAGS
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<flags>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<flags>"
);
break
;
case
AV_OPT_TYPE_INT
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<int>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<int>"
);
break
;
case
AV_OPT_TYPE_INT64
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<int64>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<int64>"
);
break
;
case
AV_OPT_TYPE_DOUBLE
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<double>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<double>"
);
break
;
case
AV_OPT_TYPE_FLOAT
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<float>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<float>"
);
break
;
case
AV_OPT_TYPE_STRING
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<string>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<string>"
);
break
;
case
AV_OPT_TYPE_RATIONAL
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<rational>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<rational>"
);
break
;
case
AV_OPT_TYPE_BINARY
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<binary>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<binary>"
);
break
;
case
AV_OPT_TYPE_IMAGE_SIZE
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<image_size>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<image_size>"
);
break
;
case
AV_OPT_TYPE_PIXEL_FMT
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<pix_fmt>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<pix_fmt>"
);
break
;
case
AV_OPT_TYPE_SAMPLE_FMT
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
"<sample_fmt>"
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
"<sample_fmt>"
);
break
;
case
AV_OPT_TYPE_CONST
:
default
:
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
7
s "
,
""
);
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%-
12
s "
,
""
);
break
;
}
av_log
(
av_log_obj
,
AV_LOG_INFO
,
"%c"
,
(
opt
->
flags
&
AV_OPT_FLAG_ENCODING_PARAM
)
?
'E'
:
'.'
);
...
...
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