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