]> git.sesse.net Git - vlc/blob - src/control/video.c
Fix a bug whereby --disable-shared-libvlc would actually enable it
[vlc] / src / control / 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         fprintf( stderr, "No vout\n");
74         return;
75     }
76
77     if( b_fullscreen ) val.b_bool = VLC_TRUE;
78     else               val.b_bool = VLC_FALSE;
79
80     var_Set( p_vout1, "fullscreen", val );
81     if( i_ret )
82         libvlc_exception_raise( p_e,
83                         "Unexpected error while setting fullscreen value" );
84 }
85
86 int libvlc_get_fullscreen( libvlc_input_t *p_input,
87                             libvlc_exception_t *p_e )
88 {
89     /* We only work on the first vout */
90     vout_thread_t *p_vout1 = GetVout( p_input, p_e );
91     vlc_value_t val; int i_ret;
92
93     /* GetVout will raise the exception for us */
94     if( !p_vout1 )
95         return 0;
96
97     i_ret = var_Get( p_vout1, "fullscreen", &val );
98     if( i_ret )
99         libvlc_exception_raise( p_e,
100                         "Unexpected error while looking up fullscreen value" );
101
102     return val.b_bool == VLC_TRUE ? 1 : 0;
103 }
104
105 void libvlc_toggle_fullscreen( libvlc_input_t *p_input,
106                                libvlc_exception_t *p_e )
107 {
108     /* We only work on the first vout */
109     vout_thread_t *p_vout1 = GetVout( p_input, p_e );
110     vlc_value_t val; int i_ret;
111
112     /* GetVout will raise the exception for us */
113     if( !p_vout1 )
114         return;
115
116     i_ret = var_Get( p_vout1, "fullscreen", &val );
117     if( i_ret )
118         libvlc_exception_raise( p_e,
119                         "Unexpected error while looking up fullscreen value" );
120
121     val.b_bool = !val.b_bool;
122     i_ret = var_Set( p_vout1, "fullscreen", val );
123     if( i_ret )
124         libvlc_exception_raise( p_e,
125                         "Unexpected error while setting fullscreen value" );
126 }