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
51ee62d5
Commit
51ee62d5
authored
Oct 26, 2015
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/options: remove a few more redundant "default" information
parent
90c4ccc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
options_table.h
libavcodec/options_table.h
+3
-3
No files found.
libavcodec/options_table.h
View file @
51ee62d5
...
...
@@ -94,7 +94,7 @@ static const AVOption avcodec_options[] = {
{
"me_method"
,
"set motion estimation method"
,
OFFSET
(
me_method
),
AV_OPT_TYPE_INT
,
{.
i64
=
ME_EPZS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"zero"
,
"zero motion estimation (fastest)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_ZERO
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"full"
,
"full motion estimation (slowest)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_FULL
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"epzs"
,
"EPZS motion estimation
(default)
"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_EPZS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"epzs"
,
"EPZS motion estimation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_EPZS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"esa"
,
"esa motion estimation (alias for full)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_FULL
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"tesa"
,
"tesa motion estimation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_TESA
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
{
"dia"
,
"diamond motion estimation (alias for EPZS)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
ME_EPZS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"me_method"
},
...
...
@@ -199,7 +199,7 @@ static const AVOption avcodec_options[] = {
{
"rc_init_cplx"
,
"deprecated, use encoder private options instead"
,
OFFSET
(
rc_initial_cplx
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
DEFAULT
},
-
FLT_MAX
,
FLT_MAX
,
V
|
E
},
#endif
{
"dct"
,
"DCT algorithm"
,
OFFSET
(
dct_algo
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
0
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"auto"
,
"autoselect a good one
(default)
"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_AUTO
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"auto"
,
"autoselect a good one"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_AUTO
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"fastint"
,
"fast integer"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_FASTINT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"int"
,
"accurate integer"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_INT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"mmx"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_MMX
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
...
...
@@ -325,7 +325,7 @@ static const AVOption avcodec_options[] = {
{
"xvmc_acceleration"
,
NULL
,
OFFSET
(
xvmc_acceleration
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
#endif
/* FF_API_XVMC */
{
"mbd"
,
"macroblock decision algorithm (high quality mode)"
,
OFFSET
(
mb_decision
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
0
,
2
,
V
|
E
,
"mbd"
},
{
"simple"
,
"use mbcmp
(default)
"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_SIMPLE
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
{
"simple"
,
"use mbcmp"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_SIMPLE
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
{
"bits"
,
"use fewest bits"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_BITS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
{
"rd"
,
"use best rate distortion"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_RD
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
#if FF_API_STREAM_CODEC_TAG
...
...
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