Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
a7e63895
Commit
a7e63895
authored
Nov 05, 2004
by
gbazin
Browse files
* modules/codec/ffmpeg/encoder.c: stupid rounding error in aspect ratio calculation.
parent
0bec3687
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/codec/ffmpeg/encoder.c
View file @
a7e63895
...
...
@@ -351,9 +351,8 @@ int E_(OpenEncoder)( vlc_object_t *p_this )
VOUT_ASPECT_FACTOR
,
1
<<
30
/* something big */
);
av_reduce
(
&
p_context
->
sample_aspect_ratio
.
num
,
&
p_context
->
sample_aspect_ratio
.
den
,
i_aspect_num
*
(
int64_t
)
p_context
->
height
/
p_context
->
width
,
i_aspect_den
,
1
<<
30
/* something big */
);
i_aspect_num
*
(
int64_t
)
p_context
->
height
,
i_aspect_den
*
p_context
->
width
,
1
<<
30
);
#else
p_context
->
aspect_ratio
=
((
float
)
p_enc
->
fmt_in
.
video
.
i_aspect
)
/
VOUT_ASPECT_FACTOR
;
...
...
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