]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Moved vout_AllocatePicture out of vlc_vout.h
[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 "vout_control.h"
34 #include "snapshot.h"
35 #include "statistic.h"
36
37 /* Number of pictures required to computes the FPS rate */
38 #define VOUT_FPS_SAMPLES                20
39
40 /* */
41 struct vout_thread_sys_t
42 {
43     /* module */
44     char       *psz_module_name;
45
46     /* Thread & synchronization */
47     vlc_thread_t    thread;
48     vlc_cond_t      change_wait;
49     bool            b_ready;
50     bool            b_done;
51
52     /* */
53     bool            b_picture_displayed;
54     bool            b_picture_empty;
55     mtime_t         i_picture_displayed_date;
56     picture_t       *p_picture_displayed;
57     int             i_picture_qtype;
58     bool            b_picture_interlaced;
59     vlc_cond_t      picture_wait;
60
61     /* */
62     vlc_mutex_t     vfilter_lock;         /**< video filter2 lock */
63
64     /* */
65     uint32_t        render_time;           /**< last picture render time */
66     unsigned int    i_par_num;           /**< monitor pixel aspect-ratio */
67     unsigned int    i_par_den;           /**< monitor pixel aspect-ratio */
68
69     /**
70      * These numbers are not supposed to be accurate, but are a
71      * good indication of the thread status */
72     count_t         c_fps_samples;                         /**< picture counts */
73     mtime_t         p_fps_sample[VOUT_FPS_SAMPLES];     /**< FPS samples dates */
74
75     /* Statistics */
76     vout_statistic_t statistic;
77
78     /* Pause */
79     bool            b_paused;
80     mtime_t         i_pause_date;
81
82     /* Filter chain */
83     bool           b_first_vout;  /* True if it is the first vout of the filter chain */
84     char           *psz_filter_chain;
85     bool            b_filter_change;
86
87     /* Video filter2 chain */
88     filter_chain_t *p_vf2_chain;
89     char           *psz_vf2;
90
91     /* Snapshot interface */
92     vout_snapshot_t snapshot;
93
94     /* Show media title on videoutput */
95     bool            b_title_show;
96     mtime_t         i_title_timeout;
97     int             i_title_position;
98
99     char            *psz_title;
100
101     /* */
102     vlc_mouse_t     mouse;
103 };
104
105 /* */
106 int vout_AllocatePicture( vlc_object_t *, picture_t *, uint32_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den );
107 #define vout_AllocatePicture(a,b,c,d,e,f,g) \
108         vout_AllocatePicture(VLC_OBJECT(a),b,c,d,e,f,g)
109
110 /* DO NOT use vout_RenderPicture/vout_IntfInit unless you are in src/video_ouput */
111 picture_t *vout_RenderPicture( vout_thread_t *, picture_t *,
112                                subpicture_t *,
113                                mtime_t render_date );
114 void vout_IntfInit( vout_thread_t * );
115
116 /* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput
117  *
118  * This function supposes that you call it with picture_lock taken.
119  */
120 void vout_UsePictureLocked( vout_thread_t *p_vout, picture_t *p_pic  );
121
122 /* */
123 int  vout_OpenWrapper (vout_thread_t *, const char *);
124 void vout_CloseWrapper(vout_thread_t *);
125 int  vout_InitWrapper(vout_thread_t *);
126 void vout_EndWrapper(vout_thread_t *);
127 int  vout_ManageWrapper(vout_thread_t *);
128 void vout_RenderWrapper(vout_thread_t *, picture_t *);
129 void vout_DisplayWrapper(vout_thread_t *, picture_t *);
130
131 #endif
132