qml: rename ExpandGridView.model to ExpandGridView.delegateModel
[vlc.git] / include / vlc_es.h
blob5fb5ec12984dfee8ca45e772c520c32b8abcd5f9
1 /*****************************************************************************
2 * vlc_es.h: Elementary stream formats descriptions
3 *****************************************************************************
4 * Copyright (C) 1999-2012 VLC authors and VideoLAN
6 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #ifndef VLC_ES_H
24 #define VLC_ES_H 1
26 #include <vlc_common.h>
27 #include <vlc_fourcc.h>
28 #include <vlc_viewpoint.h>
30 /**
31 * \file
32 * This file defines the elementary streams format types
35 /**
36 * video palette data
37 * \see video_format_t
38 * \see subs_format_t
40 #define VIDEO_PALETTE_COLORS_MAX 256
42 struct video_palette_t
44 int i_entries; /**< to keep the compatibility with libavcodec's palette */
45 uint8_t palette[VIDEO_PALETTE_COLORS_MAX][4]; /**< 4-byte RGBA/YUVA palette */
48 /**
49 * audio replay gain description
51 #define AUDIO_REPLAY_GAIN_MAX (2)
52 #define AUDIO_REPLAY_GAIN_TRACK (0)
53 #define AUDIO_REPLAY_GAIN_ALBUM (1)
54 typedef struct
56 /* true if we have the peak value */
57 bool pb_peak[AUDIO_REPLAY_GAIN_MAX];
58 /* peak value where 1.0 means full sample value */
59 float pf_peak[AUDIO_REPLAY_GAIN_MAX];
61 /* true if we have the gain value */
62 bool pb_gain[AUDIO_REPLAY_GAIN_MAX];
63 /* gain value in dB */
64 float pf_gain[AUDIO_REPLAY_GAIN_MAX];
65 } audio_replay_gain_t;
68 /**
69 * Audio channel type
71 typedef enum audio_channel_type_t
73 AUDIO_CHANNEL_TYPE_BITMAP,
74 AUDIO_CHANNEL_TYPE_AMBISONICS,
75 } audio_channel_type_t;
77 /**
78 * audio format description
80 struct audio_format_t
82 vlc_fourcc_t i_format; /**< audio format fourcc */
83 unsigned int i_rate; /**< audio sample-rate */
85 /* Describes the channels configuration of the samples (ie. number of
86 * channels which are available in the buffer, and positions). */
87 uint16_t i_physical_channels;
89 /* Describes the chan mode, either set from the input
90 * (demux/codec/packetizer) or overridden by the user, used by audio
91 * filters. */
92 uint16_t i_chan_mode;
94 /* Channel type */
95 audio_channel_type_t channel_type;
97 /* Optional - for A/52, SPDIF and DTS types : */
98 /* Bytes used by one compressed frame, depends on bitrate. */
99 unsigned int i_bytes_per_frame;
101 /* Number of sampleframes contained in one compressed frame. */
102 unsigned int i_frame_length;
103 /* Please note that it may be completely arbitrary - buffers are not
104 * obliged to contain a integral number of so-called "frames". It's
105 * just here for the division :
106 * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
109 /* FIXME ? (used by the codecs) */
110 unsigned i_bitspersample;
111 unsigned i_blockalign;
112 uint8_t i_channels; /* must be <=32 */
115 /* Values available for audio channels */
116 #define AOUT_CHAN_CENTER 0x1
117 #define AOUT_CHAN_LEFT 0x2
118 #define AOUT_CHAN_RIGHT 0x4
119 #define AOUT_CHAN_REARCENTER 0x10
120 #define AOUT_CHAN_REARLEFT 0x20
121 #define AOUT_CHAN_REARRIGHT 0x40
122 #define AOUT_CHAN_MIDDLELEFT 0x100
123 #define AOUT_CHAN_MIDDLERIGHT 0x200
124 #define AOUT_CHAN_LFE 0x1000
126 #define AOUT_CHANS_FRONT (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)
127 #define AOUT_CHANS_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT)
128 #define AOUT_CHANS_REAR (AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)
129 #define AOUT_CHANS_CENTER (AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER)
131 #define AOUT_CHANS_STEREO AOUT_CHANS_2_0
132 #define AOUT_CHANS_2_0 (AOUT_CHANS_FRONT)
133 #define AOUT_CHANS_2_1 (AOUT_CHANS_FRONT | AOUT_CHAN_LFE)
134 #define AOUT_CHANS_3_0 (AOUT_CHANS_FRONT | AOUT_CHAN_CENTER)
135 #define AOUT_CHANS_3_1 (AOUT_CHANS_3_0 | AOUT_CHAN_LFE)
136 #define AOUT_CHANS_4_0 (AOUT_CHANS_FRONT | AOUT_CHANS_REAR)
137 #define AOUT_CHANS_4_1 (AOUT_CHANS_4_0 | AOUT_CHAN_LFE)
138 #define AOUT_CHANS_5_0 (AOUT_CHANS_4_0 | AOUT_CHAN_CENTER)
139 #define AOUT_CHANS_5_1 (AOUT_CHANS_5_0 | AOUT_CHAN_LFE)
140 #define AOUT_CHANS_6_0 (AOUT_CHANS_4_0 | AOUT_CHANS_MIDDLE)
141 #define AOUT_CHANS_7_0 (AOUT_CHANS_6_0 | AOUT_CHAN_CENTER)
142 #define AOUT_CHANS_7_1 (AOUT_CHANS_5_1 | AOUT_CHANS_MIDDLE)
143 #define AOUT_CHANS_8_1 (AOUT_CHANS_7_1 | AOUT_CHAN_REARCENTER)
145 #define AOUT_CHANS_4_0_MIDDLE (AOUT_CHANS_FRONT | AOUT_CHANS_MIDDLE)
146 #define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_FRONT | AOUT_CHANS_CENTER)
147 #define AOUT_CHANS_5_0_MIDDLE (AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER)
148 #define AOUT_CHANS_6_1_MIDDLE (AOUT_CHANS_5_0_MIDDLE | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE)
150 /* Maximum number of mapped channels (or the maximum of bits set in
151 * i_physical_channels) */
152 #define AOUT_CHAN_MAX 9
153 /* Maximum number of unmapped channels */
154 #define INPUT_CHAN_MAX 64
156 static const uint16_t vlc_chan_maps[] =
159 AOUT_CHAN_CENTER,
160 AOUT_CHANS_2_0,
161 AOUT_CHANS_3_0,
162 AOUT_CHANS_4_0,
163 AOUT_CHANS_5_0,
164 AOUT_CHANS_5_1,
165 AOUT_CHANS_7_0,
166 AOUT_CHANS_7_1,
167 AOUT_CHANS_8_1,
170 /* Values available for i_chan_mode only */
171 #define AOUT_CHANMODE_DUALMONO 0x1
172 #define AOUT_CHANMODE_DOLBYSTEREO 0x2
175 * Picture orientation.
177 typedef enum video_orientation_t
179 ORIENT_TOP_LEFT = 0, /**< Top line represents top, left column left. */
180 ORIENT_TOP_RIGHT, /**< Flipped horizontally */
181 ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
182 ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
183 ORIENT_LEFT_TOP, /**< Transposed */
184 ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees clockwise */
185 ORIENT_RIGHT_TOP, /**< Rotated 90 degrees anti-clockwise */
186 ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
188 ORIENT_NORMAL = ORIENT_TOP_LEFT,
189 ORIENT_TRANSPOSED = ORIENT_LEFT_TOP,
190 ORIENT_ANTI_TRANSPOSED = ORIENT_RIGHT_BOTTOM,
191 ORIENT_HFLIPPED = ORIENT_TOP_RIGHT,
192 ORIENT_VFLIPPED = ORIENT_BOTTOM_LEFT,
193 ORIENT_ROTATED_180 = ORIENT_BOTTOM_RIGHT,
194 ORIENT_ROTATED_270 = ORIENT_LEFT_BOTTOM,
195 ORIENT_ROTATED_90 = ORIENT_RIGHT_TOP,
196 } video_orientation_t;
197 /** Convert EXIF orientation to enum video_orientation_t */
198 #define ORIENT_FROM_EXIF(exif) ((0x57642310U >> (4 * ((exif) - 1))) & 7)
199 /** Convert enum video_orientation_t to EXIF */
200 #define ORIENT_TO_EXIF(orient) ((0x76853421U >> (4 * (orient))) & 15)
201 /** If the orientation is natural or mirrored */
202 #define ORIENT_IS_MIRROR(orient) parity(orient)
203 /** If the orientation swaps dimensions */
204 #define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
205 /** Applies horizontal flip to an orientation */
206 #define ORIENT_HFLIP(orient) ((orient) ^ 1)
207 /** Applies vertical flip to an orientation */
208 #define ORIENT_VFLIP(orient) ((orient) ^ 2)
209 /** Applies horizontal flip to an orientation */
210 #define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
212 typedef enum video_transform_t
214 TRANSFORM_IDENTITY = ORIENT_NORMAL,
215 TRANSFORM_HFLIP = ORIENT_HFLIPPED,
216 TRANSFORM_VFLIP = ORIENT_VFLIPPED,
217 TRANSFORM_R180 = ORIENT_ROTATED_180,
218 TRANSFORM_R270 = ORIENT_ROTATED_270,
219 TRANSFORM_R90 = ORIENT_ROTATED_90,
220 TRANSFORM_TRANSPOSE = ORIENT_TRANSPOSED,
221 TRANSFORM_ANTI_TRANSPOSE = ORIENT_ANTI_TRANSPOSED
222 } video_transform_t;
224 typedef enum video_multiview_mode_t
226 /* No stereoscopy: 2D picture. */
227 MULTIVIEW_2D = 0,
229 /* Side-by-side with left eye first. */
230 MULTIVIEW_STEREO_SBS,
232 /* Top-bottom with left eye first. */
233 MULTIVIEW_STEREO_TB,
235 /* Row sequential with left eye first. */
236 MULTIVIEW_STEREO_ROW,
238 /* Column sequential with left eye first. */
239 MULTIVIEW_STEREO_COL,
241 /* Frame sequential with left eye first. */
242 MULTIVIEW_STEREO_FRAME,
244 /* Checkerboard pattern with left eye first. */
245 MULTIVIEW_STEREO_CHECKERBOARD,
247 #define MULTIVIEW_STEREO_MAX MULTIVIEW_STEREO_CHECKERBOARD
248 } video_multiview_mode_t;
251 * Video projection mode.
253 typedef enum video_projection_mode_t
255 PROJECTION_MODE_RECTANGULAR = 0,
256 PROJECTION_MODE_EQUIRECTANGULAR,
258 PROJECTION_MODE_CUBEMAP_LAYOUT_STANDARD = 0x100,
259 } video_projection_mode_t;
262 * Video color primaries (a.k.a. chromacities)
264 typedef enum video_color_primaries_t
266 COLOR_PRIMARIES_UNDEF,
267 COLOR_PRIMARIES_BT601_525,
268 COLOR_PRIMARIES_BT601_625,
269 COLOR_PRIMARIES_BT709,
270 COLOR_PRIMARIES_BT2020,
271 COLOR_PRIMARIES_DCI_P3,
272 COLOR_PRIMARIES_FCC1953,
273 #define COLOR_PRIMARIES_SRGB COLOR_PRIMARIES_BT709
274 #define COLOR_PRIMARIES_SMTPE_170 COLOR_PRIMARIES_BT601_525
275 #define COLOR_PRIMARIES_SMTPE_240 COLOR_PRIMARIES_BT601_525 /* Only differs from 1e10-4 in white Y */
276 #define COLOR_PRIMARIES_SMTPE_RP145 COLOR_PRIMARIES_BT601_525
277 #define COLOR_PRIMARIES_EBU_3213 COLOR_PRIMARIES_BT601_625
278 #define COLOR_PRIMARIES_BT470_BG COLOR_PRIMARIES_BT601_625
279 #define COLOR_PRIMARIES_BT470_M COLOR_PRIMARIES_FCC1953
280 #define COLOR_PRIMARIES_MAX COLOR_PRIMARIES_FCC1953
281 } video_color_primaries_t;
284 * Video transfer functions
286 typedef enum video_transfer_func_t
288 TRANSFER_FUNC_UNDEF,
289 TRANSFER_FUNC_LINEAR,
290 TRANSFER_FUNC_SRGB /*< Gamma 2.2 */,
291 TRANSFER_FUNC_BT470_BG,
292 TRANSFER_FUNC_BT470_M,
293 TRANSFER_FUNC_BT709,
294 TRANSFER_FUNC_SMPTE_ST2084,
295 TRANSFER_FUNC_SMPTE_240,
296 TRANSFER_FUNC_HLG,
297 #define TRANSFER_FUNC_BT2020 TRANSFER_FUNC_BT709
298 #define TRANSFER_FUNC_SMPTE_170 TRANSFER_FUNC_BT709
299 #define TRANSFER_FUNC_SMPTE_274 TRANSFER_FUNC_BT709
300 #define TRANSFER_FUNC_SMPTE_293 TRANSFER_FUNC_BT709
301 #define TRANSFER_FUNC_SMPTE_296 TRANSFER_FUNC_BT709
302 #define TRANSFER_FUNC_ARIB_B67 TRANSFER_FUNC_HLG
303 #define TRANSFER_FUNC_MAX TRANSFER_FUNC_HLG
304 } video_transfer_func_t;
307 * Video color space (i.e. YCbCr matrices)
309 typedef enum video_color_space_t
311 COLOR_SPACE_UNDEF,
312 COLOR_SPACE_BT601,
313 COLOR_SPACE_BT709,
314 COLOR_SPACE_BT2020,
315 #define COLOR_SPACE_SRGB COLOR_SPACE_BT709
316 #define COLOR_SPACE_SMPTE_170 COLOR_SPACE_BT601
317 #define COLOR_SPACE_SMPTE_240 COLOR_SPACE_SMPTE_170
318 #define COLOR_SPACE_MAX COLOR_SPACE_BT2020
319 } video_color_space_t;
322 * Video chroma location
324 typedef enum video_chroma_location_t
326 CHROMA_LOCATION_UNDEF,
327 CHROMA_LOCATION_LEFT, /*< Most common in MPEG-2 Video, H.264/265 */
328 CHROMA_LOCATION_CENTER, /*< Most common in MPEG-1 Video, JPEG */
329 CHROMA_LOCATION_TOP_LEFT,
330 CHROMA_LOCATION_TOP_CENTER,
331 CHROMA_LOCATION_BOTTOM_LEFT,
332 CHROMA_LOCATION_BOTTOM_CENTER,
333 #define CHROMA_LOCATION_MAX CHROMA_LOCATION_BOTTOM_CENTER
334 } video_chroma_location_t;
336 typedef enum video_color_range_t
338 COLOR_RANGE_UNDEF,
339 COLOR_RANGE_FULL,
340 COLOR_RANGE_LIMITED,
341 #define COLOR_RANGE_STUDIO COLOR_RANGE_LIMITED
342 #define COLOR_RANGE_MAX COLOR_RANGE_LIMITED
343 } video_color_range_t;
346 * video format description
348 struct video_format_t
350 vlc_fourcc_t i_chroma; /**< picture chroma */
352 unsigned int i_width; /**< picture width */
353 unsigned int i_height; /**< picture height */
354 unsigned int i_x_offset; /**< start offset of visible area */
355 unsigned int i_y_offset; /**< start offset of visible area */
356 unsigned int i_visible_width; /**< width of visible area */
357 unsigned int i_visible_height; /**< height of visible area */
359 unsigned int i_bits_per_pixel; /**< number of bits per pixel */
361 unsigned int i_sar_num; /**< sample/pixel aspect ratio */
362 unsigned int i_sar_den;
364 unsigned int i_frame_rate; /**< frame rate numerator */
365 unsigned int i_frame_rate_base; /**< frame rate denominator */
367 uint32_t i_rmask, i_gmask, i_bmask; /**< color masks for RGB chroma */
368 video_palette_t *p_palette; /**< video palette from demuxer */
369 video_orientation_t orientation; /**< picture orientation */
370 video_color_primaries_t primaries; /**< color primaries */
371 video_transfer_func_t transfer; /**< transfer function */
372 video_color_space_t space; /**< YCbCr color space */
373 video_color_range_t color_range; /**< 0-255 instead of 16-235 */
374 video_chroma_location_t chroma_location; /**< YCbCr chroma location */
376 video_multiview_mode_t multiview_mode; /** Multiview mode, 2D, 3D */
377 bool b_multiview_right_eye_first; /** Multiview left or right eye first*/
378 bool b_multiview_left_eye;
380 video_projection_mode_t projection_mode; /**< projection mode */
381 vlc_viewpoint_t pose;
382 struct {
383 /* similar to SMPTE ST 2086 mastering display color volume */
384 uint16_t primaries[3*2]; /* G,B,R / x,y */
385 uint16_t white_point[2]; /* x,y */
386 uint32_t max_luminance;
387 uint32_t min_luminance;
388 } mastering;
389 struct {
390 /* similar to CTA-861.3 content light level */
391 uint16_t MaxCLL; /* max content light level */
392 uint16_t MaxFALL; /* max frame average light level */
393 } lighting;
394 uint32_t i_cubemap_padding; /**< padding in pixels of the cube map faces */
398 * Initialize a video_format_t structure with chroma 'i_chroma'
399 * \param p_src pointer to video_format_t structure
400 * \param i_chroma chroma value to use
402 static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
404 memset( p_src, 0, sizeof( video_format_t ) );
405 p_src->i_chroma = i_chroma;
406 vlc_viewpoint_init( &p_src->pose );
410 * Copy video_format_t including the palette
411 * \param p_dst video_format_t to copy to
412 * \param p_src video_format_t to copy from
414 static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
416 memcpy( p_dst, p_src, sizeof( *p_dst ) );
417 if( p_src->p_palette )
419 p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
420 if( !p_dst->p_palette )
421 return VLC_ENOMEM;
422 memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
424 return VLC_SUCCESS;
427 static inline void video_format_AdjustColorSpace( video_format_t *p_fmt )
429 if ( p_fmt->primaries == COLOR_PRIMARIES_UNDEF )
431 if ( p_fmt->i_visible_height > 576 ) // HD
432 p_fmt->primaries = COLOR_PRIMARIES_BT709;
433 else if ( p_fmt->i_visible_height > 525 ) // PAL
434 p_fmt->primaries = COLOR_PRIMARIES_BT601_625;
435 else
436 p_fmt->primaries = COLOR_PRIMARIES_BT601_525;
439 if ( p_fmt->transfer == TRANSFER_FUNC_UNDEF )
441 if ( p_fmt->i_visible_height > 576 ) // HD
442 p_fmt->transfer = TRANSFER_FUNC_BT709;
443 else
444 p_fmt->transfer = TRANSFER_FUNC_SRGB;
447 if ( p_fmt->space == COLOR_SPACE_UNDEF )
449 if ( p_fmt->i_visible_height > 576 ) // HD
450 p_fmt->space = COLOR_SPACE_BT709;
451 else
452 p_fmt->space = COLOR_SPACE_BT601;
455 if ( p_fmt->color_range == COLOR_RANGE_UNDEF )
457 if ( vlc_fourcc_IsYUV(p_fmt->i_chroma) )
458 p_fmt->color_range = COLOR_RANGE_LIMITED;
459 else
460 p_fmt->color_range = COLOR_RANGE_FULL;
465 * Cleanup and free palette of this video_format_t
466 * \param p_src video_format_t structure to clean
468 static inline void video_format_Clean( video_format_t *p_src )
470 free( p_src->p_palette );
471 memset( p_src, 0, sizeof( video_format_t ) );
475 * It will fill up a video_format_t using the given arguments.
476 * Note that the video_format_t must already be initialized.
478 VLC_API void video_format_Setup( video_format_t *, vlc_fourcc_t i_chroma,
479 int i_width, int i_height, int i_visible_width, int i_visible_height,
480 int i_sar_num, int i_sar_den );
483 * It will copy the crop properties from a video_format_t to another.
485 VLC_API void video_format_CopyCrop( video_format_t *, const video_format_t * );
487 static inline void video_format_CopyCropAr(video_format_t *dst,
488 const video_format_t *src)
490 video_format_CopyCrop(dst, src);
491 dst->i_sar_num = src->i_sar_num;
492 dst->i_sar_den = src->i_sar_den;
496 * It will compute the crop/ar properties when scaling.
498 VLC_API void video_format_ScaleCropAr( video_format_t *, const video_format_t * );
501 * This function "normalizes" the formats orientation, by switching the a/r according to the orientation,
502 * producing a format whose orientation is ORIENT_NORMAL. It makes a shallow copy (pallette is not alloc'ed).
504 VLC_API void video_format_ApplyRotation(video_format_t * /*restrict*/ out,
505 const video_format_t *in);
508 * This function applies the transform operation to fmt.
510 VLC_API void video_format_TransformBy(video_format_t *fmt, video_transform_t transform);
513 * This function applies the transforms necessary to fmt so that the resulting fmt
514 * has the dst_orientation.
516 VLC_API void video_format_TransformTo(video_format_t *fmt, video_orientation_t dst_orientation);
519 * Returns the operation required to transform src into dst.
521 VLC_API video_transform_t video_format_GetTransform(video_orientation_t src, video_orientation_t dst);
524 * This function will check if the first video format is similar
525 * to the second one.
527 VLC_API bool video_format_IsSimilar( const video_format_t *, const video_format_t * );
530 * It prints details about the given video_format_t
532 VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
535 static inline video_transform_t transform_Inverse( video_transform_t transform )
537 switch ( transform ) {
538 case TRANSFORM_R90:
539 return TRANSFORM_R270;
540 case TRANSFORM_R270:
541 return TRANSFORM_R90;
542 default:
543 return transform;
547 * subtitles format description
549 struct subs_format_t
551 /* the character encoding of the text of the subtitle.
552 * all gettext recognized shorts can be used */
553 char *psz_encoding;
556 int i_x_origin; /**< x coordinate of the subtitle. 0 = left */
557 int i_y_origin; /**< y coordinate of the subtitle. 0 = top */
559 struct
561 /* */
562 uint32_t palette[16+1]; /* CLUT Palette AYVU */
564 /* the width of the original movie the spu was extracted from */
565 int i_original_frame_width;
566 /* the height of the original movie the spu was extracted from */
567 int i_original_frame_height;
568 } spu;
570 struct
572 int i_id;
573 } dvb;
574 struct
576 uint8_t i_magazine; /* magazine value (3 bits), > 8 for any */
577 uint8_t i_page; /* BCD packet address value (4+4 bits) */
578 } teletext;
579 struct
581 uint8_t i_channel;
582 /* Reorder depth of transport video, -1 for no reordering */
583 int i_reorder_depth;
584 } cc;
587 #define SPU_PALETTE_DEFINED 0xbeefbeef
590 * ES language definition
592 typedef struct extra_languages_t
594 char *psz_language;
595 char *psz_description;
596 } extra_languages_t;
598 /** ES Categories */
599 enum es_format_category_e
601 UNKNOWN_ES = 0x00,
602 VIDEO_ES,
603 AUDIO_ES,
604 SPU_ES,
605 DATA_ES,
607 #define ES_CATEGORY_COUNT (DATA_ES + 1)
610 * ES format definition
612 #define ES_PRIORITY_NOT_SELECTABLE -2
613 #define ES_PRIORITY_NOT_DEFAULTABLE -1
614 #define ES_PRIORITY_SELECTABLE_MIN 0
615 #define ES_PRIORITY_MIN ES_PRIORITY_NOT_SELECTABLE
616 struct es_format_t
618 enum es_format_category_e i_cat; /**< ES category */
619 vlc_fourcc_t i_codec; /**< FOURCC value as used in vlc */
620 vlc_fourcc_t i_original_fourcc; /**< original FOURCC from the container */
622 int i_id; /**< es identifier, where means
623 -1: let the core mark the right id
624 >=0: valid id */
625 int i_group; /**< group identifier, where means:
626 -1 : standalone
627 >= 0 then a "group" (program) is created
628 for each value */
629 int i_priority; /**< priority, where means:
630 -2 : mean not selectable by the users
631 -1 : mean not selected by default even
632 when no other stream
633 >=0: priority */
635 char *psz_language; /**< human-readable language name */
636 char *psz_description; /**< human-readable description of language */
637 unsigned i_extra_languages; /**< length in bytes of extra language data pointer */
638 extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
640 union {
641 struct {
642 audio_format_t audio; /**< description of audio format */
643 audio_replay_gain_t audio_replay_gain; /*< audio replay gain information */
645 video_format_t video; /**< description of video format */
646 subs_format_t subs; /**< description of subtitle format */
649 unsigned int i_bitrate; /**< bitrate of this ES */
650 int i_profile; /**< codec specific information (like real audio flavor, mpeg audio layer, h264 profile ...) */
651 int i_level; /**< codec specific information: indicates maximum restrictions on the stream (resolution, bitrate, codec features ...) */
653 bool b_packetized; /**< whether the data is packetized (ie. not truncated) */
654 int i_extra; /**< length in bytes of extra data pointer */
655 void *p_extra; /**< extra data needed by some decoders or muxers */
660 * This function will fill all RGB shift from RGB masks.
662 VLC_API void video_format_FixRgb( video_format_t * );
665 * This function will initialize a es_format_t structure.
667 VLC_API void es_format_Init( es_format_t *, int i_cat, vlc_fourcc_t i_codec );
670 * This function will initialize a es_format_t structure from a video_format_t.
672 VLC_API void es_format_InitFromVideo( es_format_t *, const video_format_t * );
675 * This functions will copy a es_format_t.
677 VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
680 * This function will clean up a es_format_t and release all associated
681 * resources.
682 * You can call it multiple times on the same structure.
684 VLC_API void es_format_Clean( es_format_t *fmt );
687 * This function will check if the first ES format is similar
688 * to the second one.
690 * All descriptive fields are ignored.
692 VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
695 * Changes ES format to another category
696 * Format must have been properly initialized
698 static inline void es_format_Change( es_format_t *fmt, int i_cat, vlc_fourcc_t i_codec )
700 es_format_Clean( fmt );
701 es_format_Init( fmt, i_cat, i_codec );
705 * Increase the ES track id reference count.
707 * Any held ES tracks must be released with vlc_es_id_Release().
709 * @param id pointer to the ES id
710 * @return the same ES pointer, for convenience
712 VLC_API vlc_es_id_t *
713 vlc_es_id_Hold(vlc_es_id_t *es);
716 * Decrease the ES track id reference count.
718 * @param id pointer to the ES track id
720 VLC_API void
721 vlc_es_id_Release(vlc_es_id_t *id);
724 * Get the ES track input id
726 * @param id pointer to the ES track id
727 * @return the ES track input id (always valid)
729 VLC_API int
730 vlc_es_id_GetInputId(vlc_es_id_t *id);
733 * Get the ES category
735 * @param id pointer to the ES track id
736 * @return the es track category (always valid)
738 VLC_API enum es_format_category_e
739 vlc_es_id_GetCat(vlc_es_id_t *id);
741 #endif