vlc_es.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_es.h: Elementary stream formats descriptions
00003  *****************************************************************************
00004  * Copyright (C) 1999-2012 VLC authors and VideoLAN
00005  * $Id: 0660f636d16094ac67bc470aff3abe6cfd99010d $
00006  *
00007  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
00008  *
00009  * This program is free software; you can redistribute it and/or modify it
00010  * under the terms of the GNU Lesser General Public License as published by
00011  * the Free Software Foundation; either version 2.1 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00017  * GNU Lesser General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU Lesser General Public License
00020  * along with this program; if not, write to the Free Software Foundation,
00021  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00022  *****************************************************************************/
00023 
00024 #ifndef VLC_ES_H
00025 #define VLC_ES_H 1
00026 
00027 #include <vlc_fourcc.h>
00028 
00029 /**
00030  * \file
00031  * This file defines the elementary streams format types
00032  */
00033 
00034 /**
00035  * video palette data
00036  * \see video_format_t
00037  * \see subs_format_t
00038  */
00039 struct video_palette_t
00040 {
00041     int i_entries;      /**< to keep the compatibility with ffmpeg's palette */
00042     uint8_t palette[256][4];                   /**< 4-byte RGBA/YUVA palette */
00043 };
00044 
00045 /**
00046  * audio replay gain description
00047  */
00048 #define AUDIO_REPLAY_GAIN_MAX (2)
00049 #define AUDIO_REPLAY_GAIN_TRACK (0)
00050 #define AUDIO_REPLAY_GAIN_ALBUM (1)
00051 typedef struct
00052 {
00053     /* true if we have the peak value */
00054     bool pb_peak[AUDIO_REPLAY_GAIN_MAX];
00055     /* peak value where 1.0 means full sample value */
00056     float      pf_peak[AUDIO_REPLAY_GAIN_MAX];
00057 
00058     /* true if we have the gain value */
00059     bool pb_gain[AUDIO_REPLAY_GAIN_MAX];
00060     /* gain value in dB */
00061     float      pf_gain[AUDIO_REPLAY_GAIN_MAX];
00062 } audio_replay_gain_t;
00063 
00064 /**
00065  * audio format description
00066  */
00067 struct audio_format_t
00068 {
00069     vlc_fourcc_t i_format;                          /**< audio format fourcc */
00070     unsigned int i_rate;                              /**< audio sample-rate */
00071 
00072     /* Describes the channels configuration of the samples (ie. number of
00073      * channels which are available in the buffer, and positions). */
00074     uint16_t     i_physical_channels;
00075 
00076     /* Describes from which original channels, before downmixing, the
00077      * buffer is derived. */
00078     uint32_t     i_original_channels;
00079 
00080     /* Optional - for A/52, SPDIF and DTS types : */
00081     /* Bytes used by one compressed frame, depends on bitrate. */
00082     unsigned int i_bytes_per_frame;
00083 
00084     /* Number of sampleframes contained in one compressed frame. */
00085     unsigned int i_frame_length;
00086     /* Please note that it may be completely arbitrary - buffers are not
00087      * obliged to contain a integral number of so-called "frames". It's
00088      * just here for the division :
00089      * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
00090      */
00091 
00092     /* FIXME ? (used by the codecs) */
00093     unsigned     i_bitspersample;
00094     unsigned     i_blockalign;
00095     uint8_t      i_channels; /* must be <=32 */
00096 };
00097 
00098 /* Values available for audio channels */
00099 #define AOUT_CHAN_CENTER            0x1
00100 #define AOUT_CHAN_LEFT              0x2
00101 #define AOUT_CHAN_RIGHT             0x4
00102 #define AOUT_CHAN_REARCENTER        0x10
00103 #define AOUT_CHAN_REARLEFT          0x20
00104 #define AOUT_CHAN_REARRIGHT         0x40
00105 #define AOUT_CHAN_MIDDLELEFT        0x100
00106 #define AOUT_CHAN_MIDDLERIGHT       0x200
00107 #define AOUT_CHAN_LFE               0x1000
00108 
00109 #define AOUT_CHANS_FRONT  (AOUT_CHAN_LEFT       | AOUT_CHAN_RIGHT)
00110 #define AOUT_CHANS_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT)
00111 #define AOUT_CHANS_REAR   (AOUT_CHAN_REARLEFT   | AOUT_CHAN_REARRIGHT)
00112 #define AOUT_CHANS_CENTER (AOUT_CHAN_CENTER     | AOUT_CHAN_REARCENTER)
00113 
00114 #define AOUT_CHANS_STEREO AOUT_CHANS_2_0
00115 #define AOUT_CHANS_2_0    (AOUT_CHANS_FRONT)
00116 #define AOUT_CHANS_2_1    (AOUT_CHANS_FRONT | AOUT_CHAN_LFE)
00117 #define AOUT_CHANS_3_0    (AOUT_CHANS_FRONT | AOUT_CHAN_CENTER)
00118 #define AOUT_CHANS_3_1    (AOUT_CHANS_3_0   | AOUT_CHAN_LFE)
00119 #define AOUT_CHANS_4_0    (AOUT_CHANS_FRONT | AOUT_CHANS_REAR)
00120 #define AOUT_CHANS_4_1    (AOUT_CHANS_4_0   | AOUT_CHAN_LFE)
00121 #define AOUT_CHANS_5_0    (AOUT_CHANS_4_0   | AOUT_CHAN_CENTER)
00122 #define AOUT_CHANS_5_1    (AOUT_CHANS_5_0   | AOUT_CHAN_LFE)
00123 #define AOUT_CHANS_6_0    (AOUT_CHANS_4_0   | AOUT_CHANS_MIDDLE)
00124 #define AOUT_CHANS_7_0    (AOUT_CHANS_6_0   | AOUT_CHAN_CENTER)
00125 #define AOUT_CHANS_7_1    (AOUT_CHANS_5_1   | AOUT_CHANS_MIDDLE)
00126 
00127 #define AOUT_CHANS_4_0_MIDDLE (AOUT_CHANS_FRONT | AOUT_CHANS_MIDDLE)
00128 #define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_FRONT | AOUT_CHANS_CENTER)
00129 #define AOUT_CHANS_5_0_MIDDLE (AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER)
00130 
00131 /* Values available for original channels only */
00132 #define AOUT_CHAN_DOLBYSTEREO       0x10000
00133 #define AOUT_CHAN_DUALMONO          0x20000
00134 #define AOUT_CHAN_REVERSESTEREO     0x40000
00135 
00136 #define AOUT_CHAN_PHYSMASK          0xFFFF
00137 #define AOUT_CHAN_MAX               9
00138 
00139 /**
00140  * Picture orientation.
00141  */
00142 typedef enum video_orientation_t
00143 {
00144     ORIENT_TOP_LEFT = 0, /**< Top line represents top, left column left. */
00145     ORIENT_TOP_RIGHT, /**< Flipped horizontally */
00146     ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
00147     ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
00148     ORIENT_LEFT_TOP, /**< Transposed */
00149     ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees clockwise */
00150     ORIENT_RIGHT_TOP, /**< Rotated 90 degrees anti-clockwise */
00151     ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
00152 
00153     ORIENT_NORMAL      = ORIENT_TOP_LEFT,
00154     ORIENT_HFLIPPED    = ORIENT_TOP_RIGHT,
00155     ORIENT_VFLIPPED    = ORIENT_BOTTOM_LEFT,
00156     ORIENT_ROTATED_180 = ORIENT_BOTTOM_RIGHT,
00157     ORIENT_ROTATED_270 = ORIENT_LEFT_BOTTOM,
00158     ORIENT_ROTATED_90  = ORIENT_RIGHT_TOP,
00159 } video_orientation_t;
00160 /** Convert EXIF orientation to enum video_orientation_t */
00161 #define ORIENT_FROM_EXIF(exif) ((0x01324675U >> (4 * ((exif) - 1))) & 7)
00162 /** Convert enum video_orientation_t to EXIF */
00163 #define ORIENT_TO_EXIF(orient) ((0x12435867U >> (4 * (orient))) & 15)
00164 /** If the orientation is natural or mirrored */
00165 #define ORIENT_IS_MIRROR(orient) parity(orient)
00166 /** If the orientation swaps dimensions */
00167 #define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
00168 /** Applies horizontal flip to an orientation */
00169 #define ORIENT_HFLIP(orient) ((orient) ^ 1)
00170 /** Applies vertical flip to an orientation */
00171 #define ORIENT_VFLIP(orient) ((orient) ^ 2)
00172 /** Applies horizontal flip to an orientation */
00173 #define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
00174 
00175 /**
00176  * video format description
00177  */
00178 struct video_format_t
00179 {
00180     vlc_fourcc_t i_chroma;                               /**< picture chroma */
00181 
00182     unsigned int i_width;                                 /**< picture width */
00183     unsigned int i_height;                               /**< picture height */
00184     unsigned int i_x_offset;               /**< start offset of visible area */
00185     unsigned int i_y_offset;               /**< start offset of visible area */
00186     unsigned int i_visible_width;                 /**< width of visible area */
00187     unsigned int i_visible_height;               /**< height of visible area */
00188 
00189     unsigned int i_bits_per_pixel;             /**< number of bits per pixel */
00190 
00191     unsigned int i_sar_num;                   /**< sample/pixel aspect ratio */
00192     unsigned int i_sar_den;
00193 
00194     unsigned int i_frame_rate;                     /**< frame rate numerator */
00195     unsigned int i_frame_rate_base;              /**< frame rate denominator */
00196 
00197     uint32_t i_rmask, i_gmask, i_bmask;          /**< color masks for RGB chroma */
00198     int i_rrshift, i_lrshift;
00199     int i_rgshift, i_lgshift;
00200     int i_rbshift, i_lbshift;
00201     video_palette_t *p_palette;              /**< video palette from demuxer */
00202     video_orientation_t orientation;                /**< picture orientation */
00203 };
00204 
00205 /**
00206  * Initialize a video_format_t structure with chroma 'i_chroma'
00207  * \param p_src pointer to video_format_t structure
00208  * \param i_chroma chroma value to use
00209  */
00210 static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
00211 {
00212     memset( p_src, 0, sizeof( video_format_t ) );
00213     p_src->i_chroma = i_chroma;
00214     p_src->i_sar_num = p_src->i_sar_den = 1;
00215     p_src->p_palette = NULL;
00216 }
00217 
00218 /**
00219  * Copy video_format_t including the palette
00220  * \param p_dst video_format_t to copy to
00221  * \param p_src video_format_t to copy from
00222  */
00223 static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
00224 {
00225     memcpy( p_dst, p_src, sizeof( *p_dst ) );
00226     if( p_src->p_palette )
00227     {
00228         p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
00229         if( !p_dst->p_palette )
00230             return VLC_ENOMEM;
00231         memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
00232     }
00233     return VLC_SUCCESS;
00234 }
00235 
00236 /**
00237  * Cleanup and free palette of this video_format_t
00238  * \param p_src video_format_t structure to clean
00239  */
00240 static inline void video_format_Clean( video_format_t *p_src )
00241 {
00242     free( p_src->p_palette );
00243     memset( p_src, 0, sizeof( video_format_t ) );
00244     p_src->p_palette = NULL;
00245 }
00246 
00247 /**
00248  * It will fill up a video_format_t using the given arguments.
00249  * Note that the video_format_t must already be initialized.
00250  */
00251 VLC_API void video_format_Setup( video_format_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den );
00252 
00253 /**
00254  * It will copy the crop properties from a video_format_t to another.
00255  */
00256 VLC_API void video_format_CopyCrop( video_format_t *, const video_format_t * );
00257 
00258 /**
00259  * It will compute the crop/ar properties when scaling.
00260  */
00261 VLC_API void video_format_ScaleCropAr( video_format_t *, const video_format_t * );
00262 
00263 /**
00264  * This function will check if the first video format is similar
00265  * to the second one.
00266  */
00267 VLC_API bool video_format_IsSimilar( const video_format_t *, const video_format_t * );
00268 
00269 /**
00270  * It prints details about the given video_format_t
00271  */
00272 VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
00273 
00274 /**
00275  * subtitles format description
00276  */
00277 struct subs_format_t
00278 {
00279     /* the character encoding of the text of the subtitle.
00280      * all gettext recognized shorts can be used */
00281     char *psz_encoding;
00282 
00283 
00284     int  i_x_origin; /**< x coordinate of the subtitle. 0 = left */
00285     int  i_y_origin; /**< y coordinate of the subtitle. 0 = top */
00286 
00287     struct
00288     {
00289         /*  */
00290         uint32_t palette[16+1];
00291 
00292         /* the width of the original movie the spu was extracted from */
00293         int i_original_frame_width;
00294         /* the height of the original movie the spu was extracted from */
00295         int i_original_frame_height;
00296     } spu;
00297 
00298     struct
00299     {
00300         int i_id;
00301     } dvb;
00302     struct
00303     {
00304         int i_magazine;
00305         int i_page;
00306     } teletext;
00307 };
00308 
00309 /**
00310  * ES language definition
00311  */
00312 typedef struct extra_languages_t
00313 {
00314         char *psz_language;
00315         char *psz_description;
00316 } extra_languages_t;
00317 
00318 /**
00319  * ES format definition
00320  */
00321 struct es_format_t
00322 {
00323     int             i_cat;              /**< ES category @see es_format_category_e */
00324     vlc_fourcc_t    i_codec;            /**< FOURCC value as used in vlc */
00325     vlc_fourcc_t    i_original_fourcc;  /**< original FOURCC from the container */
00326 
00327     int             i_id;       /**< es identifier, where means
00328                                     -1: let the core mark the right id
00329                                     >=0: valid id */
00330     int             i_group;    /**< group identifier, where means:
00331                                     -1 : standalone
00332                                     >= 0 then a "group" (program) is created
00333                                         for each value */
00334     int             i_priority; /**< priority, where means:
00335                                     -2 : mean not selectable by the users
00336                                     -1 : mean not selected by default even
00337                                          when no other stream
00338                                     >=0: priority */
00339 
00340     char            *psz_language;        /**< human readible language name */
00341     char            *psz_description;     /**< human readible description of language */
00342     int             i_extra_languages;    /**< length in bytes of extra language data pointer */
00343     extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
00344 
00345     audio_format_t  audio;    /**< description of audio format */
00346     audio_replay_gain_t audio_replay_gain; /*< audio replay gain information */
00347     video_format_t video;     /**< description of video format */
00348     subs_format_t  subs;      /**< description of subtitle format */
00349 
00350     unsigned int   i_bitrate; /**< bitrate of this ES */
00351     int      i_profile;       /**< codec specific information (like real audio flavor, mpeg audio layer, h264 profile ...) */
00352     int      i_level;         /**< codec specific information: indicates maximum restrictions on the stream (resolution, bitrate, codec features ...) */
00353 
00354     bool     b_packetized;  /**< whether the data is packetized (ie. not truncated) */
00355     int     i_extra;        /**< length in bytes of extra data pointer */
00356     void    *p_extra;       /**< extra data needed by some decoders or muxers */
00357 
00358 };
00359 
00360 /** ES Categories */
00361 enum es_format_category_e
00362 {
00363     UNKNOWN_ES = 0x00,
00364     VIDEO_ES   = 0x01,
00365     AUDIO_ES   = 0x02,
00366     SPU_ES     = 0x03,
00367     NAV_ES     = 0x04,
00368 };
00369 
00370 /**
00371  * This function will fill all RGB shift from RGB masks.
00372  */
00373 VLC_API void video_format_FixRgb( video_format_t * );
00374 
00375 /**
00376  * This function will initialize a es_format_t structure.
00377  */
00378 VLC_API void es_format_Init( es_format_t *, int i_cat, vlc_fourcc_t i_codec );
00379 
00380 /**
00381  * This function will initialize a es_format_t structure from a video_format_t.
00382  */
00383 VLC_API void es_format_InitFromVideo( es_format_t *, const video_format_t * );
00384 
00385 /**
00386  * This functions will copy a es_format_t.
00387  */
00388 VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
00389 
00390 /**
00391  * This function will clean up a es_format_t and release all associated
00392  * resources.
00393  * You can call it multiple times on the same structure.
00394  */
00395 VLC_API void es_format_Clean( es_format_t *fmt );
00396 
00397 /**
00398  * This function will check if the first ES format is similar
00399  * to the second one.
00400  *
00401  * All descriptive fields are ignored.
00402  */
00403 VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
00404 
00405 #endif
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines