Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC Browser Plugins
Manage
Activity
Members
Labels
Plan
Issues
26
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC Browser Plugins
Commits
ac609b08
Commit
ac609b08
authored
2 years ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
Bump vlcpp submodule
Use new audio channel API in 4.0
parent
4cd70f5f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!21
Bump vlcpp submodule
Pipeline
#293155
passed with stage
in 30 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
activex/vlccontrol2.cpp
+2
-2
2 additions, 2 deletions
activex/vlccontrol2.cpp
vlcpp
+1
-1
1 addition, 1 deletion
vlcpp
with
5 additions
and
5 deletions
.gitlab-ci.yml
+
2
−
2
View file @
ac609b08
variables
:
GIT_SUBMODULE_STRATEGY
:
normal
WIN32_IMAGE
:
registry.videolan.org/medialibrary-win32:2022
0728090852
WIN64_IMAGE
:
registry.videolan.org/medialibrary-win64:2022
0728080707
WIN32_IMAGE
:
registry.videolan.org/medialibrary-win32:2022
1214164726
WIN64_IMAGE
:
registry.videolan.org/medialibrary-win64:2022
1214163635
PKG_CONFIG_LIBDIR
:
/prefix/lib/pkgconfig
.common_build
:
...
...
This diff is collapsed.
Click to expand it.
activex/vlccontrol2.cpp
+
2
−
2
View file @
ac609b08
...
...
@@ -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
().
set
Channel
(
channel
);
_plug
->
get_player
().
get_mp
().
set
StereoMode
(
(
libvlc_audio_output_stereomode_t
)
channel
);
return
S_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
vlcpp
@
0116906d
Compare
d077d7e9
...
0116906d
Subproject commit
d077d7e9ac3810b4adda123e1d8156bbcd3793b5
Subproject commit
0116906d78ef4d8a02c38ff51e83cfb48923a017
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment