Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8bbb90cc
Commit
8bbb90cc
authored
Dec 06, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOS: fix getVideoViewAtPositionX
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
0f3ee76a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+4
-4
No files found.
modules/gui/macosx/intf.m
View file @
8bbb90cc
...
...
@@ -1581,10 +1581,10 @@ unsigned int CocoaKeyToVLC( unichar i_key )
int
i_y
=
(
int
)
videoRect
.
origin
.
y
;
unsigned
int
i_width
=
(
int
)
videoRect
.
size
.
width
;
unsigned
int
i_height
=
(
int
)
videoRect
.
size
.
height
;
pi_x
=
(
int
*
)
i_x
;
pi_y
=
(
int
*
)
i_y
;
pi_width
=
(
unsigned
int
*
)
i_width
;
pi_height
=
(
unsigned
int
*
)
i_height
;
pi_x
=
&
i_x
;
pi_y
=
&
i_y
;
pi_width
=
&
i_width
;
pi_height
=
&
i_height
;
msg_Dbg
(
VLCIntf
,
"returning videoview with x=%i, y=%i, width=%i, height=%i"
,
i_x
,
i_y
,
i_width
,
i_height
);
return
videoView
;
}
...
...
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