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
0856c5da
Commit
0856c5da
authored
Mar 29, 2019
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/libaomenc: fix default value for row-mt option
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
995889ab
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
libaomenc.c
libavcodec/libaomenc.c
+3
-2
No files found.
libavcodec/libaomenc.c
View file @
0856c5da
...
...
@@ -728,6 +728,7 @@ static av_cold int aom_init(AVCodecContext *avctx,
}
#endif
#ifdef AOM_CTRL_AV1E_SET_ROW_MT
if
(
ctx
->
row_mt
>=
0
)
codecctl_int
(
avctx
,
AV1E_SET_ROW_MT
,
ctx
->
row_mt
);
#endif
#ifdef AOM_CTRL_AV1E_SET_ENABLE_INTRABC
...
...
@@ -1082,7 +1083,7 @@ static const AVOption options[] = {
{
"tiles"
,
"Tile columns x rows"
,
OFFSET
(
tile_cols
),
AV_OPT_TYPE_IMAGE_SIZE
,
{
.
str
=
NULL
},
0
,
0
,
VE
},
{
"tile-columns"
,
"Log2 of number of tile columns to use"
,
OFFSET
(
tile_cols_log2
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
-
1
,
6
,
VE
},
{
"tile-rows"
,
"Log2 of number of tile rows to use"
,
OFFSET
(
tile_rows_log2
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
-
1
,
6
,
VE
},
{
"row-mt"
,
"Enable row based multi-threading"
,
OFFSET
(
row_mt
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
VE
},
{
"row-mt"
,
"Enable row based multi-threading"
,
OFFSET
(
row_mt
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
-
1
},
-
1
,
1
,
VE
},
{
"enable-cdef"
,
"Enable CDEF filtering"
,
OFFSET
(
enable_cdef
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
-
1
},
-
1
,
1
,
VE
},
{
"enable-global-motion"
,
"Enable global motion"
,
OFFSET
(
enable_global_motion
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
-
1
},
-
1
,
1
,
VE
},
{
"enable-intrabc"
,
"Enable intra block copy prediction mode"
,
OFFSET
(
enable_intrabc
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
-
1
},
0
,
1
,
VE
},
...
...
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