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