[vlc-commits] [Git][videolan/npapi-vlc][master] Bump vlcpp submodule
    Steve Lhomme (@robUx4) 
    gitlab at videolan.org
       
    Wed Dec 14 17:15:18 UTC 2022
    
    
  
Steve Lhomme pushed to branch master at VideoLAN / VLC Browser Plugins
Commits:
ac609b08 by Steve Lhomme at 2022-12-14T18:14:06+01:00
Bump vlcpp submodule
Use new audio channel API in 4.0
- - - - -
3 changed files:
- .gitlab-ci.yml
- activex/vlccontrol2.cpp
- vlcpp
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -1,7 +1,7 @@
 variables:
   GIT_SUBMODULE_STRATEGY: normal
-  WIN32_IMAGE: registry.videolan.org/medialibrary-win32:20220728090852
-  WIN64_IMAGE: registry.videolan.org/medialibrary-win64:20220728080707
+  WIN32_IMAGE: registry.videolan.org/medialibrary-win32:20221214164726
+  WIN64_IMAGE: registry.videolan.org/medialibrary-win64:20221214163635
   PKG_CONFIG_LIBDIR: /prefix/lib/pkgconfig
 
 .common_build:
=====================================
activex/vlccontrol2.cpp
=====================================
@@ -533,14 +533,14 @@ STDMETHODIMP VLCAudio::get_channel(long *channel)
     if( NULL == channel )
         return E_POINTER;
 
-    *channel = _plug->get_player().get_mp().channel();
+    *channel = (int)_plug->get_player().get_mp().stereoMode();
 
     return S_OK;
 }
 
 STDMETHODIMP VLCAudio::put_channel(long channel)
 {
-    _plug->get_player().get_mp().setChannel( channel );
+    _plug->get_player().get_mp().setStereoMode( (libvlc_audio_output_stereomode_t) channel );
 
     return S_OK;
 }
=====================================
vlcpp
=====================================
@@ -1 +1 @@
-Subproject commit d077d7e9ac3810b4adda123e1d8156bbcd3793b5
+Subproject commit 0116906d78ef4d8a02c38ff51e83cfb48923a017
View it on GitLab: https://code.videolan.org/videolan/npapi-vlc/-/commit/ac609b08a0fc865d420367496a3d686bef88f71a
-- 
View it on GitLab: https://code.videolan.org/videolan/npapi-vlc/-/commit/ac609b08a0fc865d420367496a3d686bef88f71a
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
    
    
More information about the vlc-commits
mailing list