[vlc-commits] commit: activex: our vlc instance should already have been initialized ( Jean-Paul Saman )
git at videolan.org
git at videolan.org
Thu Mar 18 11:19:16 CET 2010
vlc | branch: master | Jean-Paul Saman <jean-paul.saman at m2x.nl> | Mon Mar 15 13:18:27 2010 +0100| [18fe2d12cc005cdfbbe6a4761ad5bd5e0648d5c3] | committer: Jean-Paul Saman
activex: our vlc instance should already have been initialized
Signed-off-by: Jean-Paul Saman <jean-paul.saman at m2x.nl>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=18fe2d12cc005cdfbbe6a4761ad5bd5e0648d5c3
---
projects/activex/plugin.h | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/projects/activex/plugin.h b/projects/activex/plugin.h
index 9c10032..412bdce 100644
--- a/projects/activex/plugin.h
+++ b/projects/activex/plugin.h
@@ -301,15 +301,11 @@ public:
}
void playlist_play()
{
- if( !_p_libvlc )
- initVLC();
if( _p_mplayer || playlist_select(0) )
libvlc_media_player_play(_p_mplayer);
}
void playlist_play_item(int idx)
{
- if( !_p_libvlc )
- initVLC();
if( playlist_select(idx) )
libvlc_media_player_play(_p_mplayer);
}
More information about the vlc-commits
mailing list