Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
5af73248
Commit
5af73248
authored
4 years ago
by
Pierre Lespagnol
Committed by
Adrien Béraud
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
autoadapt: adapt rate mode parameters for accel APIs
Change-Id: I7bed6215b81c90d5cb957398e64d3d330d43426c
parent
1ceec4d7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/media/media_encoder.cpp
+31
-10
31 additions, 10 deletions
src/media/media_encoder.cpp
src/media/media_encoder.h
+1
-0
1 addition, 0 deletions
src/media/media_encoder.h
with
32 additions
and
10 deletions
src/media/media_encoder.cpp
+
31
−
10
View file @
5af73248
...
...
@@ -776,6 +776,8 @@ MediaEncoder::initCodec(AVMediaType mediaType, AVCodecID avcodecId, uint64_t br)
}
else
if
(
avcodecId
==
AV_CODEC_ID_H263
)
{
initH263
(
encoderCtx
,
br
);
}
if
(
accel_
)
initAccel
(
encoderCtx
,
br
);
return
encoderCtx
;
}
...
...
@@ -809,30 +811,31 @@ MediaEncoder::setBitrate(uint64_t br)
// if (avcodec_open2(encoderCtx, outputCodec_, &options_) < 0)
// throw MediaEncoderException("Could not open encoder");
}
initAccel
(
encoderCtx
,
br
);
return
1
;
// OK
}
void
MediaEncoder
::
initH264
(
AVCodecContext
*
encoderCtx
,
uint64_t
br
)
{
uint64_t
maxBitrate
=
1000
*
br
;
uint8_t
crf
=
(
uint8_t
)
std
::
round
(
LOGREG_PARAM_A
+
log
(
pow
(
maxBitrate
,
LOGREG_PARAM_B
)));
// CRF = A + B*ln(maxBitrate)
// bufsize parameter impact the variation of the bitrate, reduce to half the maxrate to limit peak and congestion
//https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
uint64_t
bufSize
=
maxBitrate
/
2
;
// If auto quality disabled use CRF mode
if
(
mode_
==
RateMode
::
CRF_CONSTRAINED
)
{
uint64_t
maxBitrate
=
1000
*
br
;
uint8_t
crf
=
(
uint8_t
)
std
::
round
(
LOGREG_PARAM_A
+
log
(
pow
(
maxBitrate
,
LOGREG_PARAM_B
)));
// CRF = A + B*ln(maxBitrate)
// bufsize parameter impact the variation of the bitrate, reduce to half the maxrate to limit peak and congestion
//https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
uint64_t
bufSize
=
maxBitrate
/
2
;
av_opt_set_int
(
encoderCtx
,
"crf"
,
crf
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"maxrate"
,
maxBitrate
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"bufsize"
,
bufSize
,
AV_OPT_SEARCH_CHILDREN
);
JAMI_DBG
(
"H264 encoder setup: crf=%u, maxrate=%lu kbit/s, bufsize=%lu kbit"
,
crf
,
maxBitrate
/
1000
,
bufSize
/
1000
);
}
else
if
(
mode_
==
RateMode
::
CBR
)
{
av_opt_set_int
(
encoderCtx
,
"b"
,
br
*
1000
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"maxrate"
,
br
*
1000
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"minrate"
,
br
*
1000
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"bufsize"
,
b
r
*
500
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"b"
,
maxBitrate
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"maxrate"
,
maxBitrate
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"minrate"
,
maxBitrate
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"bufsize"
,
b
ufSize
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"crf"
,
-
1
,
AV_OPT_SEARCH_CHILDREN
);
JAMI_DBG
(
"H264 encoder setup cbr: bitrate=%lu kbit/s"
,
br
);
...
...
@@ -934,6 +937,24 @@ MediaEncoder::initH263(AVCodecContext* encoderCtx, uint64_t br)
JAMI_DBG
(
"H263 encoder setup: maxrate=%lu, bufsize=%lu"
,
maxBitrate
,
bufSize
);
}
void
MediaEncoder
::
initAccel
(
AVCodecContext
*
encoderCtx
,
uint64_t
br
)
{
if
(
accel_
->
getName
()
==
"nvenc"
)
{
//Use same parameters as software
}
else
if
(
accel_
->
getName
()
==
"vaapi"
)
{
// Use VBR encoding with bitrate target set to 80% of the maxrate
av_opt_set_int
(
encoderCtx
,
"crf"
,
-
1
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"b"
,
br
*
1000
*
0.8
f
,
AV_OPT_SEARCH_CHILDREN
);
}
else
if
(
accel_
->
getName
()
==
"videotoolbox"
)
{
//Use same parameters as software
}
else
if
(
accel_
->
getName
()
==
"qsv"
)
{
// Use Video Conferencing Mode
av_opt_set_int
(
encoderCtx
,
"vcm"
,
1
,
AV_OPT_SEARCH_CHILDREN
);
av_opt_set_int
(
encoderCtx
,
"b"
,
br
*
1000
*
0.8
f
,
AV_OPT_SEARCH_CHILDREN
);
}
}
AVCodecContext
*
MediaEncoder
::
getCurrentVideoAVCtx
()
{
...
...
This diff is collapsed.
Click to expand it.
src/media/media_encoder.h
+
1
−
0
View file @
5af73248
...
...
@@ -129,6 +129,7 @@ private:
void
initMPEG4
(
AVCodecContext
*
encoderCtx
,
uint64_t
br
);
void
initH263
(
AVCodecContext
*
encoderCtx
,
uint64_t
br
);
bool
isDynBitrateSupported
(
AVCodecID
codecid
);
void
initAccel
(
AVCodecContext
*
encoderCtx
,
uint64_t
br
);
std
::
vector
<
AVCodecContext
*>
encoders_
;
AVFormatContext
*
outputCtx_
=
nullptr
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment