Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
bc1097a2
Commit
bc1097a2
authored
Sep 12, 2018
by
hwren
Committed by
Mark Thompson
Sep 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/libxavs2: remove nonexistent parameters
Signed-off-by:
hwren
<
hwrenx@126.com
>
parent
c0e9824c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
encoders.texi
doc/encoders.texi
+0
-3
libxavs2.c
libavcodec/libxavs2.c
+0
-4
No files found.
doc/encoders.texi
View file @
bc1097a2
...
@@ -2761,9 +2761,6 @@ Set the Speed level from 0 to 9 (default 0). Higher is better but slower.
...
@@ -2761,9 +2761,6 @@ Set the Speed level from 0 to 9 (default 0). Higher is better but slower.
Set the log level from -1 to 3 (default 0). -1: none, 0: error,
Set the log level from -1 to 3 (default 0). -1: none, 0: error,
1: warning, 2: info, 3: debug.
1: warning, 2: info, 3: debug.
@item hierarchical_ref
Set the hierarchical reference or not (default true).
@item xavs2-params
@item xavs2-params
Set xavs2 options using a list of @var{key}=@var{value} couples separated
Set xavs2 options using a list of @var{key}=@var{value} couples separated
by ":".
by ":".
...
...
libavcodec/libxavs2.c
View file @
bc1097a2
...
@@ -78,8 +78,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
...
@@ -78,8 +78,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
}
}
xavs2_opt_set2
(
"rec"
,
"%d"
,
0
);
xavs2_opt_set2
(
"width"
,
"%d"
,
avctx
->
width
);
xavs2_opt_set2
(
"width"
,
"%d"
,
avctx
->
width
);
xavs2_opt_set2
(
"height"
,
"%d"
,
avctx
->
height
);
xavs2_opt_set2
(
"height"
,
"%d"
,
avctx
->
height
);
xavs2_opt_set2
(
"bframes"
,
"%d"
,
avctx
->
max_b_frames
);
xavs2_opt_set2
(
"bframes"
,
"%d"
,
avctx
->
max_b_frames
);
...
@@ -92,7 +90,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
...
@@ -92,7 +90,6 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
xavs2_opt_set2
(
"thread_frames"
,
"%d"
,
avctx
->
thread_count
);
xavs2_opt_set2
(
"thread_frames"
,
"%d"
,
avctx
->
thread_count
);
xavs2_opt_set2
(
"thread_rows"
,
"%d"
,
cae
->
lcu_row_threads
);
xavs2_opt_set2
(
"thread_rows"
,
"%d"
,
cae
->
lcu_row_threads
);
xavs2_opt_set2
(
"hierarchical_ref"
,
"%d"
,
cae
->
hierarchical_reference
);
xavs2_opt_set2
(
"OpenGOP"
,
"%d"
,
1
);
xavs2_opt_set2
(
"OpenGOP"
,
"%d"
,
1
);
...
@@ -261,7 +258,6 @@ static const AVOption options[] = {
...
@@ -261,7 +258,6 @@ static const AVOption options[] = {
{
"min_qp"
,
"min qp for rate control"
,
OFFSET
(
min_qp
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
20
},
0
,
63
,
VE
},
{
"min_qp"
,
"min qp for rate control"
,
OFFSET
(
min_qp
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
20
},
0
,
63
,
VE
},
{
"speed_level"
,
"Speed level, higher is better but slower"
,
OFFSET
(
preset_level
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
9
,
VE
},
{
"speed_level"
,
"Speed level, higher is better but slower"
,
OFFSET
(
preset_level
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
9
,
VE
},
{
"log_level"
,
"log level: -1: none, 0: error, 1: warning, 2: info, 3: debug"
,
OFFSET
(
log_level
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
-
1
,
3
,
VE
},
{
"log_level"
,
"log level: -1: none, 0: error, 1: warning, 2: info, 3: debug"
,
OFFSET
(
log_level
)
,
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
-
1
,
3
,
VE
},
{
"hierarchical_ref"
,
"hierarchical reference"
,
OFFSET
(
hierarchical_reference
)
,
AV_OPT_TYPE_BOOL
,
{.
i64
=
1
},
0
,
1
,
VE
},
{
"xavs2-params"
,
"set the xavs2 configuration using a :-separated list of key=value parameters"
,
OFFSET
(
xavs2_opts
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
"xavs2-params"
,
"set the xavs2 configuration using a :-separated list of key=value parameters"
,
OFFSET
(
xavs2_opts
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
NULL
},
{
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