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
b036a718
Commit
b036a718
authored
Sep 30, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add video/audio/encoding flags to global_quality option
parent
6450f26c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
options.c
libavcodec/options.c
+1
-1
No files found.
libavcodec/options.c
View file @
b036a718
...
...
@@ -320,7 +320,7 @@ static const AVOption options[]={
{
"pbias"
,
"inter quant bias"
,
OFFSET
(
inter_quant_bias
),
FF_OPT_TYPE_INT
,
{.
dbl
=
FF_DEFAULT_QUANT_BIAS
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"color_table_id"
,
NULL
,
OFFSET
(
color_table_id
),
FF_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
{
"internal_buffer_count"
,
NULL
,
OFFSET
(
internal_buffer_count
),
FF_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
{
"global_quality"
,
NULL
,
OFFSET
(
global_quality
),
FF_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
{
"global_quality"
,
NULL
,
OFFSET
(
global_quality
),
FF_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
A
|
E
},
{
"coder"
,
NULL
,
OFFSET
(
coder_type
),
FF_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
{
"vlc"
,
"variable length coder / huffman coder"
,
0
,
FF_OPT_TYPE_CONST
,
{.
dbl
=
FF_CODER_TYPE_VLC
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
{
"ac"
,
"arithmetic coder"
,
0
,
FF_OPT_TYPE_CONST
,
{.
dbl
=
FF_CODER_TYPE_AC
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
...
...
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