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
c745bedd
Commit
c745bedd
authored
Mar 27, 2019
by
Zhong Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/qsvenc: enable hevc coding options configuration
Signed-off-by:
Zhong Li
<
zhong.li@intel.com
>
parent
6f9d7c55
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
qsvenc.c
libavcodec/qsvenc.c
+4
-3
No files found.
libavcodec/qsvenc.c
View file @
c745bedd
...
@@ -629,9 +629,10 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
...
@@ -629,9 +629,10 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
#endif
#endif
}
}
// the HEVC encoder plugin currently fails if coding options
// The HEVC encoder plugin currently fails with some old libmfx version if coding options
// are provided
// are provided. Can't find the extract libmfx version which fixed it, just enable it from
if
(
avctx
->
codec_id
!=
AV_CODEC_ID_HEVC
)
{
// V1.28 in order to keep compatibility security.
if
((
avctx
->
codec_id
!=
AV_CODEC_ID_HEVC
)
||
QSV_RUNTIME_VERSION_ATLEAST
(
q
->
ver
,
1
,
28
))
{
q
->
extco
.
Header
.
BufferId
=
MFX_EXTBUFF_CODING_OPTION
;
q
->
extco
.
Header
.
BufferId
=
MFX_EXTBUFF_CODING_OPTION
;
q
->
extco
.
Header
.
BufferSz
=
sizeof
(
q
->
extco
);
q
->
extco
.
Header
.
BufferSz
=
sizeof
(
q
->
extco
);
...
...
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