]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Removed uneeded hack (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 <vlc_vout_wrapper.h>
37 #include "vout_control.h"
38 #include "control.h"
39 #include "snapshot.h"
40 #include "statistic.h"
41 #include "chrono.h"
42
43 /* It should be high enough to absorbe jitter due to difficult picture(s)
44  * to decode but not too high as memory is not that cheap.
45  *
46  * It can be made lower at compilation time if needed, but performance
47  * may be degraded.
48  */
49 #define VOUT_MAX_PICTURES (20)
50
51 /* */
52 struct vout_thread_sys_t
53 {
54     /* Splitter module if used */
55     char            *splitter_name;
56
57     /* Input thread for dvd menu interactions */
58     vlc_object_t    *input;
59
60     /* */
61     video_format_t  original;   /* Original format ie coming from the decoder */
62     unsigned        dpb_size;
63
64     /* Snapshot interface */
65     vout_snapshot_t snapshot;
66
67     /* Statistics */
68     vout_statistic_t statistic;
69
70     /* Subpicture unit */
71     vlc_mutex_t     spu_lock;
72     spu_t           *spu;
73
74     /* Video output window */
75     struct {
76         bool              is_unused;
77         vout_window_cfg_t cfg;
78         vout_window_t     *object;
79     } window;
80
81     /* Thread & synchronization */
82     vlc_thread_t    thread;
83     bool            dead;
84     vout_control_t  control;
85
86     /* */
87     struct {
88         char           *title;
89         vout_display_t *vd;
90         bool           use_dr;
91         picture_t      *filtered;
92     } display;
93
94     struct {
95         mtime_t     date;
96         mtime_t     timestamp;
97         int         qtype;
98         bool        is_interlaced;
99         picture_t   *decoded;
100         picture_t   *current;
101         picture_t   *next;
102     } displayed;
103
104     struct {
105         mtime_t     last;
106         mtime_t     timestamp;
107     } step;
108
109     struct {
110         bool        is_on;
111         mtime_t     date;
112     } pause;
113
114     /* OSD title configuration */
115     struct {
116         bool        show;
117         mtime_t     timeout;
118         int         position;
119     } title;
120
121     /* */
122     bool            is_late_dropped;
123
124     /* Video filter2 chain */
125     struct {
126         vlc_mutex_t     lock;
127         filter_chain_t  *chain_static;
128         filter_chain_t  *chain_interactive;
129     } filter;
130
131     /* */
132     vlc_mouse_t     mouse;
133
134     /* */
135     vlc_mutex_t     picture_lock;                 /**< picture heap lock */
136     picture_pool_t  *private_pool;
137     picture_pool_t  *display_pool;
138     picture_pool_t  *decoder_pool;
139     picture_fifo_t  *decoder_fifo;
140     bool            is_decoder_pool_slow;
141     vout_chrono_t   render;           /**< picture render time estimator */
142 };
143
144 /* TODO to move them to vlc_vout.h */
145 void vout_ControlChangeFullscreen(vout_thread_t *, bool fullscreen);
146 void vout_ControlChangeOnTop(vout_thread_t *, bool is_on_top);
147 void vout_ControlChangeDisplayFilled(vout_thread_t *, bool is_filled);
148 void vout_ControlChangeZoom(vout_thread_t *, int num, int den);
149 void vout_ControlChangeSampleAspectRatio(vout_thread_t *, unsigned num, unsigned den);
150 void vout_ControlChangeCropRatio(vout_thread_t *, unsigned num, unsigned den);
151 void vout_ControlChangeCropWindow(vout_thread_t *, int x, int y, int width, int height);
152 void vout_ControlChangeCropBorder(vout_thread_t *, int left, int top, int right, int bottom);
153 void vout_ControlChangeFilters(vout_thread_t *, const char *);
154 void vout_ControlChangeSubFilters(vout_thread_t *, const char *);
155 void vout_ControlChangeSubMargin(vout_thread_t *, int);
156
157 /* */
158 void vout_IntfInit( vout_thread_t * );
159
160 /* */
161 int  vout_OpenWrapper (vout_thread_t *, const char *, const vout_display_state_t *);
162 void vout_CloseWrapper(vout_thread_t *, vout_display_state_t *);
163 int  vout_InitWrapper(vout_thread_t *);
164 void vout_EndWrapper(vout_thread_t *);
165 void vout_ManageWrapper(vout_thread_t *);
166 void vout_RenderWrapper(vout_thread_t *, picture_t *);
167 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
168
169 /* */
170 int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *);
171 void spu_Attach( spu_t *, vlc_object_t *input, bool );
172 void spu_ChangeMargin(spu_t *, int);
173
174 #endif
175