]> git.sesse.net Git - vlc/blobdiff - modules/control/lirc/lirc.c
Added support for volume up/down buttons.
[vlc] / modules / control / lirc / lirc.c
index a5014603bf74867302c2b3520c83fe083f827afd..48ed7f49ef60fbe4eb31b582204ef0a276ea46fe 100644 (file)
@@ -2,7 +2,7 @@
  * lirc.c : lirc plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: lirc.c,v 1.3 2003/01/12 15:38:35 sigmunau Exp $
+ * $Id: lirc.c,v 1.4 2003/02/16 10:25:57 sigmunau Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -32,6 +32,7 @@
 #include <vlc/vlc.h>
 #include <vlc/intf.h>
 #include <vlc/vout.h>
+#include <vlc/aout.h>
 
 #include <lirc/lirc_client.h>
 
@@ -169,7 +170,14 @@ static void Run( intf_thread_t *p_intf )
                 p_intf->p_vlc->b_die = VLC_TRUE;
                 continue;
             }
-
+            if( !strcmp( c, "VOL_UP" ) )
+            {
+                aout_VolumeUp( p_intf, 1, NULL );
+            }
+            if( !strcmp( c, "VOL_DOWN" ) )
+            {
+                aout_VolumeDown( p_intf, 1, NULL );
+            }
             if( !strcmp( c, "FULLSCREEN" ) )
             {
                 vout_thread_t *p_vout;