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
ae72b575
Commit
ae72b575
authored
Sep 08, 2015
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/libopenh264enc: apply minor consistency fixes to options text
parent
e25f192d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
libopenh264enc.c
libavcodec/libopenh264enc.c
+6
-6
No files found.
libavcodec/libopenh264enc.c
View file @
ae72b575
...
...
@@ -46,12 +46,12 @@ typedef struct SVCContext {
#define OFFSET(x) offsetof(SVCContext, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static
const
AVOption
options
[]
=
{
{
"slice_mode"
,
"
S
lice mode"
,
OFFSET
(
slice_mode
),
AV_OPT_TYPE_INT
,
{
.
i64
=
SM_AUTO_SLICE
},
SM_SINGLE_SLICE
,
SM_RESERVED
,
VE
,
"slice_mode"
},
{
"fixed"
,
"A
fixed number of slices"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_FIXEDSLCNUM_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"rowmb"
,
"O
ne slice per row of macroblocks"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_ROWMB_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"auto"
,
"A
utomatic number of slices according to number of threads"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_AUTO_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"loopfilter"
,
"
E
nable loop filter"
,
OFFSET
(
loopfilter
),
AV_OPT_TYPE_INT
,
{
.
i64
=
1
},
0
,
1
,
VE
},
{
"profile"
,
"
S
et profile restrictions"
,
OFFSET
(
profile
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
"slice_mode"
,
"
set s
lice mode"
,
OFFSET
(
slice_mode
),
AV_OPT_TYPE_INT
,
{
.
i64
=
SM_AUTO_SLICE
},
SM_SINGLE_SLICE
,
SM_RESERVED
,
VE
,
"slice_mode"
},
{
"fixed"
,
"a
fixed number of slices"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_FIXEDSLCNUM_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"rowmb"
,
"o
ne slice per row of macroblocks"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_ROWMB_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"auto"
,
"a
utomatic number of slices according to number of threads"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
SM_AUTO_SLICE
},
0
,
0
,
VE
,
"slice_mode"
},
{
"loopfilter"
,
"
e
nable loop filter"
,
OFFSET
(
loopfilter
),
AV_OPT_TYPE_INT
,
{
.
i64
=
1
},
0
,
1
,
VE
},
{
"profile"
,
"
s
et profile restrictions"
,
OFFSET
(
profile
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
NULL
}
};
...
...
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