video_output.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:10k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * video_output.h : video output thread
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000 VideoLAN
  5.  * $Id: video_output.h 8709 2004-09-15 15:50:54Z gbazin $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@via.ecp.fr>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /**
  25.  * defgroup video_output Video Output
  26.  * This module describes the programming interface for video output threads.
  27.  * It includes functions allowing to open a new thread, send pictures to a
  28.  * thread, and destroy a previously opened video output thread.
  29.  * @{
  30.  */
  31. /**
  32.  * Chroma conversion function
  33.  *
  34.  * This is the prototype common to all conversion functions.
  35.  * param p_vout video output thread
  36.  * param p_source source picture
  37.  * param p_dest destination picture
  38.  * Picture width and source dimensions must be multiples of 16.
  39.  */
  40. typedef void (vout_chroma_convert_t)( vout_thread_t *,
  41.                                       picture_t *, picture_t * );
  42. typedef struct vout_chroma_t
  43. {
  44.     /** conversion functions */
  45.     vout_chroma_convert_t *pf_convert;
  46.     /** Private module-dependant data */
  47.     chroma_sys_t *      p_sys;                               /* private data */
  48.     /** Plugin used and shortcuts to access its capabilities */
  49.     module_t * p_module;
  50. } vout_chroma_t;
  51. /**
  52.  * Video output thread descriptor
  53.  *
  54.  * Any independant video output device, such as an X11 window or a GGI device,
  55.  * is represented by a video output thread, and described using the following
  56.  * structure.
  57.  */
  58. struct vout_thread_t
  59. {
  60.     VLC_COMMON_MEMBERS
  61.     /** name Thread properties and locks */
  62.     /**@{*/
  63.     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
  64.     vlc_mutex_t         subpicture_lock;           /**< subpicture heap lock */
  65.     vlc_mutex_t         change_lock;                 /**< thread change lock */
  66.     vout_sys_t *        p_sys;                     /**< system output method */
  67.     /**@}*/
  68.     /** name Current display properties */
  69.     /**@{*/
  70.     uint16_t            i_changes;          /**< changes made to the thread.
  71.                                                       see ref vout_changes */
  72.     float               f_gamma;                                  /**< gamma */
  73.     vlc_bool_t          b_grayscale;         /**< color or grayscale display */
  74.     vlc_bool_t          b_info;            /**< print additional information */
  75.     vlc_bool_t          b_interface;                   /**< render interface */
  76.     vlc_bool_t          b_scale;                  /**< allow picture scaling */
  77.     vlc_bool_t          b_fullscreen;         /**< toogle fullscreen display */
  78.     vlc_bool_t          b_override_aspect;       /**< aspect ratio overriden */
  79.     uint32_t            render_time;           /**< last picture render time */
  80.     unsigned int        i_window_width;              /**< video window width */
  81.     unsigned int        i_window_height;            /**< video window height */
  82.     unsigned int        i_alignment;          /**< video alignment in window */
  83.     intf_thread_t       *p_parent_intf;   /**< parent interface for embedded
  84.                                                                vout (if any) */
  85.     /**@}*/
  86.     /** name Plugin used and shortcuts to access its capabilities */
  87.     /**@{*/
  88.     module_t *   p_module;
  89.     int       ( *pf_init )       ( vout_thread_t * );
  90.     void      ( *pf_end )        ( vout_thread_t * );
  91.     int       ( *pf_manage )     ( vout_thread_t * );
  92.     void      ( *pf_render )     ( vout_thread_t *, picture_t * );
  93.     void      ( *pf_display )    ( vout_thread_t *, picture_t * );
  94.     void      ( *pf_swap )       ( vout_thread_t * );         /* OpenGL only */
  95.     int       ( *pf_control )    ( vout_thread_t *, int, va_list );
  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.     /** name Video heap and translation tables */
  105.     /**@{*/
  106.     int                 i_heap_size;                          /**< heap size */
  107.     picture_heap_t      render;                       /**< rendered pictures */
  108.     picture_heap_t      output;                          /**< direct buffers */
  109.     vlc_bool_t          b_direct;            /**< rendered are like direct ? */
  110.     vout_chroma_t       chroma;                      /**< translation tables */
  111.     /**@}*/
  112.     /* Picture heap */
  113.     picture_t           p_picture[2*VOUT_MAX_PICTURES+1];      /**< pictures */
  114.     /* Subpicture unit */
  115.     spu_t            *p_spu;
  116.     /* Statistics */
  117.     count_t          c_loops;
  118.     count_t          c_pictures, c_late_pictures;
  119.     mtime_t          display_jitter;    /**< average deviation from the PTS */
  120.     count_t          c_jitter_samples;  /**< number of samples used
  121.                                            for the calculation of the
  122.                                            jitter  */
  123.     /** delay created by internal caching */
  124.     int                 i_pts_delay;
  125.     /* Filter chain */
  126.     char *psz_filter_chain;
  127.     vlc_bool_t b_filter_change;
  128. };
  129. #define I_OUTPUTPICTURES p_vout->output.i_pictures
  130. #define PP_OUTPUTPICTURE p_vout->output.pp_picture
  131. #define I_RENDERPICTURES p_vout->render.i_pictures
  132. #define PP_RENDERPICTURE p_vout->render.pp_picture
  133. /** defgroup vout_changes Flags for changes
  134.  * These flags are set in the vout_thread_t::i_changes field when another
  135.  * thread changed a variable
  136.  * @{
  137.  */
  138. /** b_info changed */
  139. #define VOUT_INFO_CHANGE        0x0001
  140. /** b_grayscale changed */
  141. #define VOUT_GRAYSCALE_CHANGE   0x0002
  142. /** b_interface changed */
  143. #define VOUT_INTF_CHANGE        0x0004
  144. /** b_scale changed */
  145. #define VOUT_SCALE_CHANGE       0x0008
  146. /** gamma changed */
  147. #define VOUT_GAMMA_CHANGE       0x0010
  148. /** b_cursor changed */
  149. #define VOUT_CURSOR_CHANGE      0x0020
  150. /** b_fullscreen changed */
  151. #define VOUT_FULLSCREEN_CHANGE  0x0040
  152. /** size changed */
  153. #define VOUT_SIZE_CHANGE        0x0200
  154. /** depth changed */
  155. #define VOUT_DEPTH_CHANGE       0x0400
  156. /** change chroma tables */
  157. #define VOUT_CHROMA_CHANGE      0x0800
  158. /** change/recreate picture buffers */
  159. #define VOUT_PICTURE_BUFFERS_CHANGE 0x1000
  160. /**@}*/
  161. /* Alignment flags */
  162. #define VOUT_ALIGN_LEFT         0x0001
  163. #define VOUT_ALIGN_RIGHT        0x0002
  164. #define VOUT_ALIGN_HMASK        0x0003
  165. #define VOUT_ALIGN_TOP          0x0004
  166. #define VOUT_ALIGN_BOTTOM       0x0008
  167. #define VOUT_ALIGN_VMASK        0x000C
  168. #define MAX_JITTER_SAMPLES      20
  169. /*****************************************************************************
  170.  * Prototypes
  171.  *****************************************************************************/
  172. #define vout_Request(a,b,c,d,e,f) __vout_Request(VLC_OBJECT(a),b,c,d,e,f)
  173. VLC_EXPORT( vout_thread_t *, __vout_Request,      ( vlc_object_t *, vout_thread_t *, unsigned int, unsigned int, uint32_t, unsigned int ) );
  174. #define vout_Create(a,b,c,d,e) __vout_Create(VLC_OBJECT(a),b,c,d,e)
  175. VLC_EXPORT( vout_thread_t *, __vout_Create,       ( vlc_object_t *, unsigned int, unsigned int, uint32_t, unsigned int ) );
  176. VLC_EXPORT( void,            vout_Destroy,        ( vout_thread_t * ) );
  177. VLC_EXPORT( int, vout_VarCallback, ( vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void * ) );
  178. VLC_EXPORT( int,             vout_ChromaCmp,      ( uint32_t, uint32_t ) );
  179. VLC_EXPORT( picture_t *,     vout_CreatePicture,  ( vout_thread_t *, vlc_bool_t, vlc_bool_t, unsigned int ) );
  180. VLC_EXPORT( void,            vout_InitFormat,     ( video_frame_format_t *, uint32_t, int, int, int ) );
  181. VLC_EXPORT( void,            vout_DestroyPicture, ( vout_thread_t *, picture_t * ) );
  182. VLC_EXPORT( void,            vout_DisplayPicture, ( vout_thread_t *, picture_t * ) );
  183. VLC_EXPORT( void,            vout_DatePicture,    ( vout_thread_t *, picture_t *, mtime_t ) );
  184. VLC_EXPORT( void,            vout_LinkPicture,    ( vout_thread_t *, picture_t * ) );
  185. VLC_EXPORT( void,            vout_UnlinkPicture,  ( vout_thread_t *, picture_t * ) );
  186. VLC_EXPORT( void,            vout_PlacePicture,   ( vout_thread_t *, unsigned int, unsigned int, unsigned int *, unsigned int *, unsigned int *, unsigned int * ) );
  187. picture_t *     vout_RenderPicture  ( vout_thread_t *, picture_t *,
  188.                                                        subpicture_t * );
  189. VLC_EXPORT( int, vout_vaControlDefault, ( vout_thread_t *, int, va_list ) );
  190. VLC_EXPORT( void *, vout_RequestWindow, ( vout_thread_t *, int *, int *, unsigned int *, unsigned int * ) );
  191. VLC_EXPORT( void,   vout_ReleaseWindow, ( vout_thread_t *, void * ) );
  192. VLC_EXPORT( int, vout_ControlWindow, ( vout_thread_t *, void *, int, va_list ) );
  193. void vout_IntfInit( vout_thread_t * );
  194. static inline int vout_vaControl( vout_thread_t *p_vout, int i_query,
  195.                                   va_list args )
  196. {
  197.     if( p_vout->pf_control )
  198.         return p_vout->pf_control( p_vout, i_query, args );
  199.     else
  200.         return VLC_EGENERIC;
  201. }
  202. static inline int vout_Control( vout_thread_t *p_vout, int i_query, ... )
  203. {
  204.     va_list args;
  205.     int i_result;
  206.     va_start( args, i_query );
  207.     i_result = vout_vaControl( p_vout, i_query, args );
  208.     va_end( args );
  209.     return i_result;
  210. }
  211. enum output_query_e
  212. {
  213.     VOUT_SET_ZOOM,         /* arg1= double           res=    */
  214.     VOUT_SET_STAY_ON_TOP,  /* arg1= vlc_bool_t       res=    */
  215.     VOUT_REPARENT,
  216.     VOUT_CLOSE
  217. };
  218. /**
  219.  * @}
  220.  */