cmd_input.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_input.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 4e76107aca827621d8fd9ec0d964de81f56de0fa $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #include "cmd_input.hpp"
  25. #include "cmd_dialogs.hpp"
  26. #include <vlc_aout.h>
  27. #include <vlc_input.h>
  28. #include <vlc_playlist.h>
  29. void CmdPlay::execute()
  30. {
  31.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  32.     if( pPlaylist == NULL )
  33.     {
  34.         return;
  35.     }
  36.     playlist_Lock( pPlaylist );
  37.     const bool b_empty = playlist_IsEmpty( pPlaylist );
  38.     playlist_Unlock( pPlaylist );
  39.     if( !b_empty )
  40.     {
  41.         playlist_Play( pPlaylist );
  42.     }
  43.     else
  44.     {
  45.         // If the playlist is empty, open a file requester instead
  46.         CmdDlgFile cmd( getIntf() );
  47.         cmd.execute();
  48.     }
  49. }
  50. void CmdPause::execute()
  51. {
  52.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  53.     if( pPlaylist == NULL )
  54.     {
  55.         return;
  56.     }
  57.     playlist_Pause( pPlaylist );
  58. }
  59. void CmdStop::execute()
  60. {
  61.     playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
  62.     if( pPlaylist == NULL )
  63.     {
  64.         return;
  65.     }
  66.     playlist_Stop( pPlaylist );
  67. }
  68. void CmdSlower::execute()
  69. {
  70.     input_thread_t *pInput =
  71.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  72.                                            FIND_ANYWHERE );
  73.     if( pInput )
  74.     {
  75.         vlc_value_t val;
  76.         val.b_bool = true;
  77.         var_Set( pInput, "rate-slower", val );
  78.         vlc_object_release( pInput );
  79.     }
  80. }
  81. void CmdFaster::execute()
  82. {
  83.     input_thread_t *pInput =
  84.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  85.                                            FIND_ANYWHERE );
  86.     if( pInput )
  87.     {
  88.         vlc_value_t val;
  89.         val.b_bool = true;
  90.         var_Set( pInput, "rate-faster", val );
  91.         vlc_object_release( pInput );
  92.     }
  93. }
  94. void CmdMute::execute()
  95. {
  96.     aout_VolumeMute( getIntf(), NULL );
  97. }
  98. void CmdVolumeUp::execute()
  99. {
  100.     aout_VolumeUp( getIntf(), 1, NULL );
  101. }
  102. void CmdVolumeDown::execute()
  103. {
  104.     aout_VolumeDown( getIntf(), 1, NULL );
  105. }