]> git.sesse.net Git - vlc/blob - src/video_output/vout_internal.h
Moved out a few defines from vlc_config.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
35 /* Number of pictures required to computes the FPS rate */
36 #define VOUT_FPS_SAMPLES                20
37
38 /* */
39 struct vout_thread_sys_t
40 {
41     /* */
42     bool            b_picture_displayed;
43     bool            b_picture_empty;
44     mtime_t         i_picture_displayed_date;
45     picture_t       *p_picture_displayed;
46     vlc_cond_t      picture_wait;
47
48     /* */
49     vlc_mutex_t     vfilter_lock;         /**< video filter2 change lock */
50
51     /* */
52     uint32_t        render_time;           /**< last picture render time */
53     unsigned int    i_par_num;           /**< monitor pixel aspect-ratio */
54     unsigned int    i_par_den;           /**< monitor pixel aspect-ratio */
55
56     /* */
57     bool            b_direct;            /**< rendered are like direct ? */
58     filter_t        *p_chroma;
59
60     /**
61      * These numbers are not supposed to be accurate, but are a
62      * good indication of the thread status */
63     count_t         c_fps_samples;                         /**< picture counts */
64     mtime_t         p_fps_sample[VOUT_FPS_SAMPLES];     /**< FPS samples dates */
65
66     /* Statistics */
67     int             i_picture_lost;
68     int             i_picture_displayed;
69
70     /* Pause */
71     bool            b_paused;
72     mtime_t         i_pause_date;
73
74     /* Filter chain */
75     char           *psz_filter_chain;
76     bool            b_filter_change;
77
78     /* Video filter2 chain */
79     filter_chain_t *p_vf2_chain;
80     char           *psz_vf2;
81
82     /* Misc */
83     bool            b_snapshot;     /**< take one snapshot on the next loop */
84
85     /* Show media title on videoutput */
86     bool            b_title_show;
87     mtime_t         i_title_timeout;
88     int             i_title_position;
89 };
90
91 /* DO NOT use vout_RenderPicture unless you are in src/video_ouput */
92 picture_t *vout_RenderPicture( vout_thread_t *, picture_t *,
93                                subpicture_t *, bool b_paused );
94
95 /* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput
96  *
97  * This function supposes that you call it with picture_lock taken.
98  */
99 void vout_UsePictureLocked( vout_thread_t *p_vout, picture_t *p_pic  );
100
101 #endif
102