]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Removed dead code (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 <vlc_vout_display.h>
36 #include "vout_control.h"
37 #include "snapshot.h"
38 #include "statistic.h"
39 #include "chrono.h"
40
41 /* Number of pictures required to computes the FPS rate */
42 #define VOUT_FPS_SAMPLES                20
43
44 /* */
45 struct vout_thread_sys_t
46 {
47     /* module */
48     char       *psz_module_name;
49
50     /* Video output configuration */
51     config_chain_t *p_cfg;
52
53     /* Thread & synchronization */
54     vlc_thread_t    thread;
55     vlc_cond_t      change_wait;
56     bool            b_ready;
57     bool            b_done;
58     bool            b_error;
59
60     /* */
61     struct {
62         char           *title;
63         vout_display_t *vd;
64         bool           use_dr;
65         picture_t      *filtered;
66     } display;
67
68     bool            b_picture_empty;
69     vlc_cond_t      picture_wait;
70     struct {
71         mtime_t     date;
72         mtime_t     timestamp;
73         int         qtype;
74         bool        is_interlaced;
75         picture_t   *decoded;
76     } displayed;
77
78     struct {
79         bool        is_requested;
80         mtime_t     last;
81         mtime_t     timestamp;
82     } step;
83
84     struct {
85         bool        is_on;
86         mtime_t     date;
87     } pause;
88
89     struct {
90         bool        show;
91         mtime_t     timeout;
92         int         position;
93         char        *value;
94     } title;
95
96     /* */
97     vlc_mutex_t     vfilter_lock;         /**< video filter2 lock */
98
99     /* */
100     unsigned int    i_par_num;           /**< monitor pixel aspect-ratio */
101     unsigned int    i_par_den;           /**< monitor pixel aspect-ratio */
102     bool            is_late_dropped;
103
104     /* Statistics */
105     vout_statistic_t statistic;
106
107     /* Filter chain */
108     char           *psz_filter_chain;
109     bool            b_filter_change;
110
111     /* Video filter2 chain */
112     filter_chain_t *p_vf2_chain;
113     char           *psz_vf2;
114
115     /* Snapshot interface */
116     vout_snapshot_t snapshot;
117
118     /* Subpicture unit */
119     spu_t          *p_spu;
120
121     /* */
122     vlc_mouse_t     mouse;
123
124     /* */
125     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
126     picture_pool_t      *private_pool;
127     picture_pool_t      *display_pool;
128     picture_pool_t      *decoder_pool;
129     picture_fifo_t      *decoder_fifo;
130     bool                is_decoder_pool_slow;
131     vout_chrono_t       render;           /**< picture render time estimator */
132
133     vlc_mutex_t         change_lock;                 /**< thread change lock */
134
135     uint16_t            i_changes;          /**< changes made to the thread.
136                                                       \see \ref vout_changes */
137     unsigned            b_fullscreen:1;       /**< toogle fullscreen display */
138     unsigned            b_on_top:1; /**< stay always on top of other windows */
139 };
140
141 /** \defgroup vout_changes Flags for changes
142  * These flags are set in the vout_thread_t::i_changes field when another
143  * thread changed a variable
144  * @{
145  */
146 /** b_autoscale changed */
147 #define VOUT_SCALE_CHANGE       0x0008
148 /** b_on_top changed */
149 #define VOUT_ON_TOP_CHANGE      0x0010
150 /** b_fullscreen changed */
151 #define VOUT_FULLSCREEN_CHANGE  0x0040
152 /** i_zoom changed */
153 #define VOUT_ZOOM_CHANGE        0x0080
154 /** cropping parameters changed */
155 #define VOUT_CROP_CHANGE        0x1000
156 /** aspect ratio changed */
157 #define VOUT_ASPECT_CHANGE      0x2000
158 /**@}*/
159
160
161 /* */
162 void vout_IntfInit( vout_thread_t * );
163
164 /* */
165 int  vout_OpenWrapper (vout_thread_t *, const char *);
166 void vout_CloseWrapper(vout_thread_t *);
167 int  vout_InitWrapper(vout_thread_t *);
168 void vout_EndWrapper(vout_thread_t *);
169 int  vout_ManageWrapper(vout_thread_t *);
170 void vout_RenderWrapper(vout_thread_t *, picture_t *);
171 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
172
173 #endif
174