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
7c94cfa2
Commit
7c94cfa2
authored
Oct 03, 2015
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/options_table: Add option flags to the truncated flag.
Also add a short description for the help output.
parent
13090895
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
options_table.h
libavcodec/options_table.h
+1
-1
No files found.
libavcodec/options_table.h
View file @
7c94cfa2
...
@@ -70,7 +70,7 @@ static const AVOption avcodec_options[] = {
...
@@ -70,7 +70,7 @@ static const AVOption avcodec_options[] = {
{
"emu_edge"
,
"do not draw edges"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
CODEC_FLAG_EMU_EDGE
},
INT_MIN
,
INT_MAX
,
0
,
"flags"
},
{
"emu_edge"
,
"do not draw edges"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
CODEC_FLAG_EMU_EDGE
},
INT_MIN
,
INT_MAX
,
0
,
"flags"
},
#endif
#endif
{
"psnr"
,
"error[?] variables will be set during encoding"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_CODEC_FLAG_PSNR
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"flags"
},
{
"psnr"
,
"error[?] variables will be set during encoding"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_CODEC_FLAG_PSNR
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"flags"
},
{
"truncated"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_CODEC_FLAG_TRUNCATED
},
INT_MIN
,
INT_MAX
,
0
,
"flags"
},
{
"truncated"
,
"Input bitstream might be randomly truncated"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
AV_CODEC_FLAG_TRUNCATED
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"flags"
},
#if FF_API_NORMALIZE_AQP
#if FF_API_NORMALIZE_AQP
{
"naq"
,
"normalize adaptive quantization"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
CODEC_FLAG_NORMALIZE_AQP
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"flags"
},
{
"naq"
,
"normalize adaptive quantization"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
CODEC_FLAG_NORMALIZE_AQP
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"flags"
},
#endif
#endif
...
...
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