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
GSoC
GSoC2018
macOS
vlc
Commits
adc787f4
Commit
adc787f4
authored
Feb 10, 2003
by
hartman
Browse files
* fixed the black bar issue with window half/normal/double window sizes in
OSX. i had forgotten the aspectratio.
parent
63464c45
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/vout.m
View file @
adc787f4
...
...
@@ -2,7 +2,7 @@
* vout.m: MacOS X video output plugin
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: vout.m,v 1.2
7
2003/02/0
8
21:
43:2
6 hartman Exp $
* $Id: vout.m,v 1.2
8
2003/02/
1
0 21:
28:1
6 hartman Exp $
*
* Authors: Colin Delacroix <colin@zoy.org>
* Florian G. Pflug <fgp@phlo.org>
...
...
@@ -728,6 +728,7 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
-
(
void
)
scaleWindowWithFactor
:
(
float
)
factor
{
NSSize
newsize
;
int
i_corrected_height
;
NSPoint
topleftbase
;
NSPoint
topleftscreen
;
...
...
@@ -737,8 +738,10 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
topleftbase
.
y
=
[
self
frame
].
size
.
height
;
topleftscreen
=
[
self
convertBaseToScreen
:
topleftbase
];
i_corrected_height
=
p_vout
->
output
.
i_width
*
VOUT_ASPECT_FACTOR
/
p_vout
->
output
.
i_aspect
;
newsize
.
width
=
(
int
)
(
p_vout
->
render
.
i_width
*
factor
);
newsize
.
height
=
(
int
)
(
p_vout
->
render
.
i
_height
*
factor
);
newsize
.
height
=
(
int
)
(
i_corrected
_height
*
factor
);
[
self
setContentSize
:
newsize
];
[
self
setFrameTopLeftPoint
:
topleftscreen
];
...
...
Write
Preview
Supports
Markdown
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