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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cmd_dvd.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 232f7e5d2521ee5ba2af0913d460f67b2c737240 $
  6.  *
  7.  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include "cmd_dvd.hpp"
  24. #include <vlc_input.h>
  25. void CmdDvdNextTitle::execute()
  26. {
  27.     input_thread_t *p_input =
  28.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  29.                                            FIND_ANYWHERE );
  30.     if( p_input )
  31.     {
  32.         var_SetVoid( p_input, "next-title" );
  33.         vlc_object_release( p_input );
  34.     }
  35. }
  36. void CmdDvdPreviousTitle::execute()
  37. {
  38.     input_thread_t *p_input =
  39.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  40.                                            FIND_ANYWHERE );
  41.     if( p_input )
  42.     {
  43.         var_SetVoid( p_input, "prev-title" );
  44.         vlc_object_release( p_input );
  45.     }
  46. }
  47. void CmdDvdNextChapter::execute()
  48. {
  49.     input_thread_t *p_input =
  50.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  51.                                            FIND_ANYWHERE );
  52.     if( p_input )
  53.     {
  54.         var_SetVoid( p_input, "next-chapter" );
  55.         vlc_object_release( p_input );
  56.     }
  57. }
  58. void CmdDvdPreviousChapter::execute()
  59. {
  60.     input_thread_t *p_input =
  61.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  62.                                            FIND_ANYWHERE );
  63.     if( p_input )
  64.     {
  65.         var_SetVoid( p_input, "prev-chapter" );
  66.         vlc_object_release( p_input );
  67.     }
  68. }
  69. void CmdDvdRootMenu::execute()
  70. {
  71.     input_thread_t *p_input =
  72.         (input_thread_t *)vlc_object_find( getIntf(), VLC_OBJECT_INPUT,
  73.                                            FIND_ANYWHERE );
  74.     if( p_input )
  75.     {
  76.         vlc_value_t val;
  77.         val.i_int = 2;
  78.         var_Set( p_input, "title  0", val);
  79.         vlc_object_release( p_input );
  80.     }
  81. }