Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
8fe16309
Commit
8fe16309
authored
May 22, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fix crash when trying to use the video menu
parent
8018c67d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
91 additions
and
74 deletions
+91
-74
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+91
-74
No files found.
modules/gui/macosx/controls.m
View file @
8fe16309
...
...
@@ -423,12 +423,17 @@
-
(
IBAction
)
showPosition
:
(
id
)
sender
{
vout_thread_t
*
p_vout
=
input_GetVout
(
pl_CurrentInput
(
VLCIntf
));
input_thread_t
*
p_input
=
pl_CurrentInput
(
VLCIntf
);
if
(
p_input
!=
NULL
)
{
vout_thread_t
*
p_vout
=
input_GetVout
(
p_input
);
if
(
p_vout
!=
NULL
)
{
var_SetInteger
(
VLCIntf
->
p_libvlc
,
"key-action"
,
ACTIONID_POSITION
);
vlc_object_release
(
(
vlc_object_t
*
)
p_vout
);
}
vlc_object_release
(
p_input
);
}
}
-
(
IBAction
)
toogleFullscreen
:(
id
)
sender
{
...
...
@@ -448,8 +453,11 @@
-
(
IBAction
)
windowAction
:(
id
)
sender
{
NSString
*
o_title
=
[
sender
title
];
input_thread_t
*
p_input
=
pl_CurrentInput
(
VLCIntf
);
vout_thread_t
*
p_vout
=
input_GetVout
(
pl_CurrentInput
(
VLCIntf
));
if
(
p_input
!=
NULL
)
{
vout_thread_t
*
p_vout
=
input_GetVout
(
p_input
);
if
(
p_vout
!=
NULL
)
{
id
o_vout_view
=
[
self
voutView
];
...
...
@@ -495,7 +503,8 @@
pl_Release
(
VLCIntf
);
}
vlc_object_release
(
p_input
);
}
}
-
(
IBAction
)
telxTransparent
:(
id
)
sender
...
...
@@ -612,7 +621,10 @@
if
(
key
)
{
vout_thread_t
*
p_vout
=
input_GetVout
(
pl_CurrentInput
(
VLCIntf
));
input_thread_t
*
p_input
=
pl_CurrentInput
(
VLCIntf
);
if
(
p_input
!=
NULL
)
{
vout_thread_t
*
p_vout
=
input_GetVout
(
p_input
);
if
(
p_vout
!=
NULL
)
{
...
...
@@ -633,6 +645,8 @@
}
vlc_object_release
(
(
vlc_object_t
*
)
p_vout
);
}
vlc_object_release
(
p_input
);
}
}
return
eventHandled
;
}
...
...
@@ -986,9 +1000,8 @@
else
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Previous"
)]
||
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Next"
)]
)
{
/** \todo fix i_size use */
PL_LOCK
;
bEnabled
=
p
_playlist
->
items
.
i_size
>
1
;
bEnabled
=
p
laylist_CurrentSize
(
p_playlist
)
>
1
;
PL_UNLOCK
;
}
else
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Random"
)]
)
...
...
@@ -1041,7 +1054,9 @@
NSEnumerator
*
o_enumerator
=
[
o_windows
objectEnumerator
];
bEnabled
=
FALSE
;
vout_thread_t
*
p_vout
=
input_GetVout
(
pl_CurrentInput
(
VLCIntf
));
if
(
p_input
!=
NULL
)
{
vout_thread_t
*
p_vout
=
input_GetVout
(
p_input
);
if
(
p_vout
!=
NULL
)
{
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Float on Top"
)]
)
...
...
@@ -1063,6 +1078,8 @@
vlc_object_release
(
(
vlc_object_t
*
)
p_vout
);
}
vlc_object_release
(
p_input
);
}
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Fullscreen"
)]
)
{
var_Get
(
p_playlist
,
"fullscreen"
,
&
val
);
...
...
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