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
f2dd6aee
Commit
f2dd6aee
authored
Nov 27, 2016
by
Miroslav Slugeň
Committed by
Timo Rothenpieler
Nov 30, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/nvenc: always reduce DAR width and height
Signed-off-by:
Timo Rothenpieler
<
timo@rothenpieler.org
>
parent
27038693
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
nvenc.c
libavcodec/nvenc.c
+9
-12
No files found.
libavcodec/nvenc.c
View file @
f2dd6aee
...
...
@@ -941,18 +941,15 @@ static av_cold int nvenc_setup_encoder(AVCodecContext *avctx)
ctx
->
encode_config
.
version
=
NV_ENC_CONFIG_VER
;
if
(
avctx
->
sample_aspect_ratio
.
num
&&
avctx
->
sample_aspect_ratio
.
den
&&
(
avctx
->
sample_aspect_ratio
.
num
!=
1
||
avctx
->
sample_aspect_ratio
.
num
!=
1
))
{
av_reduce
(
&
dw
,
&
dh
,
avctx
->
width
*
avctx
->
sample_aspect_ratio
.
num
,
avctx
->
height
*
avctx
->
sample_aspect_ratio
.
den
,
1024
*
1024
);
ctx
->
init_encode_params
.
darHeight
=
dh
;
ctx
->
init_encode_params
.
darWidth
=
dw
;
}
else
{
ctx
->
init_encode_params
.
darHeight
=
avctx
->
height
;
ctx
->
init_encode_params
.
darWidth
=
avctx
->
width
;
}
dw
=
avctx
->
width
;
dh
=
avctx
->
height
;
if
(
avctx
->
sample_aspect_ratio
.
num
>
0
&&
avctx
->
sample_aspect_ratio
.
den
>
0
)
{
dw
*=
avctx
->
sample_aspect_ratio
.
num
;
dh
*=
avctx
->
sample_aspect_ratio
.
den
;
}
av_reduce
(
&
dw
,
&
dh
,
dw
,
dh
,
1024
*
1024
);
ctx
->
init_encode_params
.
darHeight
=
dh
;
ctx
->
init_encode_params
.
darWidth
=
dw
;
ctx
->
init_encode_params
.
frameRateNum
=
avctx
->
time_base
.
den
;
ctx
->
init_encode_params
.
frameRateDen
=
avctx
->
time_base
.
num
*
avctx
->
ticks_per_frame
;
...
...
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