Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
0f233f49
Commit
0f233f49
authored
Sep 07, 2012
by
Ilkka Ollakka
Browse files
swscale: pass/calculate sar-info, should fix #7437
parent
b6688f49
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/video_filter/croppadd.c
View file @
0f233f49
...
...
@@ -190,6 +190,9 @@ static int OpenFilter( vlc_object_t *p_this )
p_filter
->
fmt_out
.
video
.
i_width
,
p_filter
->
fmt_out
.
video
.
i_height
);
p_filter
->
fmt_out
.
video
.
i_sar_num
=
p_filter
->
fmt_in
.
video
.
i_sar_num
*
p_filter
->
fmt_out
.
video
.
i_visible_height
;
p_filter
->
fmt_out
.
video
.
i_sar_den
=
p_filter
->
fmt_in
.
video
.
i_sar_den
*
p_filter
->
fmt_out
.
video
.
i_visible_width
;
return
VLC_SUCCESS
;
}
...
...
modules/video_filter/swscale.c
View file @
0f233f49
...
...
@@ -207,6 +207,9 @@ static int OpenScaler( vlc_object_t *p_this )
(
char
*
)
&
p_filter
->
fmt_out
.
video
.
i_chroma
,
ppsz_mode_descriptions
[
i_sws_mode
]
);
p_filter
->
fmt_out
.
video
.
i_sar_num
=
p_filter
->
fmt_in
.
video
.
i_sar_num
;
p_filter
->
fmt_out
.
video
.
i_sar_den
=
p_filter
->
fmt_in
.
video
.
i_sar_den
;
return
VLC_SUCCESS
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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