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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_es.h: Elementary stream formats descriptions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 VideoLAN
  5.  * $Id: vlc_es.h 9268 2004-11-10 13:01:48Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_ES_H
  24. #define _VLC_ES_H 1
  25. /**
  26.  * file
  27.  * This file defines the elementary streams format types
  28.  */
  29. /**
  30.  * video palette data
  31.  * see video_format_t
  32.  * see subs_format_t
  33.  */
  34. struct video_palette_t
  35. {
  36.     int i_entries;      /**< to keep the compatibility with ffmpeg's palette */
  37.     uint8_t palette[256][4];                   /**< 4-byte RGBA/YUVA palette */
  38. };
  39. /**
  40.  * audio format description
  41.  */
  42. struct audio_format_t
  43. {
  44.     vlc_fourcc_t i_format;                          /**< audio format fourcc */
  45.     unsigned int i_rate;                              /**< audio sample-rate */
  46.     /* Describes the channels configuration of the samples (ie. number of
  47.      * channels which are available in the buffer, and positions). */
  48.     uint32_t     i_physical_channels;
  49.     /* Describes from which original channels, before downmixing, the
  50.      * buffer is derived. */
  51.     uint32_t     i_original_channels;
  52.     /* Optional - for A/52, SPDIF and DTS types : */
  53.     /* Bytes used by one compressed frame, depends on bitrate. */
  54.     unsigned int i_bytes_per_frame;
  55.     /* Number of sampleframes contained in one compressed frame. */
  56.     unsigned int        i_frame_length;
  57.     /* Please note that it may be completely arbitrary - buffers are not
  58.      * obliged to contain a integral number of so-called "frames". It's
  59.      * just here for the division :
  60.      * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
  61.      */
  62.     /* FIXME ? (used by the codecs) */
  63.     int i_channels;
  64.     int i_blockalign;
  65.     int i_bitspersample;
  66. };
  67. #ifdef WORDS_BIGENDIAN
  68. #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','b')
  69. #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','b')
  70. #else
  71. #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','l')
  72. #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','l')
  73. #endif
  74. /**
  75.  * video format description
  76.  */
  77. struct video_format_t
  78. {
  79.     vlc_fourcc_t i_chroma;                               /**< picture chroma */
  80.     unsigned int i_aspect;                                 /**< aspect ratio */
  81.     unsigned int i_width;                                 /**< picture width */
  82.     unsigned int i_height;                               /**< picture height */
  83.     unsigned int i_x_offset;               /**< start offset of visible area */
  84.     unsigned int i_y_offset;               /**< start offset of visible area */
  85.     unsigned int i_visible_width;                 /**< width of visible area */
  86.     unsigned int i_visible_height;               /**< height of visible area */
  87.     unsigned int i_bits_per_pixel;             /**< number of bits per pixel */
  88.     unsigned int i_sar_num;                   /**< sample/pixel aspect ratio */
  89.     unsigned int i_sar_den;
  90.     unsigned int i_frame_rate;                     /**< frame rate numerator */
  91.     unsigned int i_frame_rate_base;              /**< frame rate denominator */
  92.     int i_rmask, i_gmask, i_bmask;          /**< color masks for RGB chroma */
  93.     video_palette_t *p_palette;              /**< video palette from demuxer */
  94. };
  95. /**
  96.  * subtitles format description
  97.  */
  98. struct subs_format_t
  99. {
  100.     /* the character encoding of the text of the subtitle.
  101.      * all gettext recognized shorts can be used */
  102.     char *psz_encoding;
  103.     int  i_x_origin; /**< x coordinate of the subtitle. 0 = left */
  104.     int  i_y_origin; /**< y coordinate of the subtitle. 0 = top */
  105.     struct
  106.     {
  107.         /*  */
  108.         uint32_t palette[16+1];
  109.         /* the width of the original movie the spu was extracted from */
  110.         int i_original_frame_width;
  111.         /* the height of the original movie the spu was extracted from */
  112.         int i_original_frame_height;
  113.     } spu;
  114.     struct
  115.     {
  116.         int i_id;
  117.     } dvb;
  118. };
  119. /**
  120.  * ES definition
  121.  */
  122. struct es_format_t
  123. {
  124.     int             i_cat;
  125.     vlc_fourcc_t    i_codec;
  126.     int             i_id;       /* -1: let the core mark the right id
  127.                                    >=0: valid id */
  128.     int             i_group;    /* -1 : standalone
  129.                                    >= 0 then a "group" (program) is created
  130.                                         for each value */
  131.     int             i_priority; /*  -2 : mean not selectable by the users
  132.                                     -1 : mean not selected by default even
  133.                                         when no other stream
  134.                                     >=0: priority */
  135.     char            *psz_language;
  136.     char            *psz_description;
  137.     audio_format_t audio;
  138.     video_format_t video;
  139.     subs_format_t  subs;
  140.     int            i_bitrate;
  141.     vlc_bool_t     b_packetized; /* wether the data is packetized
  142.                                     (ie. not truncated) */
  143.     int     i_extra;
  144.     void    *p_extra;
  145. };
  146. /* ES Categories */
  147. #define UNKNOWN_ES      0x00
  148. #define VIDEO_ES        0x01
  149. #define AUDIO_ES        0x02
  150. #define SPU_ES          0x03
  151. #define NAV_ES          0x04
  152. static inline void es_format_Init( es_format_t *fmt,
  153.                                    int i_cat, vlc_fourcc_t i_codec )
  154. {
  155.     fmt->i_cat                  = i_cat;
  156.     fmt->i_codec                = i_codec;
  157.     fmt->i_id                   = -1;
  158.     fmt->i_group                = 0;
  159.     fmt->i_priority             = 0;
  160.     fmt->psz_language           = NULL;
  161.     fmt->psz_description        = NULL;
  162.     memset( &fmt->audio, 0, sizeof(audio_format_t) );
  163.     memset( &fmt->video, 0, sizeof(video_format_t) );
  164.     memset( &fmt->subs, 0, sizeof(subs_format_t) );
  165.     fmt->b_packetized           = VLC_TRUE;
  166.     fmt->i_bitrate              = 0;
  167.     fmt->i_extra                = 0;
  168.     fmt->p_extra                = NULL;
  169. }
  170. static inline void es_format_Copy( es_format_t *dst, es_format_t *src )
  171. {
  172.     memcpy( dst, src, sizeof( es_format_t ) );
  173.     if( src->psz_language )
  174.          dst->psz_language = strdup( src->psz_language );
  175.     if( src->psz_description )
  176.         dst->psz_description = strdup( src->psz_description );
  177.     if( src->i_extra > 0 )
  178.     {
  179.         dst->i_extra = src->i_extra;
  180.         dst->p_extra = malloc( src->i_extra );
  181.         memcpy( dst->p_extra, src->p_extra, src->i_extra );
  182.     }
  183.     else
  184.     {
  185.         dst->i_extra = 0;
  186.         dst->p_extra = NULL;
  187.     }
  188.     if( src->subs.psz_encoding )
  189.         dst->subs.psz_encoding = strdup( src->subs.psz_encoding );
  190.     if( src->video.p_palette )
  191.     {
  192.         dst->video.p_palette =
  193.             (video_palette_t*)malloc( sizeof( video_palette_t ) );
  194.         memcpy( dst->video.p_palette, src->video.p_palette,
  195.                 sizeof( video_palette_t ) );
  196.     }
  197. }
  198. static inline void es_format_Clean( es_format_t *fmt )
  199. {
  200.     if( fmt->psz_language ) free( fmt->psz_language );
  201.     fmt->psz_language = NULL;
  202.     if( fmt->psz_description ) free( fmt->psz_description );
  203.     fmt->psz_description = NULL;
  204.     if( fmt->i_extra > 0 ) free( fmt->p_extra );
  205.     fmt->i_extra = 0; fmt->p_extra = NULL;
  206.     if( fmt->video.p_palette ) free( fmt->video.p_palette );
  207.     fmt->video.p_palette = NULL;
  208.     if( fmt->subs.psz_encoding ) free( fmt->subs.psz_encoding );
  209.     fmt->subs.psz_encoding = NULL;
  210. }
  211. #endif