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
69f7dd35
Commit
69f7dd35
authored
Nov 20, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/options_table: make channel_layouts uint64
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
2f935baa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
options_table.h
libavcodec/options_table.h
+2
-2
No files found.
libavcodec/options_table.h
View file @
69f7dd35
...
@@ -447,8 +447,8 @@ static const AVOption avcodec_options[] = {
...
@@ -447,8 +447,8 @@ static const AVOption avcodec_options[] = {
{
"timecode_frame_start"
,
"GOP timecode frame start number, in non-drop-frame format"
,
OFFSET
(
timecode_frame_start
),
AV_OPT_TYPE_INT64
,
{.
i64
=
-
1
},
-
1
,
INT64_MAX
,
V
|
E
},
{
"timecode_frame_start"
,
"GOP timecode frame start number, in non-drop-frame format"
,
OFFSET
(
timecode_frame_start
),
AV_OPT_TYPE_INT64
,
{.
i64
=
-
1
},
-
1
,
INT64_MAX
,
V
|
E
},
#endif
#endif
{
"bits_per_raw_sample"
,
NULL
,
OFFSET
(
bits_per_raw_sample
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
0
,
INT_MAX
},
{
"bits_per_raw_sample"
,
NULL
,
OFFSET
(
bits_per_raw_sample
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
0
,
INT_MAX
},
{
"channel_layout"
,
NULL
,
OFFSET
(
channel_layout
),
AV_OPT_TYPE_
INT64
,
{.
i64
=
DEFAULT
},
0
,
INT64_MAX
,
A
|
E
|
D
,
"channel_layout"
},
{
"channel_layout"
,
NULL
,
OFFSET
(
channel_layout
),
AV_OPT_TYPE_
UINT64
,
{.
i64
=
DEFAULT
},
0
,
U
INT64_MAX
,
A
|
E
|
D
,
"channel_layout"
},
{
"request_channel_layout"
,
NULL
,
OFFSET
(
request_channel_layout
),
AV_OPT_TYPE_
INT64
,
{.
i64
=
DEFAULT
},
0
,
INT64_MAX
,
A
|
D
,
"request_channel_layout"
},
{
"request_channel_layout"
,
NULL
,
OFFSET
(
request_channel_layout
),
AV_OPT_TYPE_
UINT64
,
{.
i64
=
DEFAULT
},
0
,
U
INT64_MAX
,
A
|
D
,
"request_channel_layout"
},
{
"rc_max_vbv_use"
,
NULL
,
OFFSET
(
rc_max_available_vbv_use
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
0
},
0
.
0
,
FLT_MAX
,
V
|
E
},
{
"rc_max_vbv_use"
,
NULL
,
OFFSET
(
rc_max_available_vbv_use
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
0
},
0
.
0
,
FLT_MAX
,
V
|
E
},
{
"rc_min_vbv_use"
,
NULL
,
OFFSET
(
rc_min_vbv_overflow_use
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
3
},
0
.
0
,
FLT_MAX
,
V
|
E
},
{
"rc_min_vbv_use"
,
NULL
,
OFFSET
(
rc_min_vbv_overflow_use
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
3
},
0
.
0
,
FLT_MAX
,
V
|
E
},
{
"ticks_per_frame"
,
NULL
,
OFFSET
(
ticks_per_frame
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
1
,
INT_MAX
,
A
|
V
|
E
|
D
},
{
"ticks_per_frame"
,
NULL
,
OFFSET
(
ticks_per_frame
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
1
,
INT_MAX
,
A
|
V
|
E
|
D
},
...
...
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