screensaver.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * screensaver.c : disable screen savers when VLC is playing
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: screensaver.c 7125 2004-03-21 19:45:42Z hartman $
  6.  *
  7.  * Authors: Sam Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <vlc/vlc.h>
  28. #include <vlc/intf.h>
  29. #include <vlc/aout.h>
  30. #include <vlc/vout.h>
  31. /*****************************************************************************
  32.  * Local prototypes
  33.  *****************************************************************************/
  34. static int  Activate     ( vlc_object_t * );
  35. static void Run          ( intf_thread_t *p_intf );
  36. /*****************************************************************************
  37.  * Module descriptor
  38.  *****************************************************************************/
  39. vlc_module_begin();
  40.     set_description( _("X Screensaver disabler") );
  41.     set_capability( "interface", 0 );
  42.     set_callbacks( Activate, NULL );
  43. vlc_module_end();
  44. /*****************************************************************************
  45.  * Activate: initialize and create stuff
  46.  *****************************************************************************/
  47. static int Activate( vlc_object_t *p_this )
  48. {
  49.     intf_thread_t *p_intf = (intf_thread_t*)p_this;
  50.     p_intf->pf_run = Run;
  51.     return VLC_SUCCESS;
  52. }
  53. /*****************************************************************************
  54.  * Run: main thread
  55.  *****************************************************************************
  56.  * This part of the module is in a separate thread so that we do not have
  57.  * too much system() overhead.
  58.  *****************************************************************************/
  59. static void Run( intf_thread_t *p_intf )
  60. {
  61.     int i_lastcall = 0;
  62.     while( !p_intf->b_die )
  63.     {
  64.         msleep( 100000 );
  65.         /* Check screensaver every 30 seconds */
  66.         if( ++i_lastcall > 300 )
  67.         {
  68.             vlc_object_t *p_vout;
  69.             p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
  70.             /* If there is a video output, disable xscreensaver */
  71.             if( p_vout )
  72.             {
  73.                 vlc_object_release( p_vout );
  74.                 /* http://www.jwz.org/xscreensaver/faq.html#dvd */
  75.                 system( "xscreensaver-command -deactivate >&- 2>&- &" );
  76.                 /* FIXME: add support for other screensavers */
  77.             }
  78.             i_lastcall = 0;
  79.         }
  80.     }
  81. }