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
da4abb05
Commit
da4abb05
authored
Jun 14, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove unused Objc memory pool
parent
503c860a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+0
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+0
-4
No files found.
modules/gui/macosx/intf.h
View file @
da4abb05
...
@@ -59,8 +59,6 @@ unsigned int CocoaKeyToVLC( unichar i_key );
...
@@ -59,8 +59,6 @@ unsigned int CocoaKeyToVLC( unichar i_key );
*****************************************************************************/
*****************************************************************************/
struct
intf_sys_t
struct
intf_sys_t
{
{
NSAutoreleasePool
*
o_pool
;
/* special actions */
/* special actions */
bool
b_mute
;
bool
b_mute
;
int
i_play_status
;
int
i_play_status
;
...
...
modules/gui/macosx/intf.m
View file @
da4abb05
...
@@ -90,8 +90,6 @@ int OpenIntf ( vlc_object_t *p_this )
...
@@ -90,8 +90,6 @@ int OpenIntf ( vlc_object_t *p_this )
memset
(
p_intf
->
p_sys
,
0
,
sizeof
(
*
p_intf
->
p_sys
)
);
memset
(
p_intf
->
p_sys
,
0
,
sizeof
(
*
p_intf
->
p_sys
)
);
p_intf
->
p_sys
->
o_pool
=
[[
NSAutoreleasePool
alloc
]
init
];
/* subscribe to LibVLCCore's messages */
/* subscribe to LibVLCCore's messages */
p_intf
->
p_sys
->
p_sub
=
msg_Subscribe
(
p_intf
->
p_libvlc
,
MsgCallback
,
NULL
);
p_intf
->
p_sys
->
p_sub
=
msg_Subscribe
(
p_intf
->
p_libvlc
,
MsgCallback
,
NULL
);
p_intf
->
pf_run
=
Run
;
p_intf
->
pf_run
=
Run
;
...
@@ -107,8 +105,6 @@ void CloseIntf ( vlc_object_t *p_this )
...
@@ -107,8 +105,6 @@ void CloseIntf ( vlc_object_t *p_this )
{
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
[
p_intf
->
p_sys
->
o_pool
release
];
free
(
p_intf
->
p_sys
);
free
(
p_intf
->
p_sys
);
}
}
...
...
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