]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Cosmetics.
[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 "control.h"
38 #include "snapshot.h"
39 #include "statistic.h"
40 #include "chrono.h"
41
42 /* */
43 struct vout_thread_sys_t
44 {
45     /* module */
46     char       *psz_module_name;
47
48     /* Video output configuration */
49     config_chain_t *p_cfg;
50
51     /* */
52     video_format_t  fmt_render;      /* render format (from the decoder) */
53     video_format_t  fmt_in;            /* input (modified render) format */
54     video_format_t  fmt_out;     /* output format (for the video output) */
55
56     /* Thread & synchronization */
57     vlc_thread_t    thread;
58     vlc_cond_t      change_wait;
59     bool            b_ready;
60     bool            b_done;
61     bool            b_error;
62     vout_control_t  control;
63
64     /* */
65     struct {
66         char           *title;
67         vout_display_t *vd;
68         bool           use_dr;
69         picture_t      *filtered;
70     } display;
71
72     struct {
73         mtime_t     date;
74         mtime_t     timestamp;
75         int         qtype;
76         bool        is_interlaced;
77         picture_t   *decoded;
78     } displayed;
79
80     struct {
81         mtime_t     last;
82         mtime_t     timestamp;
83     } step;
84
85     struct {
86         bool        is_on;
87         mtime_t     date;
88     } pause;
89
90     /* OSD title configuration */
91     struct {
92         bool        show;
93         mtime_t     timeout;
94         int         position;
95     } title;
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     char           *psz_filter_chain;
107     bool            b_filter_change;
108
109     /* Video filter2 chain */
110     vlc_mutex_t     vfilter_lock;
111     filter_chain_t *p_vf2_chain;
112
113     /* Snapshot interface */
114     vout_snapshot_t snapshot;
115
116     /* Subpicture unit */
117     spu_t          *p_spu;
118
119     /* */
120     vlc_mouse_t     mouse;
121
122     /* */
123     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
124     picture_pool_t      *private_pool;
125     picture_pool_t      *display_pool;
126     picture_pool_t      *decoder_pool;
127     picture_fifo_t      *decoder_fifo;
128     bool                is_decoder_pool_slow;
129     vout_chrono_t       render;           /**< picture render time estimator */
130
131     vlc_mutex_t         change_lock;                 /**< thread change lock */
132
133     uint16_t            i_changes;          /**< changes made to the thread.
134                                                       \see \ref vout_changes */
135 };
136
137 /** \defgroup vout_changes Flags for changes
138  * These flags are set in the vout_thread_t::i_changes field when another
139  * thread changed a variable
140  * @{
141  */
142 /** cropping parameters changed */
143 #define VOUT_CROP_CHANGE        0x1000
144 /** aspect ratio changed */
145 #define VOUT_ASPECT_CHANGE      0x2000
146 /**@}*/
147
148 /* TODO to move them to vlc_vout.h */
149 void vout_ControlChangeFullscreen(vout_thread_t *, bool fullscreen);
150 void vout_ControlChangeOnTop(vout_thread_t *, bool is_on_top);
151 void vout_ControlChangeDisplayFilled(vout_thread_t *, bool is_filled);
152 void vout_ControlChangeZoom(vout_thread_t *, int num, int den);
153
154 /* */
155 void vout_IntfInit( vout_thread_t * );
156
157 /* */
158 int  vout_OpenWrapper (vout_thread_t *, const char *);
159 void vout_CloseWrapper(vout_thread_t *);
160 int  vout_InitWrapper(vout_thread_t *);
161 void vout_EndWrapper(vout_thread_t *);
162 int  vout_ManageWrapper(vout_thread_t *);
163 void vout_RenderWrapper(vout_thread_t *, picture_t *);
164 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
165
166 /* */
167 int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *);
168
169 #endif
170