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
b94083f5
Commit
b94083f5
authored
Jul 05, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: o_sendport not used, remove.
parent
b9e88f07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+0
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+0
-7
No files found.
modules/gui/macosx/intf.h
View file @
b94083f5
...
...
@@ -66,7 +66,6 @@ unsigned int CocoaKeyToVLC( unichar i_key );
struct
intf_sys_t
{
NSAutoreleasePool
*
o_pool
;
NSPort
*
o_sendport
;
/* the current input */
input_thread_t
*
p_input
;
...
...
modules/gui/macosx/intf.m
View file @
b94083f5
...
...
@@ -105,7 +105,6 @@ int OpenIntf ( vlc_object_t *p_this )
p_intf
->
p_sys
->
o_pool
=
[[
NSAutoreleasePool
alloc
]
init
];
p_intf
->
p_sys
->
o_sendport
=
[[
NSPort
port
]
retain
];
p_intf
->
p_sys
->
p_sub
=
msg_Subscribe
(
p_intf
);
p_intf
->
pf_run
=
Run
;
p_intf
->
b_should_run_on_first_thread
=
true
;
...
...
@@ -124,7 +123,6 @@ void CloseIntf ( vlc_object_t *p_this )
msg_Unsubscribe
(
p_intf
,
p_intf
->
p_sys
->
p_sub
);
[
p_intf
->
p_sys
->
o_sendport
release
];
[
p_intf
->
p_sys
->
o_pool
release
];
free
(
p_intf
->
p_sys
);
...
...
@@ -706,11 +704,6 @@ static VLCMain *_o_sharedMainInstance = nil;
o_msg_lock
=
[[
NSLock
alloc
]
init
];
o_msg_arr
=
[[
NSMutableArray
arrayWithCapacity
:
200
]
retain
];
[
p_intf
->
p_sys
->
o_sendport
setDelegate
:
self
];
[[
NSRunLoop
currentRunLoop
]
addPort:
p_intf
->
p_sys
->
o_sendport
forMode:
NSDefaultRunLoopMode
];
/* FIXME: don't poll */
interfaceTimer
=
[[
NSTimer
scheduledTimerWithTimeInterval
:
0
.
5
target:
self
selector
:
@selector
(
manageIntf
:)
...
...
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