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
0f395d9f
Commit
0f395d9f
authored
Mar 18, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: use vlc_LogSet()
parent
70d9e0fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+0
-3
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
No files found.
modules/gui/macosx/intf.h
View file @
0f395d9f
...
...
@@ -67,9 +67,6 @@ struct intf_sys_t
bool
b_input_update
;
bool
b_aout_update
;
bool
b_vout_update
;
/* The messages window */
msg_subscription_t
sub
;
};
/*****************************************************************************
...
...
modules/gui/macosx/intf.m
View file @
0f395d9f
...
...
@@ -115,7 +115,7 @@ int OpenIntf (vlc_object_t *p_this)
memset
(
p_intf
->
p_sys
,
0
,
sizeof
(
*
p_intf
->
p_sys
));
/* subscribe to LibVLCCore's messages */
vlc_
Subscribe
(
&
p_intf
->
p_sys
->
sub
,
MsgCallback
,
NULL
);
vlc_
LogSet
(
p_this
->
p_libvlc
,
MsgCallback
,
NULL
);
Run
(
p_intf
);
...
...
@@ -890,7 +890,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[
o_eyetv
release
];
/* unsubscribe from libvlc's debug messages */
vlc_
Unsubscribe
(
&
p_intf
->
p_sys
->
sub
);
vlc_
LogSet
(
p_intf
->
p_libvlc
,
NULL
,
NULL
);
[
o_msg_arr
removeAllObjects
];
[
o_msg_arr
release
];
...
...
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