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
fef2162b
Commit
fef2162b
authored
Sep 23, 2018
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vaapi_encode: Add flag to mark encoders supporting only constant-quality
And set it for MJPEG.
parent
a7eda762
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
vaapi_encode.c
libavcodec/vaapi_encode.c
+2
-1
vaapi_encode.h
libavcodec/vaapi_encode.h
+2
-0
vaapi_encode_mjpeg.c
libavcodec/vaapi_encode_mjpeg.c
+2
-0
No files found.
libavcodec/vaapi_encode.c
View file @
fef2162b
...
...
@@ -1277,7 +1277,8 @@ static av_cold int vaapi_encode_init_rate_control(AVCodecContext *avctx)
ctx
->
va_rc_mode
=
VA_RC_CQP
;
return
0
;
}
if
(
avctx
->
flags
&
AV_CODEC_FLAG_QSCALE
||
if
(
ctx
->
codec
->
flags
&
FLAG_CONSTANT_QUALITY_ONLY
||
avctx
->
flags
&
AV_CODEC_FLAG_QSCALE
||
avctx
->
bit_rate
<=
0
)
{
if
(
rc_attr
.
value
&
VA_RC_CQP
)
{
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"Using constant-quality mode.
\n
"
);
...
...
libavcodec/vaapi_encode.h
View file @
fef2162b
...
...
@@ -251,6 +251,8 @@ typedef struct VAAPIEncodeContext {
enum
{
// Codec supports controlling the subdivision of pictures into slices.
FLAG_SLICE_CONTROL
=
1
<<
0
,
// Codec only supports constant quality (no rate control).
FLAG_CONSTANT_QUALITY_ONLY
=
1
<<
1
,
};
typedef
struct
VAAPIEncodeType
{
...
...
libavcodec/vaapi_encode_mjpeg.c
View file @
fef2162b
...
...
@@ -476,6 +476,8 @@ static const VAAPIEncodeProfile vaapi_encode_mjpeg_profiles[] = {
static
const
VAAPIEncodeType
vaapi_encode_type_mjpeg
=
{
.
profiles
=
vaapi_encode_mjpeg_profiles
,
.
flags
=
FLAG_CONSTANT_QUALITY_ONLY
,
.
configure
=
&
vaapi_encode_mjpeg_configure
,
.
picture_params_size
=
sizeof
(
VAEncPictureParameterBufferJPEG
),
...
...
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