[vlc-devel] commit: Remove deadcode. (Jean-Paul Saman )
git version control
git at videolan.org
Sat Jun 14 16:18:25 CEST 2008
vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Sat Jun 14 11:16:38 2008 +0200| [ef5b823d8102ea89d27a53705a9cc7cbace6b352]
Remove deadcode.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ef5b823d8102ea89d27a53705a9cc7cbace6b352
---
projects/mozilla/vlcplugin.cpp | 33 ---------------------------------
1 files changed, 0 insertions(+), 33 deletions(-)
diff --git a/projects/mozilla/vlcplugin.cpp b/projects/mozilla/vlcplugin.cpp
index 1dc9df9..65d090a 100644
--- a/projects/mozilla/vlcplugin.cpp
+++ b/projects/mozilla/vlcplugin.cpp
@@ -234,39 +234,6 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
return NPERR_NO_ERROR;
}
-#if 0
-#ifdef XP_WIN
-/* This is really ugly but there is a deadlock when stopping a stream
- * (in VLC_CleanUp()) because the video output is a child of the drawable but
- * is in a different thread. */
-static void HackStopVout( VlcPlugin* p_plugin )
-{
- MSG msg;
- HWND hwnd;
- vlc_value_t value;
-
- int i_vlc = libvlc_get_vlc_id(p_plugin->libvlc_instance);
- VLC_VariableGet( i_vlc, "drawable", &value );
-
- hwnd = FindWindowEx( (HWND)value.i_int, 0, 0, 0 );
- if( !hwnd ) return;
-
- PostMessage( hwnd, WM_CLOSE, 0, 0 );
-
- do
- {
- while( PeekMessage( &msg, (HWND)value.i_int, 0, 0, PM_REMOVE ) )
- {
- TranslateMessage(&msg);
- DispatchMessage(&msg);
- }
- if( FindWindowEx( (HWND)value.i_int, 0, 0, 0 ) ) Sleep( 10 );
- }
- while( (hwnd = FindWindowEx( (HWND)value.i_int, 0, 0, 0 )) );
-}
-#endif /* XP_WIN */
-#endif
-
VlcPlugin::~VlcPlugin()
{
delete psz_baseURL;
More information about the vlc-devel
mailing list