]> git.sesse.net Git - vlc/commitdiff
Fix file name representation of the video output window on Mac OS X. (Reviewed by...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Thu, 1 Mar 2007 01:00:07 +0000 (01:00 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Thu, 1 Mar 2007 01:00:07 +0000 (01:00 +0000)
modules/gui/macosx/vout.m

index cb02f25a5c0112311dd09d9f0317fbf0bc2feffa..0dec62aac57066aa0c017ac48da97e94d58c63dd 100644 (file)
@@ -284,16 +284,24 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
 
     if( o_mrl != nil )
     {
-        /* FIXME once psz_access is exported, since that syntax is no longer valid */
-#if 0
-        if( p_input->input.p_access && !strcmp( p_input->input.p_access->p_module->psz_shortname, "File" ) )
-        {
-            NSRange prefix_range = [o_mrl rangeOfString: @"file:"];
-            if( prefix_range.location != NSNotFound )
-                [o_mrl deleteCharactersInRange: prefix_range];
+        /* FIXME once psz_access is exported, we could check if we are
+         * reading from a file in a smarter way. */
+
+        NSRange prefix_range = [o_mrl rangeOfString: @"file:"];
+        if( prefix_range.location != NSNotFound )
+            [o_mrl deleteCharactersInRange: prefix_range];
+
+        if( [o_mrl characterAtIndex:0] == '/' )
+        { 
+            /* it's a local file */
             [o_window setRepresentedFilename: o_mrl];
         }
-#endif
+        else
+        {
+            /* it's from the network or somewhere else,
+             * we clear the previous path */
+            [o_window setRepresentedFilename: @""];
+        }
         [o_window setTitle: o_title];
     }
     else