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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cmd_input.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: cmd_input.cpp 7769 2004-05-24 21:48:56Z ipkiss $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <vlc/aout.h>
  25. #include "cmd_input.hpp"
  26. #include "cmd_dialogs.hpp"
  27. void CmdPlay::execute()
  28. {
  29.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  30.     if( pPlaylist == NULL )
  31.     {
  32.         return;
  33.     }
  34.     if( pPlaylist->i_size )
  35.     {
  36.         playlist_Play( pPlaylist );
  37.     }
  38.     else
  39.     {
  40.         // If the playlist is empty, open a file requester instead
  41.         CmdDlgFile cmd( getIntf() );
  42.         cmd.execute();
  43.     }
  44. }
  45. void CmdPause::execute()
  46. {
  47.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  48.     if( pPlaylist == NULL )
  49.     {
  50.         return;
  51.     }
  52.     playlist_Pause( pPlaylist );
  53. }
  54. void CmdStop::execute()
  55. {
  56.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  57.     if( pPlaylist == NULL )
  58.     {
  59.         return;
  60.     }
  61.     playlist_Stop( pPlaylist );
  62. }
  63. void CmdSlower::execute()
  64. {
  65.     input_thread_t *pInput =
  66.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  67.                                            FIND_ANYWHERE );
  68.     if( pInput )
  69.     {
  70.         vlc_value_t val;
  71.         val.b_bool = VLC_TRUE;
  72.         var_Set( pInput, "rate-slower", val );
  73.         vlc_object_release( pInput );
  74.     }
  75. }
  76. void CmdFaster::execute()
  77. {
  78.     input_thread_t *pInput =
  79.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  80.                                            FIND_ANYWHERE );
  81.     if( pInput )
  82.     {
  83.         vlc_value_t val;
  84.         val.b_bool = VLC_TRUE;
  85.         var_Set( pInput, "rate-faster", val );
  86.         vlc_object_release( pInput );
  87.     }
  88. }
  89. void CmdMute::execute()
  90. {
  91.     aout_VolumeMute( getIntf(), NULL );
  92. }