Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
e97f5fe6
Commit
e97f5fe6
authored
May 22, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove references to VLCIntf from the EyeTV class to work-around libvlc crashes
parent
68bca364
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
modules/gui/macosx/eyetv.m
modules/gui/macosx/eyetv.m
+9
-9
No files found.
modules/gui/macosx/eyetv.m
View file @
e97f5fe6
/*****************************************************************************
* eyetv.m: small class to control the notification parts of the EyeTV plugin
*****************************************************************************
* Copyright (C) 2006-20
07
the VideoLAN team
* Copyright (C) 2006-20
11
the VideoLAN team
* $Id$
*
* Authors: Felix Kühne <fkuehne at videolan dot org>
...
...
@@ -89,7 +89,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if
(
nil
==
descriptor
)
{
NSString
*
errorString
=
[
errorDict
objectForKey
:
NSAppleScriptErrorMessage
];
msg_Err
(
VLCIntf
,
"opening EyeTV failed with error status '%s'"
,
[
errorString
UTF8String
]
);
NSLog
(
@"opening EyeTV failed with error status '%@'"
,
errorString
);
}
[
script
release
];
}
...
...
@@ -104,7 +104,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if
(
nil
==
descriptor
)
{
NSString
*
errorString
=
[
errorDict
objectForKey
:
NSAppleScriptErrorMessage
];
msg_Err
(
VLCIntf
,
"EyeTV channel inventory failed with error status '%s'"
,
[
errorString
UTF8String
]
);
NSLog
(
@"EyeTV channel inventory failed with error status '%@'"
,
errorString
);
}
else
{
...
...
@@ -128,7 +128,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
"channel_up
\n
"
"get current channel
\n
"
"end tell"
];
msg_Dbg
(
VLCIntf
,
"telling eyetv to switch 1 channel up"
);
NSLog
(
@
"telling eyetv to switch 1 channel up"
);
}
else
{
...
...
@@ -137,14 +137,14 @@ static VLCEyeTVController *_o_sharedInstance = nil;
"channel_down
\n
"
"get current channel
\n
"
"end tell"
];
msg_Dbg
(
VLCIntf
,
"telling eyetv to switch 1 channel down"
);
NSLog
(
@
"telling eyetv to switch 1 channel down"
);
}
descriptor
=
[
script
executeAndReturnError
:
&
errorDict
];
if
(
nil
==
descriptor
)
{
NSString
*
errorString
=
[
errorDict
objectForKey
:
NSAppleScriptErrorMessage
];
msg_Err
(
VLCIntf
,
"EyeTV channel change failed with error status '%s'"
,
[
errorString
UTF8String
]
);
NSLog
(
@"EyeTV channel change failed with error status '%@'"
,
errorString
);
}
else
{
...
...
@@ -197,7 +197,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if
(
nil
==
descriptor
)
{
NSString
*
errorString
=
[
errorDict
objectForKey
:
NSAppleScriptErrorMessage
];
msg_Err
(
VLCIntf
,
"EyeTV source change failed with error status '%s'"
,
[
errorString
UTF8String
]
);
NSLog
(
@"EyeTV source change failed with error status '%@'"
,
errorString
);
}
[
script
release
];
}
...
...
@@ -212,7 +212,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if
(
nil
==
descriptor
)
{
NSString
*
errorString
=
[
errorDict
objectForKey
:
NSAppleScriptErrorMessage
];
msg_Err
(
VLCIntf
,
"EyeTV channel inventory failed with error status '%s'"
,
[
errorString
UTF8String
]
);
NSLog
(
@"EyeTV channel inventory failed with error status '%@'"
,
errorString
);
}
else
{
...
...
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