Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
bb20070a
Commit
bb20070a
authored
Mar 11, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx vout: also do crop if macosx-video-autoresize is false
parent
3aae0170
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/video_output/macosx.m
modules/video_output/macosx.m
+2
-4
No files found.
modules/video_output/macosx.m
View file @
bb20070a
...
...
@@ -340,9 +340,6 @@ static int Control (vout_display_t *vd, int query, va_list ap)
if
(
!
vd
->
sys
)
return
VLC_EGENERIC
;
if
(
!
config_GetInt
(
vd
,
"macosx-video-autoresize"
))
return
VLC_SUCCESS
;
NSAutoreleasePool
*
o_pool
=
[[
NSAutoreleasePool
alloc
]
init
];
NSPoint
topleftbase
;
NSPoint
topleftscreen
;
...
...
@@ -421,7 +418,8 @@ static int Control (vout_display_t *vd, int query, va_list ap)
// is needed in the case we do not an actual resize
[
sys
->
glView
performSelectorOnMainThread
:
@selector
(
reshapeView
:)
withObject
:
nil
waitUntilDone
:
NO
];
if
(
i_height
!=
glViewFrame
.
size
.
height
||
i_width
!=
glViewFrame
.
size
.
width
)
if
(
config_GetInt
(
vd
,
"macosx-video-autoresize"
)
&&
query
==
VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
&&
(
i_height
!=
glViewFrame
.
size
.
height
||
i_width
!=
glViewFrame
.
size
.
width
))
{
new_frame
.
size
.
width
=
windowFrame
.
size
.
width
-
glViewFrame
.
size
.
width
+
i_width
;
new_frame
.
size
.
height
=
windowFrame
.
size
.
height
-
glViewFrame
.
size
.
height
+
i_height
;
...
...
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