[vlc-commits] activex: fix pause method

Daniel Amm git at videolan.org
Mon Jul 27 11:02:31 CEST 2015


npapi-vlc | branch: master | Daniel Amm <da2424 at t-online.de> | Thu Jul 23 18:01:48 2015 +0200| [6770604329ced0c6ec5c2e2160cb80f939a2bc00] | committer: Hugo Beauzée-Luyssen

activex: fix pause method

Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

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

 activex/vlccontrol2.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/activex/vlccontrol2.cpp b/activex/vlccontrol2.cpp
index e4f683d..e85aec1 100644
--- a/activex/vlccontrol2.cpp
+++ b/activex/vlccontrol2.cpp
@@ -930,7 +930,7 @@ STDMETHODIMP VLCPlaylist::playItem(long item)
 
 STDMETHODIMP VLCPlaylist::pause()
 {
-    _plug->get_player().mlp().pause();
+    _plug->get_player().get_mp().setPause( true );
     return S_OK;
 }
 



More information about the vlc-commits mailing list