[vlc-devel] commit: Trivial OSX compile fix ( Rémi Denis-Courmont )

git version control git at videolan.org
Mon Feb 15 20:35:35 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Feb 15 21:35:24 2010 +0200| [efd65b0b03ae8d6317d4cd6443ecc2f05728862a] | committer: Rémi Denis-Courmont 

Trivial OSX compile fix

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

 projects/mozilla/vlcshell.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/projects/mozilla/vlcshell.cpp b/projects/mozilla/vlcshell.cpp
index cd3efa8..bff669d 100644
--- a/projects/mozilla/vlcshell.cpp
+++ b/projects/mozilla/vlcshell.cpp
@@ -199,20 +199,20 @@ int16 NPP_HandleEvent( NPP instance, void * event )
 
                 if( p_plugin->playlist_isplaying() )
                 {
-                    hasVout = p_plugin->player_has_vout(NULL);
+                    hasVout = p_plugin->player_has_vout();
+#if 0
                     if( hasVout )
                     {
-#ifdef NOT_WORKING
                         libvlc_rectangle_t area;
                         area.left = 0;
                         area.top = 0;
                         area.right = npwindow.width;
                         area.bottom = npwindow.height;
                         libvlc_video_redraw_rectangle(p_plugin->getMD(), &area, NULL);
+                    }
 #else
 #warning disabled code
 #endif
-                    }
                 }
 
                 if( ! hasVout )




More information about the vlc-devel mailing list