]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
No functionnal changes (vout).
[vlc] / src / video_output / vout_internal.h
1 /*****************************************************************************
2  * vout_internal.h : Internal vout definitions
3  *****************************************************************************
4  * Copyright (C) 2008 the VideoLAN team
5  * Copyright (C) 2008 Laurent Aimar
6  * $Id$
7  *
8  * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25
26 #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
27 # error This header file can only be included from LibVLC.
28 #endif
29
30 #ifndef _VOUT_INTERNAL_H
31 #define _VOUT_INTERNAL_H 1
32
33 #include <vlc_picture_fifo.h>
34 #include <vlc_picture_pool.h>
35 #include "vout_control.h"
36 #include "snapshot.h"
37 #include "statistic.h"
38 #include "chrono.h"
39
40 /* Number of pictures required to computes the FPS rate */
41 #define VOUT_FPS_SAMPLES                20
42
43 /* */
44 typedef struct vout_sys_t vout_sys_t;
45
46 /* */
47 struct vout_thread_sys_t
48 {
49     /* module */
50     char       *psz_module_name;
51
52     /* Video output configuration */
53     config_chain_t *p_cfg;
54
55     /* Place holder for the vout_wrapper code */
56     vout_sys_t      *p_sys;
57
58     /* Thread & synchronization */
59     vlc_thread_t    thread;
60     vlc_cond_t      change_wait;
61     bool            b_ready;
62     bool            b_done;
63     bool            b_error;
64
65     /* */
66     bool            b_picture_empty;
67     vlc_cond_t      picture_wait;
68     struct {
69         mtime_t     date;
70         mtime_t     timestamp;
71         int         qtype;
72         bool        is_interlaced;
73         picture_t   *decoded;
74     } displayed;
75
76     struct {
77         bool        is_requested;
78         mtime_t     last;
79         mtime_t     timestamp;
80     } step;
81
82     struct {
83         bool        is_on;
84         mtime_t     date;
85     } pause;
86
87     struct {
88         bool        show;
89         mtime_t     timeout;
90         int         position;
91         char        *value;
92     } title;
93
94     /* */
95     vlc_mutex_t     vfilter_lock;         /**< video filter2 lock */
96
97     /* */
98     unsigned int    i_par_num;           /**< monitor pixel aspect-ratio */
99     unsigned int    i_par_den;           /**< monitor pixel aspect-ratio */
100     bool            is_late_dropped;
101
102     /* Statistics */
103     vout_statistic_t statistic;
104
105     /* Filter chain */
106     bool           b_first_vout;  /* True if it is the first vout of the filter chain */
107     char           *psz_filter_chain;
108     bool            b_filter_change;
109
110     /* Video filter2 chain */
111     filter_chain_t *p_vf2_chain;
112     char           *psz_vf2;
113
114     /* Snapshot interface */
115     vout_snapshot_t snapshot;
116
117     /* Subpicture unit */
118     spu_t          *p_spu;
119
120     /* */
121     vlc_mouse_t     mouse;
122
123     /* */
124     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
125     picture_pool_t      *private_pool;
126     picture_pool_t      *display_pool;
127     picture_pool_t      *decoder_pool;
128     picture_fifo_t      *decoder_fifo;
129     bool                is_decoder_pool_slow;
130     vout_chrono_t       render;           /**< picture render time estimator */
131
132     vlc_mutex_t         change_lock;                 /**< thread change lock */
133
134     uint16_t            i_changes;          /**< changes made to the thread.
135                                                       \see \ref vout_changes */
136     unsigned            b_fullscreen:1;       /**< toogle fullscreen display */
137     unsigned            b_on_top:1; /**< stay always on top of other windows */
138 };
139
140 /** \defgroup vout_changes Flags for changes
141  * These flags are set in the vout_thread_t::i_changes field when another
142  * thread changed a variable
143  * @{
144  */
145 /** b_autoscale changed */
146 #define VOUT_SCALE_CHANGE       0x0008
147 /** b_on_top changed */
148 #define VOUT_ON_TOP_CHANGE      0x0010
149 /** b_fullscreen changed */
150 #define VOUT_FULLSCREEN_CHANGE  0x0040
151 /** i_zoom changed */
152 #define VOUT_ZOOM_CHANGE        0x0080
153 /** cropping parameters changed */
154 #define VOUT_CROP_CHANGE        0x1000
155 /** aspect ratio changed */
156 #define VOUT_ASPECT_CHANGE      0x2000
157 /**@}*/
158
159
160 /* */
161 void vout_IntfInit( vout_thread_t * );
162
163 /* */
164 int  vout_OpenWrapper (vout_thread_t *, const char *);
165 void vout_CloseWrapper(vout_thread_t *);
166 int  vout_InitWrapper(vout_thread_t *);
167 void vout_EndWrapper(vout_thread_t *);
168 int  vout_ManageWrapper(vout_thread_t *);
169 void vout_RenderWrapper(vout_thread_t *, picture_t *);
170 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
171
172 #endif
173