]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Gives the input_thread_t to use to vout_Request().
[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 /* */
44 struct vout_thread_sys_t
45 {
46     /* Splitter module if used */
47     char            *splitter_name;
48
49     /* Input thread for dvd menu interactions */
50     vlc_object_t    *input;
51
52     /* */
53     video_format_t  original;   /* Original format ie coming from the decoder */
54
55     /* Snapshot interface */
56     vout_snapshot_t snapshot;
57
58     /* Statistics */
59     vout_statistic_t statistic;
60
61     /* Subpicture unit */
62     spu_t           *p_spu;
63
64     /* Monitor Pixel Aspect Ratio */
65     unsigned int    i_par_num;
66     unsigned int    i_par_den;
67
68     /* Video output window */
69     struct {
70         bool              is_unused;
71         vout_window_cfg_t cfg;
72         vout_window_t     *object;
73     } window;
74
75     /* Thread & synchronization */
76     vlc_thread_t    thread;
77     bool            dead;
78     vout_control_t  control;
79
80     /* */
81     struct {
82         char           *title;
83         vout_display_t *vd;
84         bool           use_dr;
85         picture_t      *filtered;
86     } display;
87
88     struct {
89         mtime_t     date;
90         mtime_t     timestamp;
91         int         qtype;
92         bool        is_interlaced;
93         picture_t   *decoded;
94     } displayed;
95
96     struct {
97         mtime_t     last;
98         mtime_t     timestamp;
99     } step;
100
101     struct {
102         bool        is_on;
103         mtime_t     date;
104     } pause;
105
106     /* OSD title configuration */
107     struct {
108         bool        show;
109         mtime_t     timeout;
110         int         position;
111     } title;
112
113     /* */
114     bool            is_late_dropped;
115
116     /* Video filter2 chain */
117     vlc_mutex_t     vfilter_lock;
118     filter_chain_t *vfilter_chain;
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
133 /* TODO to move them to vlc_vout.h */
134 void vout_ControlChangeFullscreen(vout_thread_t *, bool fullscreen);
135 void vout_ControlChangeOnTop(vout_thread_t *, bool is_on_top);
136 void vout_ControlChangeDisplayFilled(vout_thread_t *, bool is_filled);
137 void vout_ControlChangeZoom(vout_thread_t *, int num, int den);
138 void vout_ControlChangeSampleAspectRatio(vout_thread_t *, unsigned num, unsigned den);
139 void vout_ControlChangeCropRatio(vout_thread_t *, unsigned num, unsigned den);
140 void vout_ControlChangeCropWindow(vout_thread_t *, int x, int y, int width, int height);
141 void vout_ControlChangeCropBorder(vout_thread_t *, int left, int top, int right, int bottom);
142 void vout_ControlChangeFilters(vout_thread_t *, const char *);
143 void vout_ControlChangeSubFilters(vout_thread_t *, const char *);
144
145 /* */
146 void vout_IntfInit( vout_thread_t * );
147
148 /* */
149 int  vout_OpenWrapper (vout_thread_t *, const char *, const vout_display_state_t *);
150 void vout_CloseWrapper(vout_thread_t *, vout_display_state_t *);
151 int  vout_InitWrapper(vout_thread_t *);
152 void vout_EndWrapper(vout_thread_t *);
153 void vout_ManageWrapper(vout_thread_t *);
154 void vout_RenderWrapper(vout_thread_t *, picture_t *);
155 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
156
157 /* */
158 int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *);
159 void spu_Attach( spu_t *, vlc_object_t *input, bool );
160
161 #endif
162