QVisu
Qt-based visualization for smart homes
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
vlc_es.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_es.h: Elementary stream formats descriptions
3  *****************************************************************************
4  * Copyright (C) 1999-2012 VLC authors and VideoLAN
5  * $Id: 4c3bc9378da24e7bc56f276f2c933925dcbf712c $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 
24 #ifndef VLC_ES_H
25 #define VLC_ES_H 1
26 
27 #include <vlc_fourcc.h>
28 
40 {
41  int i_entries;
42  uint8_t palette[256][4];
43 };
44 
48 #define AUDIO_REPLAY_GAIN_MAX (2)
49 #define AUDIO_REPLAY_GAIN_TRACK (0)
50 #define AUDIO_REPLAY_GAIN_ALBUM (1)
51 typedef struct
52 {
53  /* true if we have the peak value */
54  bool pb_peak[AUDIO_REPLAY_GAIN_MAX];
55  /* peak value where 1.0 means full sample value */
56  float pf_peak[AUDIO_REPLAY_GAIN_MAX];
57 
58  /* true if we have the gain value */
59  bool pb_gain[AUDIO_REPLAY_GAIN_MAX];
60  /* gain value in dB */
61  float pf_gain[AUDIO_REPLAY_GAIN_MAX];
63 
68 {
70  unsigned int i_rate;
72  /* Describes the channels configuration of the samples (ie. number of
73  * channels which are available in the buffer, and positions). */
74  uint16_t i_physical_channels;
75 
76  /* Describes from which original channels, before downmixing, the
77  * buffer is derived. */
78  uint32_t i_original_channels;
79 
80  /* Optional - for A/52, SPDIF and DTS types : */
81  /* Bytes used by one compressed frame, depends on bitrate. */
82  unsigned int i_bytes_per_frame;
83 
84  /* Number of sampleframes contained in one compressed frame. */
85  unsigned int i_frame_length;
86  /* Please note that it may be completely arbitrary - buffers are not
87  * obliged to contain a integral number of so-called "frames". It's
88  * just here for the division :
89  * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
90  */
91 
92  /* FIXME ? (used by the codecs) */
93  unsigned i_bitspersample;
94  unsigned i_blockalign;
95  uint8_t i_channels; /* must be <=32 */
96 };
97 
98 /* Values available for audio channels */
99 #define AOUT_CHAN_CENTER 0x1
100 #define AOUT_CHAN_LEFT 0x2
101 #define AOUT_CHAN_RIGHT 0x4
102 #define AOUT_CHAN_REARCENTER 0x10
103 #define AOUT_CHAN_REARLEFT 0x20
104 #define AOUT_CHAN_REARRIGHT 0x40
105 #define AOUT_CHAN_MIDDLELEFT 0x100
106 #define AOUT_CHAN_MIDDLERIGHT 0x200
107 #define AOUT_CHAN_LFE 0x1000
108 
109 #define AOUT_CHANS_FRONT (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)
110 #define AOUT_CHANS_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT)
111 #define AOUT_CHANS_REAR (AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)
112 #define AOUT_CHANS_CENTER (AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER)
113 
114 #define AOUT_CHANS_STEREO AOUT_CHANS_2_0
115 #define AOUT_CHANS_2_0 (AOUT_CHANS_FRONT)
116 #define AOUT_CHANS_2_1 (AOUT_CHANS_FRONT | AOUT_CHAN_LFE)
117 #define AOUT_CHANS_3_0 (AOUT_CHANS_FRONT | AOUT_CHAN_CENTER)
118 #define AOUT_CHANS_3_1 (AOUT_CHANS_3_0 | AOUT_CHAN_LFE)
119 #define AOUT_CHANS_4_0 (AOUT_CHANS_FRONT | AOUT_CHANS_REAR)
120 #define AOUT_CHANS_4_1 (AOUT_CHANS_4_0 | AOUT_CHAN_LFE)
121 #define AOUT_CHANS_5_0 (AOUT_CHANS_4_0 | AOUT_CHAN_CENTER)
122 #define AOUT_CHANS_5_1 (AOUT_CHANS_5_0 | AOUT_CHAN_LFE)
123 #define AOUT_CHANS_6_0 (AOUT_CHANS_4_0 | AOUT_CHANS_MIDDLE)
124 #define AOUT_CHANS_7_0 (AOUT_CHANS_6_0 | AOUT_CHAN_CENTER)
125 #define AOUT_CHANS_7_1 (AOUT_CHANS_5_1 | AOUT_CHANS_MIDDLE)
126 #define AOUT_CHANS_8_1 (AOUT_CHANS_7_1 | AOUT_CHAN_REARCENTER)
127 
128 #define AOUT_CHANS_4_0_MIDDLE (AOUT_CHANS_FRONT | AOUT_CHANS_MIDDLE)
129 #define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_FRONT | AOUT_CHANS_CENTER)
130 #define AOUT_CHANS_5_0_MIDDLE (AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER)
131 #define AOUT_CHANS_6_1_MIDDLE (AOUT_CHANS_5_0_MIDDLE | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE)
132 
133 /* Values available for original channels only */
134 #define AOUT_CHAN_DOLBYSTEREO 0x10000
135 #define AOUT_CHAN_DUALMONO 0x20000
136 #define AOUT_CHAN_REVERSESTEREO 0x40000
137 
138 #define AOUT_CHAN_PHYSMASK 0xFFFF
139 #define AOUT_CHAN_MAX 9
140 
145 {
155  ORIENT_NORMAL = ORIENT_TOP_LEFT,
156  ORIENT_HFLIPPED = ORIENT_TOP_RIGHT,
157  ORIENT_VFLIPPED = ORIENT_BOTTOM_LEFT,
158  ORIENT_ROTATED_180 = ORIENT_BOTTOM_RIGHT,
159  ORIENT_ROTATED_270 = ORIENT_LEFT_BOTTOM,
160  ORIENT_ROTATED_90 = ORIENT_RIGHT_TOP,
163 #define ORIENT_FROM_EXIF(exif) ((0x01324675U >> (4 * ((exif) - 1))) & 7)
164 
165 #define ORIENT_TO_EXIF(orient) ((0x12435867U >> (4 * (orient))) & 15)
166 
167 #define ORIENT_IS_MIRROR(orient) parity(orient)
168 
169 #define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
170 
171 #define ORIENT_HFLIP(orient) ((orient) ^ 1)
172 
173 #define ORIENT_VFLIP(orient) ((orient) ^ 2)
174 
175 #define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
176 
181 {
184  unsigned int i_width;
185  unsigned int i_height;
186  unsigned int i_x_offset;
187  unsigned int i_y_offset;
188  unsigned int i_visible_width;
189  unsigned int i_visible_height;
191  unsigned int i_bits_per_pixel;
193  unsigned int i_sar_num;
194  unsigned int i_sar_den;
195 
196  unsigned int i_frame_rate;
197  unsigned int i_frame_rate_base;
199  uint32_t i_rmask, i_gmask, i_bmask;
200  int i_rrshift, i_lrshift;
201  int i_rgshift, i_lgshift;
202  int i_rbshift, i_lbshift;
205 };
206 
212 static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
213 {
214  memset( p_src, 0, sizeof( video_format_t ) );
215  p_src->i_chroma = i_chroma;
216  p_src->i_sar_num = p_src->i_sar_den = 1;
217  p_src->p_palette = NULL;
218 }
219 
225 static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
226 {
227  memcpy( p_dst, p_src, sizeof( *p_dst ) );
228  if( p_src->p_palette )
229  {
230  p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
231  if( !p_dst->p_palette )
232  return VLC_ENOMEM;
233  memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
234  }
235  return VLC_SUCCESS;
236 }
237 
242 static inline void video_format_Clean( video_format_t *p_src )
243 {
244  free( p_src->p_palette );
245  memset( p_src, 0, sizeof( video_format_t ) );
246  p_src->p_palette = NULL;
247 }
248 
253 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 );
254 
258 VLC_API void video_format_CopyCrop( video_format_t *, const video_format_t * );
259 
263 VLC_API void video_format_ScaleCropAr( video_format_t *, const video_format_t * );
264 
269 VLC_API bool video_format_IsSimilar( const video_format_t *, const video_format_t * );
270 
274 VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
275 
280 {
281  /* the character encoding of the text of the subtitle.
282  * all gettext recognized shorts can be used */
283  char *psz_encoding;
284 
285 
289  struct
290  {
291  /* */
292  uint32_t palette[16+1];
293 
294  /* the width of the original movie the spu was extracted from */
295  int i_original_frame_width;
296  /* the height of the original movie the spu was extracted from */
297  int i_original_frame_height;
298  } spu;
299 
300  struct
301  {
302  int i_id;
303  } dvb;
304  struct
305  {
306  int i_magazine;
307  int i_page;
308  } teletext;
309 };
310 
314 typedef struct extra_languages_t
315 {
316  char *psz_language;
317  char *psz_description;
319 
324 {
325  int i_cat;
329  int i_id;
332  int i_group;
342  char *psz_language;
348  audio_replay_gain_t audio_replay_gain; /*< audio replay gain information */
352  unsigned int i_bitrate;
353  int i_profile;
354  int i_level;
357  int i_extra;
358  void *p_extra;
360 };
361 
364 {
365  UNKNOWN_ES = 0x00,
366  VIDEO_ES = 0x01,
367  AUDIO_ES = 0x02,
368  SPU_ES = 0x03,
369  NAV_ES = 0x04,
370 };
371 
375 VLC_API void video_format_FixRgb( video_format_t * );
376 
380 VLC_API void es_format_Init( es_format_t *, int i_cat, vlc_fourcc_t i_codec );
381 
385 VLC_API void es_format_InitFromVideo( es_format_t *, const video_format_t * );
386 
390 VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
391 
397 VLC_API void es_format_Clean( es_format_t *fmt );
398 
405 VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
406 
407 #endif
unsigned int i_bitrate
Definition: vlc_es.h:352
#define AUDIO_REPLAY_GAIN_MAX
Definition: vlc_es.h:48
Definition: vlc_es.h:150
vlc_fourcc_t i_codec
Definition: vlc_es.h:326
Definition: vlc_es.h:151
int i_profile
Definition: vlc_es.h:353
video_orientation_t
Definition: vlc_es.h:144
uint32_t i_bmask
Definition: vlc_es.h:199
unsigned int i_y_offset
Definition: vlc_es.h:187
Definition: vlc_es.h:314
Definition: vlc_es.h:51
unsigned int i_bits_per_pixel
Definition: vlc_es.h:191
vlc_fourcc_t i_original_fourcc
Definition: vlc_es.h:327
char * psz_description
Definition: vlc_es.h:343
Definition: vlc_es.h:152
VLC_API bool es_format_IsSimilar(const es_format_t *, const es_format_t *)
VLC_API void video_format_CopyCrop(video_format_t *, const video_format_t *)
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)
int i_extra_languages
Definition: vlc_es.h:344
int i_cat
Definition: vlc_es.h:325
subs_format_t subs
Definition: vlc_es.h:350
Definition: vlc_es.h:146
VLC_API void video_format_ScaleCropAr(video_format_t *, const video_format_t *)
int i_entries
Definition: vlc_es.h:41
unsigned int i_sar_num
Definition: vlc_es.h:193
int i_x_origin
Definition: vlc_es.h:286
VLC_API void es_format_InitFromVideo(es_format_t *, const video_format_t *)
es_format_category_e
Definition: vlc_es.h:363
Definition: vlc_es.h:67
Definition: vlc_es.h:39
unsigned int i_rate
Definition: vlc_es.h:70
VLC_API void es_format_Init(es_format_t *, int i_cat, vlc_fourcc_t i_codec)
unsigned int i_x_offset
Definition: vlc_es.h:186
uint8_t palette[256][4]
Definition: vlc_es.h:42
struct extra_languages_t extra_languages_t
char * psz_language
Definition: vlc_es.h:342
VLC_API bool video_format_IsSimilar(const video_format_t *, const video_format_t *)
int i_id
Definition: vlc_es.h:329
void * p_extra
Definition: vlc_es.h:358
Definition: vlc_es.h:279
Definition: vlc_es.h:323
Definition: vlc_es.h:149
int i_level
Definition: vlc_es.h:354
#define VLC_SUCCESS
Definition: vlc_common.h:373
Definition: vlc_es.h:180
unsigned int i_frame_rate
Definition: vlc_es.h:196
int i_y_origin
Definition: vlc_es.h:287
VLC_API int es_format_Copy(es_format_t *p_dst, const es_format_t *p_src)
vlc_fourcc_t i_format
Definition: vlc_es.h:69
unsigned int i_width
Definition: vlc_es.h:184
Definition: vlc_es.h:153
#define VLC_ENOMEM
Definition: vlc_common.h:375
int i_extra
Definition: vlc_es.h:357
unsigned int i_visible_width
Definition: vlc_es.h:188
int i_group
Definition: vlc_es.h:332
VLC_API void video_format_Print(vlc_object_t *, const char *, const video_format_t *)
video_format_t video
Definition: vlc_es.h:349
Definition: vlc_es.h:148
vlc_fourcc_t i_chroma
Definition: vlc_es.h:182
uint32_t vlc_fourcc_t
Definition: vlc_common.h:160
audio_format_t audio
Definition: vlc_es.h:347
unsigned int i_visible_height
Definition: vlc_es.h:189
unsigned int i_frame_rate_base
Definition: vlc_es.h:197
Definition: vlc_es.h:147
bool b_packetized
Definition: vlc_es.h:356
VLC_API void video_format_FixRgb(video_format_t *)
unsigned int i_height
Definition: vlc_es.h:185
VLC_API void es_format_Clean(es_format_t *fmt)
extra_languages_t * p_extra_languages
Definition: vlc_es.h:345
Definition: vlc_objects.h:42
int i_priority
Definition: vlc_es.h:336
video_orientation_t orientation
Definition: vlc_es.h:204
video_palette_t * p_palette
Definition: vlc_es.h:203