vlc_es.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_es.h: Elementary stream formats descriptions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 the VideoLAN team
  5.  * $Id: 8744f20f733e05d67f7e20dff8926a62b23590b9 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef VLC_ES_H
  24. #define VLC_ES_H 1
  25. /* FIXME: i'm not too sure about this include but it fixes compilation of
  26.  * video chromas -- dionoea */
  27. #include "vlc_common.h"
  28. /**
  29.  * file
  30.  * This file defines the elementary streams format types
  31.  */
  32. /**
  33.  * video palette data
  34.  * see video_format_t
  35.  * see subs_format_t
  36.  */
  37. struct video_palette_t
  38. {
  39.     int i_entries;      /**< to keep the compatibility with ffmpeg's palette */
  40.     uint8_t palette[256][4];                   /**< 4-byte RGBA/YUVA palette */
  41. };
  42. /**
  43.  * audio replay gain description
  44.  */
  45. #define AUDIO_REPLAY_GAIN_MAX (2)
  46. #define AUDIO_REPLAY_GAIN_TRACK (0)
  47. #define AUDIO_REPLAY_GAIN_ALBUM (1)
  48. typedef struct
  49. {
  50.     /* true if we have the peak value */
  51.     bool pb_peak[AUDIO_REPLAY_GAIN_MAX];
  52.     /* peak value where 1.0 means full sample value */
  53.     float      pf_peak[AUDIO_REPLAY_GAIN_MAX];
  54.     /* true if we have the gain value */
  55.     bool pb_gain[AUDIO_REPLAY_GAIN_MAX];
  56.     /* gain value in dB */
  57.     float      pf_gain[AUDIO_REPLAY_GAIN_MAX];
  58. } audio_replay_gain_t;
  59. /**
  60.  * audio format description
  61.  */
  62. struct audio_format_t
  63. {
  64.     vlc_fourcc_t i_format;                          /**< audio format fourcc */
  65.     unsigned int i_rate;                              /**< audio sample-rate */
  66.     /* Describes the channels configuration of the samples (ie. number of
  67.      * channels which are available in the buffer, and positions). */
  68.     uint32_t     i_physical_channels;
  69.     /* Describes from which original channels, before downmixing, the
  70.      * buffer is derived. */
  71.     uint32_t     i_original_channels;
  72.     /* Optional - for A/52, SPDIF and DTS types : */
  73.     /* Bytes used by one compressed frame, depends on bitrate. */
  74.     unsigned int i_bytes_per_frame;
  75.     /* Number of sampleframes contained in one compressed frame. */
  76.     unsigned int i_frame_length;
  77.     /* Please note that it may be completely arbitrary - buffers are not
  78.      * obliged to contain a integral number of so-called "frames". It's
  79.      * just here for the division :
  80.      * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
  81.      */
  82.     /* FIXME ? (used by the codecs) */
  83.     unsigned     i_bitspersample;
  84.     unsigned     i_blockalign;
  85.     uint8_t      i_channels; /* must be <=32 */
  86.     uint8_t      i_flavor;
  87. };
  88. #ifdef WORDS_BIGENDIAN
  89. #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','b')
  90. #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','b')
  91. #else
  92. #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','l')
  93. #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','l')
  94. #endif
  95. /**
  96.  * video format description
  97.  */
  98. struct video_format_t
  99. {
  100.     vlc_fourcc_t i_chroma;                               /**< picture chroma */
  101.     unsigned int i_aspect;                                 /**< aspect ratio */
  102.     unsigned int i_width;                                 /**< picture width */
  103.     unsigned int i_height;                               /**< picture height */
  104.     unsigned int i_x_offset;               /**< start offset of visible area */
  105.     unsigned int i_y_offset;               /**< start offset of visible area */
  106.     unsigned int i_visible_width;                 /**< width of visible area */
  107.     unsigned int i_visible_height;               /**< height of visible area */
  108.     unsigned int i_bits_per_pixel;             /**< number of bits per pixel */
  109.     unsigned int i_sar_num;                   /**< sample/pixel aspect ratio */
  110.     unsigned int i_sar_den;
  111.     unsigned int i_frame_rate;                     /**< frame rate numerator */
  112.     unsigned int i_frame_rate_base;              /**< frame rate denominator */
  113.     int i_rmask, i_gmask, i_bmask;          /**< color masks for RGB chroma */
  114.     int i_rrshift, i_lrshift;
  115.     int i_rgshift, i_lgshift;
  116.     int i_rbshift, i_lbshift;
  117.     video_palette_t *p_palette;              /**< video palette from demuxer */
  118. };
  119. /**
  120.  * Initialize a video_format_t structure with chroma 'i_chroma'
  121.  * param p_src pointer to video_format_t structure
  122.  * param i_chroma chroma value to use
  123.  */
  124. static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
  125. {
  126.     memset( p_src, 0, sizeof( video_format_t ) );
  127.     p_src->i_chroma = i_chroma;
  128.     p_src->i_sar_num = p_src->i_sar_den = 1;
  129.     p_src->p_palette = NULL;
  130. }
  131. /**
  132.  * Copy video_format_t including the palette
  133.  * param p_dst video_format_t to copy to
  134.  * param p_src video_format_t to copy from
  135.  */
  136. static inline int video_format_Copy( video_format_t *p_dst, video_format_t *p_src )
  137. {
  138.     memcpy( p_dst, p_src, sizeof( video_format_t ) );
  139.     if( p_src->p_palette )
  140.     {
  141.         p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
  142.         if( !p_dst->p_palette )
  143.             return VLC_ENOMEM;
  144.         memcpy( p_dst->p_palette, p_src->p_palette, sizeof( video_palette_t ) );
  145.     }
  146.     return VLC_SUCCESS;
  147. };
  148. /**
  149.  * Cleanup and free palette of this video_format_t
  150.  * param p_src video_format_t structure to clean
  151.  */
  152. static inline void video_format_Clean( video_format_t *p_src )
  153. {
  154.     free( p_src->p_palette );
  155.     memset( p_src, 0, sizeof( video_format_t ) );
  156.     p_src->p_palette = NULL;
  157. }
  158. /**
  159.  * subtitles format description
  160.  */
  161. struct subs_format_t
  162. {
  163.     /* the character encoding of the text of the subtitle.
  164.      * all gettext recognized shorts can be used */
  165.     char *psz_encoding;
  166.     int  i_x_origin; /**< x coordinate of the subtitle. 0 = left */
  167.     int  i_y_origin; /**< y coordinate of the subtitle. 0 = top */
  168.     struct
  169.     {
  170.         /*  */
  171.         uint32_t palette[16+1];
  172.         /* the width of the original movie the spu was extracted from */
  173.         int i_original_frame_width;
  174.         /* the height of the original movie the spu was extracted from */
  175.         int i_original_frame_height;
  176.     } spu;
  177.     struct
  178.     {
  179.         int i_id;
  180.     } dvb;
  181.     struct
  182.     {
  183.         int i_magazine;
  184.         int i_page;
  185.     } teletext;
  186. };
  187. /**
  188.  * ES language definition
  189.  */
  190. typedef struct extra_languages_t
  191. {
  192.         char *psz_language;
  193.         char *psz_description;
  194. } extra_languages_t;
  195. /**
  196.  * ES format definition
  197.  */
  198. struct es_format_t
  199. {
  200.     int             i_cat;      /**< ES category @see es_format_category_e */
  201.     vlc_fourcc_t    i_codec;    /**< FOURCC value as used in vlc */
  202.     int             i_id;       /**< es identifier, where means
  203.                                     -1: let the core mark the right id
  204.                                     >=0: valid id */
  205.     int             i_group;    /**< group identifier, where means:
  206.                                     -1 : standalone
  207.                                     >= 0 then a "group" (program) is created
  208.                                         for each value */
  209.     int             i_priority; /**< priority, where means:
  210.                                     -2 : mean not selectable by the users
  211.                                     -1 : mean not selected by default even
  212.                                          when no other stream
  213.                                     >=0: priority */
  214.     char            *psz_language;        /**< human readible language name */
  215.     char            *psz_description;     /**< human readible description of language */
  216.     int             i_extra_languages;    /**< length in bytes of extra language data pointer */
  217.     extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
  218.     audio_format_t  audio;    /**< description of audio format */
  219.     audio_replay_gain_t audio_replay_gain; /*< audio replay gain information */
  220.     video_format_t video;     /**< description of video format */
  221.     subs_format_t  subs;      /**< description of subtitle format */
  222.     unsigned int   i_bitrate; /**< bitrate of this ES */
  223.     bool     b_packetized;  /**< wether the data is packetized (ie. not truncated) */
  224.     int     i_extra;        /**< length in bytes of extra data pointer */
  225.     void    *p_extra;       /**< extra data needed by some decoders or muxers */
  226. };
  227. /** ES Categories */
  228. enum es_format_category_e
  229. {
  230.     UNKNOWN_ES = 0x00,
  231.     VIDEO_ES   = 0x01,
  232.     AUDIO_ES   = 0x02,
  233.     SPU_ES     = 0x03,
  234.     NAV_ES     = 0x04,
  235. };
  236. /**
  237.  * This function will fill all RGB shift from RGB masks.
  238.  */
  239. VLC_EXPORT( void, video_format_FixRgb, ( video_format_t * ) );
  240. /**
  241.  * This funtion will initialize a es_format_t structure.
  242.  */
  243. VLC_EXPORT( void, es_format_Init, ( es_format_t *, int i_cat, vlc_fourcc_t i_codec ) );
  244. /**
  245.  * This functions will copy a es_format_t.
  246.  */
  247. VLC_EXPORT( int, es_format_Copy, ( es_format_t *p_dst, const es_format_t *p_src ) );
  248. /**
  249.  * This function will clean up a es_format_t and relasing all associated
  250.  * resources.
  251.  * You can call it multiple times on the same structure.
  252.  */
  253. VLC_EXPORT( void, es_format_Clean, ( es_format_t *fmt ) );
  254. #endif