[vlc-commits] macosx: fixed represented file indicator in the vout window

Felix Paul Kühne git at videolan.org
Sun May 1 01:02:12 CEST 2011


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun May  1 01:02:09 2011 +0200| [f7778fd82930bb25f2e991776a5cdf2b671bb95c] | committer: Felix Paul Kühne

macosx: fixed represented file indicator in the vout window

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f7778fd82930bb25f2e991776a5cdf2b671bb95c
---

 modules/gui/macosx/vout.m |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/gui/macosx/vout.m b/modules/gui/macosx/vout.m
index 96d7248..7034bad 100644
--- a/modules/gui/macosx/vout.m
+++ b/modules/gui/macosx/vout.m
@@ -54,6 +54,7 @@
 #include <vlc_vout_window.h>
 #include <vlc_vout_display.h>
 #include <vlc_keys.h>
+#include <vlc_url.h>
 
 #if 0
 
@@ -304,7 +305,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
     if( psz_title )
         o_title = [NSString stringWithUTF8String: psz_title];
 
-    char *psz_uri = input_item_GetURI( p_item );
+    char *psz_uri = decode_URI( input_item_GetURI( p_item ) );
     if( psz_uri )
         o_mrl = [NSMutableString stringWithUTF8String: psz_uri];
 



More information about the vlc-commits mailing list