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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_video.h: common video definitions
  3.  * This header is required by all modules which have to handle pictures. It
  4.  * includes all common video types and constants.
  5.  *****************************************************************************
  6.  * Copyright (C) 1999, 2000 VideoLAN
  7.  * $Id: vlc_video.h 9274 2004-11-10 15:16:51Z gbazin $
  8.  *
  9.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. #ifndef _VLC_VIDEO_H
  26. #define _VLC_VIDEO_H 1
  27. #include "vlc_es.h"
  28. /**
  29.  * Description of a planar graphic field
  30.  */
  31. typedef struct plane_t
  32. {
  33.     uint8_t *p_pixels;                        /**< Start of the plane's data */
  34.     /* Variables used for fast memcpy operations */
  35.     int i_lines;           /**< Number of lines, including margins */
  36.     int i_pitch;           /**< Number of bytes in a line, including margins */
  37.     /** Size of a macropixel, defaults to 1 */
  38.     int i_pixel_pitch;
  39.     /* Variables used for pictures with margins */
  40.     int i_visible_lines;            /**< How many visible lines are there ? */
  41.     int i_visible_pitch;            /**< How many visible pixels are there ? */
  42. } plane_t;
  43. /**
  44.  * Video picture
  45.  *
  46.  * Any picture destined to be displayed by a video output thread should be
  47.  * stored in this structure from it's creation to it's effective display.
  48.  * Picture type and flags should only be modified by the output thread. Note
  49.  * that an empty picture MUST have its flags set to 0.
  50.  */
  51. struct picture_t
  52. {
  53.     /** 
  54.      * The properties of the picture
  55.      */
  56.     video_frame_format_t format;
  57.     /** Picture data - data can always be freely modified, but p_data may
  58.      * NEVER be modified. A direct buffer can be handled as the plugin
  59.      * wishes, it can even swap p_pixels buffers. */
  60.     uint8_t        *p_data;
  61.     void           *p_data_orig;                /**< pointer before memalign */
  62.     plane_t         p[ VOUT_MAX_PLANES ];     /**< description of the planes */
  63.     int             i_planes;                /**< number of allocated planes */
  64.     /** name Type and flags
  65.      * Should NOT be modified except by the vout thread
  66.      * @{*/
  67.     int             i_status;                             /**< picture flags */
  68.     int             i_type;                /**< is picture a direct buffer ? */
  69.     vlc_bool_t      b_slow;                 /**< is picture in slow memory ? */
  70.     int             i_matrix_coefficients;   /**< in YUV type, encoding type */
  71.     /**@}*/
  72.     /** name Picture management properties
  73.      * These properties can be modified using the video output thread API,
  74.      * but should never be written directly */
  75.     /**@{*/
  76.     int             i_refcount;                  /**< link reference counter */
  77.     mtime_t         date;                                  /**< display date */
  78.     vlc_bool_t      b_force;
  79.     /**@}*/
  80.     /** name Picture dynamic properties
  81.      * Those properties can be changed by the decoder
  82.      * @{
  83.      */
  84.     vlc_bool_t      b_progressive;          /**< is it a progressive frame ? */
  85.     unsigned int    i_nb_fields;                  /**< # of displayed fields */
  86.     vlc_bool_t      b_top_field_first;             /**< which field is first */
  87.     /**@}*/
  88.     /** The picture heap we are attached to */
  89.     picture_heap_t* p_heap;
  90.     /* Some vouts require the picture to be locked before it can be modified */
  91.     int (* pf_lock) ( vout_thread_t *, picture_t * );
  92.     int (* pf_unlock) ( vout_thread_t *, picture_t * );
  93.     /** Private data - the video output plugin might want to put stuff here to
  94.      * keep track of the picture */
  95.     picture_sys_t * p_sys;
  96.     /** This way the picture_Release can be overloaded */
  97.     void (*pf_release)( picture_t * );
  98. };
  99. /**
  100.  * Video picture heap, either render (to store pictures used
  101.  * by the decoder) or output (to store pictures displayed by the vout plugin)
  102.  */
  103. struct picture_heap_t
  104. {
  105.     int i_pictures;                                   /**< current heap size */
  106.     /* name Picture static properties
  107.      * Those properties are fixed at initialization and should NOT be modified
  108.      * @{
  109.      */
  110.     unsigned int i_width;                                 /**< picture width */
  111.     unsigned int i_height;                               /**< picture height */
  112.     vlc_fourcc_t i_chroma;                               /**< picture chroma */
  113.     unsigned int i_aspect;                                 /**< aspect ratio */
  114.     /**@}*/
  115.     /* Real pictures */
  116.     picture_t*      pp_picture[VOUT_MAX_PICTURES];             /**< pictures */
  117.     int             i_last_used_pic;              /**< last used pic in heap */
  118.     vlc_bool_t      b_allow_modify_pics;
  119.     /* Stuff used for truecolor RGB planes */
  120.     int i_rmask, i_rrshift, i_lrshift;
  121.     int i_gmask, i_rgshift, i_lgshift;
  122.     int i_bmask, i_rbshift, i_lbshift;
  123.     /** Stuff used for palettized RGB planes */
  124.     void (* pf_setpalette) ( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
  125. };
  126. /*****************************************************************************
  127.  * Flags used to describe the status of a picture
  128.  *****************************************************************************/
  129. /* Picture type */
  130. #define EMPTY_PICTURE           0                            /* empty buffer */
  131. #define MEMORY_PICTURE          100                 /* heap-allocated buffer */
  132. #define DIRECT_PICTURE          200                         /* direct buffer */
  133. /* Picture status */
  134. #define FREE_PICTURE            0                  /* free and not allocated */
  135. #define RESERVED_PICTURE        1                  /* allocated and reserved */
  136. #define RESERVED_DATED_PICTURE  2              /* waiting for DisplayPicture */
  137. #define RESERVED_DISP_PICTURE   3               /* waiting for a DatePicture */
  138. #define READY_PICTURE           4                       /* ready for display */
  139. #define DISPLAYED_PICTURE       5            /* been displayed but is linked */
  140. #define DESTROYED_PICTURE       6              /* allocated but no more used */
  141. /*****************************************************************************
  142.  * Shortcuts to access image components
  143.  *****************************************************************************/
  144. /* Plane indices */
  145. #define Y_PLANE      0
  146. #define U_PLANE      1
  147. #define V_PLANE      2
  148. #define A_PLANE      3
  149. /* Shortcuts */
  150. #define Y_PIXELS     p[Y_PLANE].p_pixels
  151. #define Y_PITCH      p[Y_PLANE].i_pitch
  152. #define U_PIXELS     p[U_PLANE].p_pixels
  153. #define U_PITCH      p[U_PLANE].i_pitch
  154. #define V_PIXELS     p[V_PLANE].p_pixels
  155. #define V_PITCH      p[V_PLANE].i_pitch
  156. #define A_PIXELS     p[A_PLANE].p_pixels
  157. #define A_PITCH      p[A_PLANE].i_pitch
  158. /**
  159.  * defgroup subpicture Video Subpictures
  160.  * Subpictures are pictures that should be displayed on top of the video, like
  161.  * subtitles and OSD
  162.  * ingroup video_output
  163.  * @{
  164.  */
  165. /**
  166.  * Video subtitle region
  167.  *
  168.  * A subtitle region is defined by a picture (graphic) and its rendering
  169.  * coordinates.
  170.  * Subtitles contain a list of regions.
  171.  */
  172. struct subpicture_region_t
  173. {
  174.     /** name Region properties */
  175.     /**@{*/
  176.     video_format_t  fmt;                          /**< format of the picture */
  177.     picture_t       picture;             /**< picture comprising this region */
  178.     char            *psz_text;       /**< text string comprising this region */
  179.     int             i_x;                             /**< position of region */
  180.     int             i_y;                             /**< position of region */
  181.     subpicture_region_t *p_next;                /**< next region in the list */
  182.     subpicture_region_t *p_cache;       /**< modified version of this region */
  183.     /**@}*/
  184. };
  185. /**
  186.  * Video subtitle
  187.  *
  188.  * Any subtitle destined to be displayed by a video output thread should
  189.  * be stored in this structure from it's creation to it's effective display.
  190.  * Subtitle type and flags should only be modified by the output thread. Note
  191.  * that an empty subtitle MUST have its flags set to 0.
  192.  */
  193. struct subpicture_t
  194. {
  195.     /** name Channel ID */
  196.     /**@{*/
  197.     int             i_channel;                    /**< subpicture channel ID */
  198.     /**@}*/
  199.     /** name Type and flags
  200.        Should NOT be modified except by the vout thread */
  201.     /**@{*/
  202.     int             i_type;                                        /**< type */
  203.     int             i_status;                                     /**< flags */
  204.     subpicture_t *  p_next;               /**< next subtitle to be displayed */
  205.     /**@}*/
  206.     /** name Date properties */
  207.     /**@{*/
  208.     mtime_t         i_start;                  /**< beginning of display date */
  209.     mtime_t         i_stop;                         /**< end of display date */
  210.     vlc_bool_t      b_ephemer;     /**< If this flag is set to true
  211.                                       the subtitle will be displayed
  212.                                       untill the next one appear */
  213.     vlc_bool_t      b_fade;        /**< enable fading */
  214.     /**@}*/
  215.     subpicture_region_t *p_region;  /**< region list composing this subtitle */
  216.     /** name Display properties
  217.      * These properties are only indicative and may be
  218.      * changed by the video output thread, or simply ignored depending of the
  219.      * subtitle type. */
  220.     /**@{*/
  221.     int          i_x;                    /**< offset from alignment position */
  222.     int          i_y;                    /**< offset from alignment position */
  223.     int          i_width;                                 /**< picture width */
  224.     int          i_height;                               /**< picture height */
  225.     int          i_original_picture_width;  /**< original width of the movie */
  226.     int          i_original_picture_height;/**< original height of the movie */
  227.     int          b_absolute;                       /**< position is absolute */
  228.     int          i_flags;                                /**< position flags */
  229.      /**@}*/
  230.     /** Pointer to function that renders this subtitle in a picture */
  231.     void ( *pf_render )  ( vout_thread_t *, picture_t *, const subpicture_t * );
  232.     /** Pointer to function that cleans up the private data of this subtitle */
  233.     void ( *pf_destroy ) ( subpicture_t * );
  234.     /** Pointer to functions for region management */
  235.     subpicture_region_t * ( *pf_create_region ) ( vlc_object_t *,
  236.                                                   video_format_t * );
  237.     void ( *pf_destroy_region ) ( vlc_object_t *, subpicture_region_t * );
  238.     /** Private data - the subtitle plugin might want to put stuff here to
  239.      * keep track of the subpicture */
  240.     subpicture_sys_t *p_sys;                              /* subpicture data */
  241. };
  242. /* Subpicture type */
  243. #define EMPTY_SUBPICTURE       0     /* subtitle slot is empty and available */
  244. #define MEMORY_SUBPICTURE      100            /* subpicture stored in memory */
  245. /* Default subpicture channel ID */
  246. #define DEFAULT_CHAN           1
  247. /* Subpicture status */
  248. #define FREE_SUBPICTURE        0                   /* free and not allocated */
  249. #define RESERVED_SUBPICTURE    1                   /* allocated and reserved */
  250. #define READY_SUBPICTURE       2                        /* ready for display */
  251. /* Subpicture position flags */
  252. #define SUBPICTURE_ALIGN_LEFT 0x1
  253. #define SUBPICTURE_ALIGN_RIGHT 0x2
  254. #define SUBPICTURE_ALIGN_TOP 0x4
  255. #define SUBPICTURE_ALIGN_BOTTOM 0x8
  256. /*****************************************************************************
  257.  * Prototypes
  258.  *****************************************************************************/
  259. /**
  260.  * vout_CopyPicture
  261.  *
  262.  * Copy the source picture onto the destination picture.
  263.  * param p_this a vlc object
  264.  * param p_dst pointer to the destination picture.
  265.  * param p_src pointer to the source picture.
  266.  */
  267. #define vout_CopyPicture(a,b,c) __vout_CopyPicture(VLC_OBJECT(a),b,c)
  268. VLC_EXPORT( void, __vout_CopyPicture, ( vlc_object_t *p_this, picture_t *p_dst, picture_t *p_src ) );
  269. /**
  270.  * vout_InitPicture
  271.  *
  272.  * Initialise different fields of a picture_t (but does not allocate memory).
  273.  * param p_this a vlc object
  274.  * param p_pic pointer to the picture structure.
  275.  * param i_chroma the wanted chroma for the picture.
  276.  * param i_width the wanted width for the picture.
  277.  * param i_height the wanted height for the picture.
  278.  * param i_aspect the wanted aspect ratio for the picture.
  279.  */
  280. #define vout_InitPicture(a,b,c,d,e,f) 
  281.         __vout_InitPicture(VLC_OBJECT(a),b,c,d,e,f)
  282. VLC_EXPORT( int, __vout_InitPicture, ( vlc_object_t *p_this, picture_t *p_pic, uint32_t i_chroma, int i_width, int i_height, int i_aspect ) );
  283. /**
  284.  * vout_AllocatePicture
  285.  *
  286.  * Initialise different fields of a picture_t and allocates the picture buffer.
  287.  * param p_this a vlc object
  288.  * param p_pic pointer to the picture structure.
  289.  * param i_chroma the wanted chroma for the picture.
  290.  * param i_width the wanted width for the picture.
  291.  * param i_height the wanted height for the picture.
  292.  * param i_aspect the wanted aspect ratio for the picture.
  293.  */
  294. #define vout_AllocatePicture(a,b,c,d,e,f) 
  295.         __vout_AllocatePicture(VLC_OBJECT(a),b,c,d,e,f)
  296. VLC_EXPORT( int, __vout_AllocatePicture,( vlc_object_t *p_this, picture_t *p_pic, uint32_t i_chroma, int i_width, int i_height, int i_aspect ) );
  297. /**@}*/
  298. #endif /* _VLC_VIDEO_H */