Commit 77ae11cf authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: remove references to VLCIntf from the EyeTV class to work-around libvlc crashes

refs #4734
parent 929f2db2
/***************************************************************************** /*****************************************************************************
* eyetv.m: small class to control the notification parts of the EyeTV plugin * eyetv.m: small class to control the notification parts of the EyeTV plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2006-2007 the VideoLAN team * Copyright (C) 2006-2011 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Felix Kühne <fkuehne at videolan dot org> * Authors: Felix Kühne <fkuehne at videolan dot org>
...@@ -57,8 +57,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -57,8 +57,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
- (void)globalNotificationReceived: (NSNotification *)theNotification - (void)globalNotificationReceived: (NSNotification *)theNotification
{ {
msg_Dbg( VLCIntf, "notification received in VLC with name %s and object %s", NSLog( @"notification received in VLC with name %@ and object %@", [theNotification name], [theNotification object] );
[[theNotification name] UTF8String], [[theNotification object] UTF8String] );
/* update our info on the used device */ /* update our info on the used device */
if( [[theNotification name] isEqualToString: @"DeviceAdded"] ) if( [[theNotification name] isEqualToString: @"DeviceAdded"] )
...@@ -95,7 +94,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -95,7 +94,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if( nil == descriptor ) if( nil == descriptor )
{ {
NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage]; 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]; [script release];
} }
...@@ -110,7 +109,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -110,7 +109,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if( nil == descriptor ) if( nil == descriptor )
{ {
NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage]; 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 else
{ {
...@@ -134,7 +133,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -134,7 +133,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
"channel_up\n" "channel_up\n"
"get current channel\n" "get current channel\n"
"end tell"]; "end tell"];
msg_Dbg( VLCIntf, "telling eyetv to switch 1 channel up" ); NSLog( @"telling eyetv to switch 1 channel up" );
} }
else else
{ {
...@@ -143,14 +142,14 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -143,14 +142,14 @@ static VLCEyeTVController *_o_sharedInstance = nil;
"channel_down\n" "channel_down\n"
"get current channel\n" "get current channel\n"
"end tell"]; "end tell"];
msg_Dbg( VLCIntf, "telling eyetv to switch 1 channel down" ); NSLog( @"telling eyetv to switch 1 channel down" );
} }
descriptor = [script executeAndReturnError:&errorDict]; descriptor = [script executeAndReturnError:&errorDict];
if( nil == descriptor ) if( nil == descriptor )
{ {
NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage]; 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 else
{ {
...@@ -203,7 +202,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -203,7 +202,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if( nil == descriptor ) if( nil == descriptor )
{ {
NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage]; 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]; [script release];
} }
...@@ -218,7 +217,7 @@ static VLCEyeTVController *_o_sharedInstance = nil; ...@@ -218,7 +217,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
if( nil == descriptor ) if( nil == descriptor )
{ {
NSString *errorString = [errorDict objectForKey:NSAppleScriptErrorMessage]; 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 else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment