<div dir="ltr"><span style="font-size:13px">Hello. </span><div style="font-size:13px"><br></div><div style="font-size:13px">I was using old versions of VLS until yesterday and i'm upgraded my libvlc version to 2.2.0</div><div style="font-size:13px"><br></div><div style="font-size:13px">Im facing equalizer problems</div><div style="font-size:13px"><br></div><div style="font-size:13px">(Note: Below codes working good on 3.0.0 nightly building without any code change. So I mean my code has no problem. 2.2.0 has a problem)</div><div style="font-size:13px"><br></div><div style="font-size:13px">sound doesn't affected by equalizer.</div><div style="font-size:13px"><br></div><div style="font-size:13px">my codes.</div><div style="font-size:13px"><br></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><DllImport("libvlc",CallingConvention:=CallinConvention.Cdecl)> _</span><br></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">Public Shared Function libvlc_audio_equalizer_new() as Intptr</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><DllImport("libvlc",CallingConvention:=CallinConvention.Cdecl)> _</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">Public Shared Function libvlc_audio_equalizer_set_amp_at_index( Byval equalizer as IntPtr, f_amp as Single, u_band as Integer) As Integer</span><br></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">dim equal as Intptr = libvlc_audio_equalizer_new()</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.2F,0)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,0F,1)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,-5.1F,2)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.0F,3)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,-10.2F,4)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,-20.0F,5)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.2F,6)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.2F,7)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.2F,8)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_set_amp_at_index(equal,10.2F,9)</span><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br style="padding:0px;margin:0px;color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_media_player_set_equalizer(PlayerHandle,equal)</span><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div style="font-size:13px">and then<span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div style="font-size:13px"><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div style="font-size:13px"><div><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px">libvlc_audio_equalizer_get_amp_at_index(equal,0)</span><br></div><div><span style="color:rgb(46,139,87);font-family:Monaco,'Andale Mono','Courier New',Courier,mono;font-size:12px;line-height:15.210000038147px"><br></span></div><div>When i use this code its return true value which i set before.</div><div>what can i do? </div></div></div>