Skip to content
Snippets Groups Projects
Commit ac609b08 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

Bump vlcpp submodule

Use new audio channel API in 4.0
parent 4cd70f5f
No related branches found
No related tags found
1 merge request!21Bump vlcpp submodule
Pipeline #293155 passed with stage
in 30 seconds
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:
......
......@@ -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;
}
......
Subproject commit d077d7e9ac3810b4adda123e1d8156bbcd3793b5
Subproject commit 0116906d78ef4d8a02c38ff51e83cfb48923a017
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment