In my app I init a libvlc object with no arguments. Then I start playback, set the volume to some value and then close my program. Next time I open my program and start the playback, it starts with the same volume I set previous time.
I tried libvlc_audio_set_volume(vlcPlayer, 100) before playback starts, but it doesn't help.
Does libvlc cache volume setting? If it does, how can I disable it?
I use libvlc 2.0.5 under Linux Centos.