]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/applescript.m
Added a RTP (New) stream outpu method for the rtp sout module. Still lot of work...
[vlc] / modules / gui / macosx / applescript.m
index 94f3651631dea42de6aecd9538d0763cd6d07258..af3fbba64102e045a29d4c90846ef3b71acc4f2f 100644 (file)
@@ -2,7 +2,7 @@
  * applescript.m: MacOS X AppleScript support
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: applescript.m,v 1.6 2004/01/20 15:34:43 hartman Exp $
+ * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  *
@@ -41,7 +41,7 @@
 
     if ( [o_command isEqualToString:@"GetURL"] || [o_command isEqualToString:@"OpenURL"] )
     {
-        intf_thread_t * p_intf = [NSApp getIntf];
+        intf_thread_t * p_intf = VLCIntf;
         playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                                         FIND_ANYWHERE );
         if( p_playlist == NULL )
         {
             NSURL * o_url;
     
-            int i_mode = PLAYLIST_INSERT;
-            
             playlist_Add( p_playlist, [o_urlString fileSystemRepresentation],
-                          [[o_urlString fileSystemRepresentation] lastPathComponent],
-                          i_mode, PLAYLIST_END );
+                          [[[NSFileManager defaultManager] displayNameAtPath: o_urlString] UTF8String],
+                          PLAYLIST_INSERT, PLAYLIST_END );
 
             o_url = [NSURL fileURLWithPath: o_urlString];
             if( o_url != nil )
@@ -86,7 +84,7 @@
 - (id)performDefaultImplementation {
     NSString *o_command = [[self commandDescription] commandName];
 
-    intf_thread_t * p_intf = [NSApp getIntf];
+    intf_thread_t * p_intf = VLCIntf;
     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                                     FIND_ANYWHERE );
     if( p_playlist == NULL )