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
0842fd2c
Commit
0842fd2c
authored
Apr 20, 2020
by
Roman Arzumanyan
Committed by
Timo Rothenpieler
Jun 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/nvenc: zero avg and max bitrate in CQ mode
Signed-off-by:
Timo Rothenpieler
<
timo@rothenpieler.org
>
parent
7f76f20f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
nvenc.c
libavcodec/nvenc.c
+7
-2
No files found.
libavcodec/nvenc.c
View file @
0842fd2c
...
@@ -947,12 +947,17 @@ static av_cold void nvenc_setup_rate_control(AVCodecContext *avctx)
...
@@ -947,12 +947,17 @@ static av_cold void nvenc_setup_rate_control(AVCodecContext *avctx)
if
(
ctx
->
zerolatency
)
if
(
ctx
->
zerolatency
)
ctx
->
encode_config
.
rcParams
.
zeroReorderDelay
=
1
;
ctx
->
encode_config
.
rcParams
.
zeroReorderDelay
=
1
;
if
(
ctx
->
quality
)
if
(
ctx
->
quality
)
{
{
//convert from float to fixed point 8.8
//convert from float to fixed point 8.8
int
tmp_quality
=
(
int
)(
ctx
->
quality
*
256
.
0
f
);
int
tmp_quality
=
(
int
)(
ctx
->
quality
*
256
.
0
f
);
ctx
->
encode_config
.
rcParams
.
targetQuality
=
(
uint8_t
)(
tmp_quality
>>
8
);
ctx
->
encode_config
.
rcParams
.
targetQuality
=
(
uint8_t
)(
tmp_quality
>>
8
);
ctx
->
encode_config
.
rcParams
.
targetQualityLSB
=
(
uint8_t
)(
tmp_quality
&
0xff
);
ctx
->
encode_config
.
rcParams
.
targetQualityLSB
=
(
uint8_t
)(
tmp_quality
&
0xff
);
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"CQ(%d) mode enabled.
\n
"
,
tmp_quality
);
//CQ mode shall discard max & avg bitrate;
avctx
->
bit_rate
=
ctx
->
encode_config
.
rcParams
.
averageBitRate
=
0
;
avctx
->
rc_max_rate
=
ctx
->
encode_config
.
rcParams
.
maxBitRate
=
0
;
}
}
}
}
...
...
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