]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/video.c
Merge branch 'master' into lpcm_encoder
[vlc] / modules / misc / lua / libs / video.c
1 /*****************************************************************************
2  * intf.c: Generic lua interface functions
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifndef  _GNU_SOURCE
28 #   define  _GNU_SOURCE
29 #endif
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_vout.h>
36
37 #include <lua.h>        /* Low level lua C API */
38 #include <lauxlib.h>    /* Higher level C API */
39
40 #include "../vlc.h"
41 #include "../libs.h"
42 #include "input.h"
43 #include "variables.h"
44
45 /*****************************************************************************
46  * Vout control
47  *****************************************************************************/
48 static int vlclua_fullscreen( lua_State *L )
49 {
50     vout_thread_t *p_vout;
51     int i_ret;
52
53     input_thread_t * p_input = vlclua_get_input_internal( L );
54     if( !p_input ) return vlclua_error( L );
55
56     p_vout = input_GetVout( p_input );
57     if( !p_vout )
58     {
59         vlc_object_release( p_input );
60         return vlclua_error( L );
61     }
62
63     i_ret = vlclua_var_toggle_or_set( L, p_vout, "fullscreen" );
64
65     vlc_object_release( p_vout );
66     vlc_object_release( p_input );
67     return i_ret;
68 }
69
70 /*****************************************************************************
71  *
72  *****************************************************************************/
73 static const luaL_Reg vlclua_video_reg[] = {
74     { "fullscreen", vlclua_fullscreen },
75     { NULL, NULL }
76 };
77
78 void luaopen_video( lua_State *L )
79 {
80     lua_newtable( L );
81     luaL_register( L, NULL, vlclua_video_reg );
82     lua_setfield( L, -2, "video" );
83 }