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
ddbad158
Commit
ddbad158
authored
Nov 09, 2015
by
Agatha Hu
Committed by
Timo Rothenpieler
Nov 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/nvenc: update nvenc default parameters
Signed-off-by:
Timo Rothenpieler
<
timo@rothenpieler.org
>
parent
f9841745
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
nvenc.c
libavcodec/nvenc.c
+15
-7
No files found.
libavcodec/nvenc.c
View file @
ddbad158
...
...
@@ -766,8 +766,11 @@ static av_cold int nvenc_encode_init(AVCodecContext *avctx)
if
(
ctx
->
encode_config
.
frameIntervalP
>=
2
)
ctx
->
last_dts
=
-
2
;
if
(
avctx
->
bit_rate
>
0
)
if
(
avctx
->
bit_rate
>
0
)
{
ctx
->
encode_config
.
rcParams
.
averageBitRate
=
avctx
->
bit_rate
;
}
else
if
(
ctx
->
encode_config
.
rcParams
.
averageBitRate
>
0
)
{
ctx
->
encode_config
.
rcParams
.
maxBitRate
=
ctx
->
encode_config
.
rcParams
.
averageBitRate
;
}
if
(
avctx
->
rc_max_rate
>
0
)
ctx
->
encode_config
.
rcParams
.
maxBitRate
=
avctx
->
rc_max_rate
;
...
...
@@ -850,8 +853,11 @@ static av_cold int nvenc_encode_init(AVCodecContext *avctx)
}
}
if
(
avctx
->
rc_buffer_size
>
0
)
if
(
avctx
->
rc_buffer_size
>
0
)
{
ctx
->
encode_config
.
rcParams
.
vbvBufferSize
=
avctx
->
rc_buffer_size
;
}
else
if
(
ctx
->
encode_config
.
rcParams
.
averageBitRate
>
0
)
{
ctx
->
encode_config
.
rcParams
.
vbvBufferSize
=
2
*
ctx
->
encode_config
.
rcParams
.
averageBitRate
;
}
if
(
avctx
->
flags
&
AV_CODEC_FLAG_INTERLACED_DCT
)
{
ctx
->
encode_config
.
frameFieldMode
=
NV_ENC_PARAMS_FRAME_FIELD_MODE_FIELD
;
...
...
@@ -1457,10 +1463,10 @@ static const enum AVPixelFormat pix_fmts_nvenc[] = {
#define OFFSET(x) offsetof(NvencContext, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static
const
AVOption
options
[]
=
{
{
"preset"
,
"Set the encoding preset (one of slow = hq 2pass, medium = hq, fast = hp, hq, hp, bd, ll, llhq, llhp, default)"
,
OFFSET
(
preset
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"
hq
"
},
0
,
0
,
VE
},
{
"profile"
,
"Set the encoding profile (high, main, baseline or high444p)"
,
OFFSET
(
profile
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
"level"
,
"Set the encoding level restriction (auto, 1.0, 1.0b, 1.1, 1.2, ..., 4.2, 5.0, 5.1)"
,
OFFSET
(
level
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
"tier"
,
"Set the encoding tier (main or high)"
,
OFFSET
(
tier
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
VE
},
{
"preset"
,
"Set the encoding preset (one of slow = hq 2pass, medium = hq, fast = hp, hq, hp, bd, ll, llhq, llhp, default)"
,
OFFSET
(
preset
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"
medium
"
},
0
,
0
,
VE
},
{
"profile"
,
"Set the encoding profile (high, main, baseline or high444p)"
,
OFFSET
(
profile
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"main"
},
0
,
0
,
VE
},
{
"level"
,
"Set the encoding level restriction (auto, 1.0, 1.0b, 1.1, 1.2, ..., 4.2, 5.0, 5.1)"
,
OFFSET
(
level
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"auto"
},
0
,
0
,
VE
},
{
"tier"
,
"Set the encoding tier (main or high)"
,
OFFSET
(
tier
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"main"
},
0
,
0
,
VE
},
{
"cbr"
,
"Use cbr encoding mode"
,
OFFSET
(
cbr
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
0
},
0
,
1
,
VE
},
{
"2pass"
,
"Use 2pass encoding mode"
,
OFFSET
(
twopass
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
-
1
},
-
1
,
1
,
VE
},
{
"gpu"
,
"Selects which NVENC capable GPU to use. First GPU is 0, second is 1, and so on."
,
OFFSET
(
gpu
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
VE
},
...
...
@@ -1469,12 +1475,14 @@ static const AVOption options[] = {
};
static
const
AVCodecDefault
nvenc_defaults
[]
=
{
{
"b"
,
"
0
"
},
{
"b"
,
"
2M
"
},
{
"qmin"
,
"-1"
},
{
"qmax"
,
"-1"
},
{
"qdiff"
,
"-1"
},
{
"qblur"
,
"-1"
},
{
"qcomp"
,
"-1"
},
{
"g"
,
"250"
},
{
"bf"
,
"0"
},
{
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