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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf.c: Generic lua interface functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: ff26fee6e260a7778a54c44733882cdf8da877e7 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifndef  _GNU_SOURCE
  27. #   define  _GNU_SOURCE
  28. #endif
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_vout.h>
  33. #include <lua.h>        /* Low level lua C API */
  34. #include <lauxlib.h>    /* Higher level C API */
  35. #include "../vlc.h"
  36. #include "../libs.h"
  37. #include "input.h"
  38. #include "variables.h"
  39. /*****************************************************************************
  40.  * Vout control
  41.  *****************************************************************************/
  42. static int vlclua_fullscreen( lua_State *L )
  43. {
  44.     vout_thread_t *p_vout;
  45.     int i_ret;
  46.     input_thread_t * p_input = vlclua_get_input_internal( L );
  47.     if( !p_input ) return vlclua_error( L );
  48.     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
  49.     if( !p_vout ) return vlclua_error( L );
  50.     i_ret = vlclua_var_toggle_or_set( L, p_vout, "fullscreen" );
  51.     vlc_object_release( p_vout );
  52.     vlc_object_release( p_input );
  53.     return i_ret;
  54. }
  55. /*****************************************************************************
  56.  *
  57.  *****************************************************************************/
  58. static const luaL_Reg vlclua_video_reg[] = {
  59.     { "fullscreen", vlclua_fullscreen },
  60.     { NULL, NULL }
  61. };
  62. void luaopen_video( lua_State *L )
  63. {
  64.     lua_newtable( L );
  65.     luaL_register( L, NULL, vlclua_video_reg );
  66.     lua_setfield( L, -2, "video" );
  67. }