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
a61bcb90
Commit
a61bcb90
authored
Feb 03, 2020
by
Sitan Liu
Committed by
Mark Thompson
Feb 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavcodec/amfenc_hevc.c: Fix Maximum Reference Frames option on AMF HEVC.
parent
c9683704
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
amfenc_hevc.c
libavcodec/amfenc_hevc.c
+1
-1
No files found.
libavcodec/amfenc_hevc.c
View file @
a61bcb90
...
...
@@ -144,7 +144,7 @@ static av_cold int amf_encode_init_hevc(AVCodecContext *avctx)
}
AMF_ASSIGN_PROPERTY_INT64
(
res
,
ctx
->
encoder
,
AMF_VIDEO_ENCODER_HEVC_QUALITY_PRESET
,
ctx
->
quality
);
// Maximum Reference Frames
if
(
avctx
->
refs
!=
0
)
{
if
(
avctx
->
refs
!=
-
1
)
{
AMF_ASSIGN_PROPERTY_INT64
(
res
,
ctx
->
encoder
,
AMF_VIDEO_ENCODER_HEVC_MAX_NUM_REFRAMES
,
avctx
->
refs
);
}
// Aspect Ratio
...
...
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