Commit 6546505c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

WinCE: volume through playlist

parent 8c1d79e1
......@@ -788,7 +788,9 @@ void Interface::OnChange( int wp )
void Interface::VolumeChange( int i_volume )
{
aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
playlist_t * p_playlist = pl_Hold( p_intf );
aout_VolumeSet( p_playlist, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
pl_Release( p_intf );
}
void Interface::VolumeUpdate()
......@@ -797,7 +799,9 @@ void Interface::VolumeUpdate()
if( b_volume_hold ) return;
playlist_t * p_playlist = pl_Hold( p_intf );
aout_VolumeGet( p_intf, &i_volume );
pl_Release( p_intf );
int i_volume_ctrl = 200 - i_volume * 200 * 2 / AOUT_VOLUME_MAX;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment