[vlc-commits] commit: All other Interfaces already moved on.Only my oldrc was left :) ( Pankaj Yadav )

git at videolan.org git at videolan.org
Sat Jul 17 15:35:13 CEST 2010


vlc/vlc-1.1 | branch: master | Pankaj Yadav <pankajdnapster at gmail.com> | Sun Jul 18 10:05:29 2010 +0530| [7726c2e3d7c30211a8ec2269ff9cb6851fb16733] | committer: Rémi Denis-Courmont 

All other Interfaces already moved on.Only my oldrc was left :)

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
(cherry picked from commit e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=7726c2e3d7c30211a8ec2269ff9cb6851fb16733
---

 modules/control/rc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/control/rc.c b/modules/control/rc.c
index c8c93c5..386040e 100644
--- a/modules/control/rc.c
+++ b/modules/control/rc.c
@@ -1549,12 +1549,12 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd,
 
     if ( !strcmp(psz_cmd, "volup") )
     {
-        if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 )
+        if ( aout_VolumeUp( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 )
             i_error = VLC_EGENERIC;
     }
     else
     {
-        if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 )
+        if ( aout_VolumeDown( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 )
             i_error = VLC_EGENERIC;
     }
     osd_Volume( p_this );



More information about the vlc-commits mailing list