]> git.sesse.net Git - vlc/blob - include/video_output.h
* ChangeLog: yeah I know... don't laugh.
[vlc] / include / video_output.h
1 /*****************************************************************************
2  * video_output.h : video output thread
3  * This module describes the programming interface for video output threads.
4  * It includes functions allowing to open a new thread, send pictures to a
5  * thread, and destroy a previously opened video output thread.
6  *****************************************************************************
7  * Copyright (C) 1999, 2000 VideoLAN
8  * $Id: video_output.h,v 1.96 2003/07/14 21:32:58 sigmunau Exp $
9  *
10  * Authors: Vincent Seguin <seguin@via.ecp.fr>
11  *          Samuel Hocevar <sam@via.ecp.fr>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * vout_chroma_t: Chroma conversion function
30  *****************************************************************************
31  * This is the prototype common to all conversion functions.
32  * Parameters:
33  *      p_source                        source picture
34  *      p_dest                          destination picture
35  * Picture width and source dimensions must be multiples of 16.
36  *****************************************************************************/
37 typedef void (vout_chroma_convert_t)( vout_thread_t *,
38                                       picture_t *, picture_t * );
39
40 typedef struct vout_chroma_t
41 {
42     /* conversion functions */
43     vout_chroma_convert_t *pf_convert;
44
45     /* Private module-dependant data */
46     chroma_sys_t *      p_sys;                               /* private data */
47
48     /* Plugin used and shortcuts to access its capabilities */
49     module_t * p_module;
50
51 } vout_chroma_t;
52
53 /**
54  * \brief video output thread descriptor
55  *
56  * Any independant video output device, such as an X11 window or a GGI device,
57  * is represented by a video output thread, and described using the following
58  * structure.
59  */
60 struct vout_thread_t
61 {
62     VLC_COMMON_MEMBERS
63
64     /** \name Thread properties and locks */
65     /**@{*/
66     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
67     vlc_mutex_t         subpicture_lock;           /**< subpicture heap lock */
68     vlc_mutex_t         change_lock;                 /**< thread change lock */
69     vout_sys_t *        p_sys;                     /**< system output method */
70     /**@}*/
71     
72     /** \name Current display properties */
73     /**@{*/
74     uint16_t            i_changes;           /**< changes made to the thread */
75     float               f_gamma;                                  /**< gamma */
76     vlc_bool_t          b_grayscale;         /**< color or grayscale display */
77     vlc_bool_t          b_info;            /**< print additional information */
78     vlc_bool_t          b_interface;                   /**< render interface */
79     vlc_bool_t          b_scale;                  /**< allow picture scaling */
80     vlc_bool_t          b_fullscreen;         /**< toogle fullscreen display */
81     vlc_bool_t          b_override_aspect;       /**< aspect ratio overriden */
82     mtime_t             render_time;           /**< last picture render time */
83     unsigned int        i_window_width;              /**< video window width */
84     unsigned int        i_window_height;            /**< video window height */
85     /**@}*/
86     
87     /** \name Plugin used and shortcuts to access its capabilities */
88     /**@{*/
89     module_t *   p_module;
90     int       ( *pf_init )       ( vout_thread_t * );
91     void      ( *pf_end )        ( vout_thread_t * );
92     int       ( *pf_manage )     ( vout_thread_t * );
93     void      ( *pf_render )     ( vout_thread_t *, picture_t * );
94     void      ( *pf_display )    ( vout_thread_t *, picture_t * );
95     /**@}*/
96
97     /** \name Statistics
98      * These numbers are not supposed to be accurate, but are a
99      * good indication of the thread status */
100     /**@{*/
101     count_t       c_fps_samples;                         /**< picture counts */
102     mtime_t       p_fps_sample[VOUT_FPS_SAMPLES];     /**< FPS samples dates */
103     /**@}*/
104
105     /** \name Video heap and translation tables */
106     /**@{*/
107     int                 i_heap_size;                          /**< heap size */
108     picture_heap_t      render;                       /**< rendered pictures */
109     picture_heap_t      output;                          /**< direct buffers */
110     vlc_bool_t          b_direct;            /**< rendered are like direct ? */
111     vout_chroma_t       chroma;                      /**< translation tables */
112     /**@}*/
113
114     /* Picture and subpicture heaps */
115     picture_t           p_picture[2*VOUT_MAX_PICTURES];        /**< pictures */
116     subpicture_t        p_subpicture[VOUT_MAX_PICTURES];    /**< subpictures */
117
118     /* Statistics */
119     count_t          c_loops;
120     count_t          c_pictures, c_late_pictures;
121     mtime_t          display_jitter;    /**< average deviation from the PTS */
122     count_t          c_jitter_samples;  /**< number of samples used
123                                            for the calculation of the
124                                            jitter  */
125     /** delay created by internal caching */
126     int                 i_pts_delay;
127
128     /* Filter chain */
129     char *psz_filter_chain;
130     vlc_bool_t b_filter_change;
131
132     /* text renderer data */
133     text_renderer_sys_t * p_text_renderer_data;        /**< private data for
134                                                            the text renderer */
135     module_t *            p_text_renderer_module;  /**< text renderer module */
136     int ( *pf_add_string ) ( vout_thread_t *, char *, text_style_t *, int,  
137                              int, int, mtime_t, mtime_t ); /**< callback used when a new string needs to be shown on the vout */
138 };
139
140 #define I_OUTPUTPICTURES p_vout->output.i_pictures
141 #define PP_OUTPUTPICTURE p_vout->output.pp_picture
142 #define I_RENDERPICTURES p_vout->render.i_pictures
143 #define PP_RENDERPICTURE p_vout->render.pp_picture
144
145 /* Flags for changes - these flags are set in the i_changes field when another
146  * thread changed a variable */
147 #define VOUT_INFO_CHANGE        0x0001                     /* b_info changed */
148 #define VOUT_GRAYSCALE_CHANGE   0x0002                /* b_grayscale changed */
149 #define VOUT_INTF_CHANGE        0x0004                /* b_interface changed */
150 #define VOUT_SCALE_CHANGE       0x0008                    /* b_scale changed */
151 #define VOUT_GAMMA_CHANGE       0x0010                      /* gamma changed */
152 #define VOUT_CURSOR_CHANGE      0x0020                   /* b_cursor changed */
153 #define VOUT_FULLSCREEN_CHANGE  0x0040               /* b_fullscreen changed */
154 #define VOUT_SIZE_CHANGE        0x0200                       /* size changed */
155 #define VOUT_DEPTH_CHANGE       0x0400                      /* depth changed */
156 #define VOUT_CHROMA_CHANGE      0x0800               /* change chroma tables */
157
158 #define MAX_JITTER_SAMPLES      20
159
160 /*****************************************************************************
161  * Prototypes
162  *****************************************************************************/
163 #define vout_Request(a,b,c,d,e,f) __vout_Request(VLC_OBJECT(a),b,c,d,e,f)
164 VLC_EXPORT( vout_thread_t *, __vout_Request,      ( vlc_object_t *, vout_thread_t *, unsigned int, unsigned int, uint32_t, unsigned int ) );
165 #define vout_Create(a,b,c,d,e) __vout_Create(VLC_OBJECT(a),b,c,d,e)
166 VLC_EXPORT( vout_thread_t *, __vout_Create,       ( vlc_object_t *, unsigned int, unsigned int, uint32_t, unsigned int ) );
167 VLC_EXPORT( void,            vout_Destroy,        ( vout_thread_t * ) );
168 VLC_EXPORT( int, vout_VarCallback, ( vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void * ) );
169
170 VLC_EXPORT( int,             vout_ChromaCmp,      ( uint32_t, uint32_t ) );
171
172 VLC_EXPORT( picture_t *,     vout_CreatePicture,  ( vout_thread_t *, vlc_bool_t, vlc_bool_t, unsigned int ) );
173 VLC_EXPORT( void,            vout_InitPicture,    ( vlc_object_t *, picture_t *, int, int, uint32_t ) );
174 VLC_EXPORT( void,            vout_AllocatePicture,( vout_thread_t *, picture_t *, int, int, uint32_t ) );
175 VLC_EXPORT( void,            vout_DestroyPicture, ( vout_thread_t *, picture_t * ) );
176 VLC_EXPORT( void,            vout_DisplayPicture, ( vout_thread_t *, picture_t * ) );
177 VLC_EXPORT( void,            vout_DatePicture,    ( vout_thread_t *, picture_t *, mtime_t ) );
178 VLC_EXPORT( void,            vout_LinkPicture,    ( vout_thread_t *, picture_t * ) );
179 VLC_EXPORT( void,            vout_UnlinkPicture,  ( vout_thread_t *, picture_t * ) );
180 VLC_EXPORT( void,            vout_PlacePicture,   ( vout_thread_t *, unsigned int, unsigned int, unsigned int *, unsigned int *, unsigned int *, unsigned int * ) );
181 picture_t *     vout_RenderPicture  ( vout_thread_t *, picture_t *,
182                                                        subpicture_t * );
183
184 VLC_EXPORT( subpicture_t *,  vout_CreateSubPicture,   ( vout_thread_t *, int ) );
185 VLC_EXPORT( void,            vout_DestroySubPicture,  ( vout_thread_t *, subpicture_t * ) );
186 VLC_EXPORT( void,            vout_DisplaySubPicture,  ( vout_thread_t *, subpicture_t * ) );
187
188 subpicture_t *  vout_SortSubPictures    ( vout_thread_t *, mtime_t );
189 void            vout_RenderSubPictures  ( vout_thread_t *, picture_t *,
190                                                            subpicture_t * );