]> git.sesse.net Git - vlc/blob - src/control/libvlc_video.c
Be consistant in naming
[vlc] / src / control / libvlc_video.c
1 /*****************************************************************************
2  * video.c: ibvlc new API video functions
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id: core.c 14187 2006-02-07 16:37:40Z courmisch $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.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 #include <libvlc_internal.h>
25 #include <vlc/libvlc.h>
26
27 #include <vlc/vout.h>
28 #include <vlc/intf.h>
29
30 static vout_thread_t *GetVout( libvlc_input_t *p_input,
31                                libvlc_exception_t *p_exception )
32 {
33     input_thread_t *p_input_thread;
34     vout_thread_t *p_vout;
35
36     if( !p_input )
37     {
38         libvlc_exception_raise( p_exception, "Input is NULL" );
39         return NULL;
40     }
41
42     p_input_thread = (input_thread_t*)vlc_object_get(
43                                  p_input->p_instance->p_vlc,
44                                  p_input->i_input_id );
45     if( !p_input_thread )
46     {
47         libvlc_exception_raise( p_exception, "Input does not exist" );
48         return NULL;
49     }
50
51     p_vout = vlc_object_find( p_input_thread, VLC_OBJECT_VOUT, FIND_CHILD );
52     if( !p_vout )
53     {
54         libvlc_exception_raise( p_exception, "No active video output" );
55         return NULL;
56     }
57     return p_vout;
58 }
59 /**********************************************************************
60  * Exported functions
61  **********************************************************************/
62
63 void libvlc_set_fullscreen( libvlc_input_t *p_input, int b_fullscreen,
64                             libvlc_exception_t *p_e )
65 {
66     /* We only work on the first vout */
67     vout_thread_t *p_vout1 = GetVout( p_input, p_e );
68     vlc_value_t val; int i_ret;
69
70     /* GetVout will raise the exception for us */
71     if( !p_vout1 )
72     {
73         return;
74     }
75
76     if( b_fullscreen ) val.b_bool = VLC_TRUE;
77     else               val.b_bool = VLC_FALSE;
78
79     i_ret = var_Set( p_vout1, "fullscreen", val );
80     if( i_ret )
81         libvlc_exception_raise( p_e,
82                         "Unexpected error while setting fullscreen value" );
83 }
84
85 int libvlc_get_fullscreen( libvlc_input_t *p_input,
86                             libvlc_exception_t *p_e )
87 {
88     /* We only work on the first vout */
89     vout_thread_t *p_vout1 = GetVout( p_input, p_e );
90     vlc_value_t val; int i_ret;
91
92     /* GetVout will raise the exception for us */
93     if( !p_vout1 )
94         return 0;
95
96     i_ret = var_Get( p_vout1, "fullscreen", &val );
97     if( i_ret )
98         libvlc_exception_raise( p_e,
99                         "Unexpected error while looking up fullscreen value" );
100
101     return val.b_bool == VLC_TRUE ? 1 : 0;
102 }
103
104 void libvlc_toggle_fullscreen( libvlc_input_t *p_input,
105                                libvlc_exception_t *p_e )
106 {
107     /* We only work on the first vout */
108     vout_thread_t *p_vout1 = GetVout( p_input, p_e );
109     vlc_value_t val; int i_ret;
110
111     /* GetVout will raise the exception for us */
112     if( !p_vout1 )
113         return;
114
115     i_ret = var_Get( p_vout1, "fullscreen", &val );
116     if( i_ret )
117         libvlc_exception_raise( p_e,
118                         "Unexpected error while looking up fullscreen value" );
119
120     val.b_bool = !val.b_bool;
121     i_ret = var_Set( p_vout1, "fullscreen", val );
122     if( i_ret )
123         libvlc_exception_raise( p_e,
124                         "Unexpected error while setting fullscreen value" );
125 }