VLC  3.0.15
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: 3c8e04e1b15740166df2e0b2d9a651ffb2c5bc2f $
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_common.h>
28 #include <vlc_fourcc.h>
29 #include <vlc_text_style.h>
30 #include <vlc_viewpoint.h>
31 
32 /**
33  * \file
34  * This file defines the elementary streams format types
35  */
36 
37 /**
38  * video palette data
39  * \see video_format_t
40  * \see subs_format_t
41  */
42 #define VIDEO_PALETTE_COLORS_MAX 256
43 
45 {
46  int i_entries; /**< to keep the compatibility with libavcodec's palette */
47  uint8_t palette[VIDEO_PALETTE_COLORS_MAX][4]; /**< 4-byte RGBA/YUVA palette */
48 };
49 
50 /**
51  * audio replay gain description
52  */
53 #define AUDIO_REPLAY_GAIN_MAX (2)
54 #define AUDIO_REPLAY_GAIN_TRACK (0)
55 #define AUDIO_REPLAY_GAIN_ALBUM (1)
56 typedef struct
57 {
58  /* true if we have the peak value */
59  bool pb_peak[AUDIO_REPLAY_GAIN_MAX];
60  /* peak value where 1.0 means full sample value */
61  float pf_peak[AUDIO_REPLAY_GAIN_MAX];
62 
63  /* true if we have the gain value */
64  bool pb_gain[AUDIO_REPLAY_GAIN_MAX];
65  /* gain value in dB */
66  float pf_gain[AUDIO_REPLAY_GAIN_MAX];
68 
69 
70 /**
71  * Audio channel type
72  */
74 {
78 
79 /**
80  * audio format description
81  */
83 {
84  vlc_fourcc_t i_format; /**< audio format fourcc */
85  unsigned int i_rate; /**< audio sample-rate */
86 
87  /* Describes the channels configuration of the samples (ie. number of
88  * channels which are available in the buffer, and positions). */
90 
91  /* Describes the chan mode, either set from the input
92  * (demux/codec/packetizer) or overridden by the user, used by audio
93  * filters. */
94  uint16_t i_chan_mode;
95 
96  /* Channel type */
98 
99  /* Optional - for A/52, SPDIF and DTS types : */
100  /* Bytes used by one compressed frame, depends on bitrate. */
101  unsigned int i_bytes_per_frame;
102 
103  /* Number of sampleframes contained in one compressed frame. */
104  unsigned int i_frame_length;
105  /* Please note that it may be completely arbitrary - buffers are not
106  * obliged to contain a integral number of so-called "frames". It's
107  * just here for the division :
108  * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
109  */
110 
111  /* FIXME ? (used by the codecs) */
112  unsigned i_bitspersample;
113  unsigned i_blockalign;
114  uint8_t i_channels; /* must be <=32 */
115 };
116 
117 /* Values available for audio channels */
118 #define AOUT_CHAN_CENTER 0x1
119 #define AOUT_CHAN_LEFT 0x2
120 #define AOUT_CHAN_RIGHT 0x4
121 #define AOUT_CHAN_REARCENTER 0x10
122 #define AOUT_CHAN_REARLEFT 0x20
123 #define AOUT_CHAN_REARRIGHT 0x40
124 #define AOUT_CHAN_MIDDLELEFT 0x100
125 #define AOUT_CHAN_MIDDLERIGHT 0x200
126 #define AOUT_CHAN_LFE 0x1000
127 
128 #define AOUT_CHANS_FRONT (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)
129 #define AOUT_CHANS_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT)
130 #define AOUT_CHANS_REAR (AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)
131 #define AOUT_CHANS_CENTER (AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER)
132 
133 #define AOUT_CHANS_STEREO AOUT_CHANS_2_0
134 #define AOUT_CHANS_2_0 (AOUT_CHANS_FRONT)
135 #define AOUT_CHANS_2_1 (AOUT_CHANS_FRONT | AOUT_CHAN_LFE)
136 #define AOUT_CHANS_3_0 (AOUT_CHANS_FRONT | AOUT_CHAN_CENTER)
137 #define AOUT_CHANS_3_1 (AOUT_CHANS_3_0 | AOUT_CHAN_LFE)
138 #define AOUT_CHANS_4_0 (AOUT_CHANS_FRONT | AOUT_CHANS_REAR)
139 #define AOUT_CHANS_4_1 (AOUT_CHANS_4_0 | AOUT_CHAN_LFE)
140 #define AOUT_CHANS_5_0 (AOUT_CHANS_4_0 | AOUT_CHAN_CENTER)
141 #define AOUT_CHANS_5_1 (AOUT_CHANS_5_0 | AOUT_CHAN_LFE)
142 #define AOUT_CHANS_6_0 (AOUT_CHANS_4_0 | AOUT_CHANS_MIDDLE)
143 #define AOUT_CHANS_7_0 (AOUT_CHANS_6_0 | AOUT_CHAN_CENTER)
144 #define AOUT_CHANS_7_1 (AOUT_CHANS_5_1 | AOUT_CHANS_MIDDLE)
145 #define AOUT_CHANS_8_1 (AOUT_CHANS_7_1 | AOUT_CHAN_REARCENTER)
146 
147 #define AOUT_CHANS_4_0_MIDDLE (AOUT_CHANS_FRONT | AOUT_CHANS_MIDDLE)
148 #define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_FRONT | AOUT_CHANS_CENTER)
149 #define AOUT_CHANS_5_0_MIDDLE (AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER)
150 #define AOUT_CHANS_6_1_MIDDLE (AOUT_CHANS_5_0_MIDDLE | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE)
151 
152 /* Maximum number of mapped channels (or the maximum of bits set in
153  * i_physical_channels) */
154 #define AOUT_CHAN_MAX 9
155 /* Maximum number of unmapped channels */
156 #define INPUT_CHAN_MAX 64
157 
158 /* Values available for i_chan_mode only */
159 #define AOUT_CHANMODE_DUALMONO 0x1
160 #define AOUT_CHANMODE_DOLBYSTEREO 0x2
161 
162 /**
163  * Picture orientation.
164  */
166 {
167  ORIENT_TOP_LEFT = 0, /**< Top line represents top, left column left. */
168  ORIENT_TOP_RIGHT, /**< Flipped horizontally */
169  ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
170  ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
171  ORIENT_LEFT_TOP, /**< Transposed */
172  ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees clockwise */
173  ORIENT_RIGHT_TOP, /**< Rotated 90 degrees anti-clockwise */
174  ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
175 
185 /** Convert EXIF orientation to enum video_orientation_t */
186 #define ORIENT_FROM_EXIF(exif) ((0x57642310U >> (4 * ((exif) - 1))) & 7)
187 /** Convert enum video_orientation_t to EXIF */
188 #define ORIENT_TO_EXIF(orient) ((0x76853421U >> (4 * (orient))) & 15)
189 /** If the orientation is natural or mirrored */
190 #define ORIENT_IS_MIRROR(orient) parity(orient)
191 /** If the orientation swaps dimensions */
192 #define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
193 /** Applies horizontal flip to an orientation */
194 #define ORIENT_HFLIP(orient) ((orient) ^ 1)
195 /** Applies vertical flip to an orientation */
196 #define ORIENT_VFLIP(orient) ((orient) ^ 2)
197 /** Applies horizontal flip to an orientation */
198 #define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
199 
200 typedef enum video_transform_t
201 {
211 
213 {
214  /* No stereoscopy: 2D picture. */
216 
217  /* Side-by-side with left eye first. */
219 
220  /* Top-bottom with left eye first. */
222 
223  /* Row sequential with left eye first. */
225 
226  /* Column sequential with left eye first. */
228 
229  /* Frame sequential with left eye first. */
231 
232  /* Checkerboard pattern with left eye first. */
235 
236 /**
237  * Video projection mode.
238  */
240 {
243 
246 
247 /**
248  * Video color primaries (a.k.a. chromacities)
249  */
251 {
259 #define COLOR_PRIMARIES_SRGB COLOR_PRIMARIES_BT709
260 #define COLOR_PRIMARIES_SMTPE_170 COLOR_PRIMARIES_BT601_525
261 #define COLOR_PRIMARIES_SMTPE_240 COLOR_PRIMARIES_BT601_525 /* Only differs from 1e10-4 in white Y */
262 #define COLOR_PRIMARIES_SMTPE_RP145 COLOR_PRIMARIES_BT601_525
263 #define COLOR_PRIMARIES_EBU_3213 COLOR_PRIMARIES_BT601_625
264 #define COLOR_PRIMARIES_BT470_BG COLOR_PRIMARIES_BT601_625
265 #define COLOR_PRIMARIES_BT470_M COLOR_PRIMARIES_FCC1953
266 #define COLOR_PRIMARIES_MAX COLOR_PRIMARIES_FCC1953
268 
269 /**
270  * Video transfer functions
271  */
273 {
276  TRANSFER_FUNC_SRGB /*< Gamma 2.2 */,
283 #define TRANSFER_FUNC_BT2020 TRANSFER_FUNC_BT709
284 #define TRANSFER_FUNC_SMPTE_170 TRANSFER_FUNC_BT709
285 #define TRANSFER_FUNC_SMPTE_274 TRANSFER_FUNC_BT709
286 #define TRANSFER_FUNC_SMPTE_293 TRANSFER_FUNC_BT709
287 #define TRANSFER_FUNC_SMPTE_296 TRANSFER_FUNC_BT709
288 #define TRANSFER_FUNC_ARIB_B67 TRANSFER_FUNC_HLG
289 #define TRANSFER_FUNC_MAX TRANSFER_FUNC_HLG
291 
292 /**
293  * Video color space (i.e. YCbCr matrices)
294  */
296 {
301 #define COLOR_SPACE_SRGB COLOR_SPACE_BT709
302 #define COLOR_SPACE_SMPTE_170 COLOR_SPACE_BT601
303 #define COLOR_SPACE_SMPTE_240 COLOR_SPACE_SMPTE_170
304 #define COLOR_SPACE_MAX COLOR_SPACE_BT2020
306 
307 /**
308  * Video chroma location
309  */
311 {
313  CHROMA_LOCATION_LEFT, /*< Most common in MPEG-2 Video, H.264/265 */
314  CHROMA_LOCATION_CENTER, /*< Most common in MPEG-1 Video, JPEG */
319 #define CHROMA_LOCATION_MAX CHROMA_LOCATION_BOTTOM_CENTER
321 
322 /**
323  * video format description
324  */
326 {
327  vlc_fourcc_t i_chroma; /**< picture chroma */
328 
329  unsigned int i_width; /**< picture width */
330  unsigned int i_height; /**< picture height */
331  unsigned int i_x_offset; /**< start offset of visible area */
332  unsigned int i_y_offset; /**< start offset of visible area */
333  unsigned int i_visible_width; /**< width of visible area */
334  unsigned int i_visible_height; /**< height of visible area */
335 
336  unsigned int i_bits_per_pixel; /**< number of bits per pixel */
337 
338  unsigned int i_sar_num; /**< sample/pixel aspect ratio */
339  unsigned int i_sar_den;
340 
341  unsigned int i_frame_rate; /**< frame rate numerator */
342  unsigned int i_frame_rate_base; /**< frame rate denominator */
343 
344  uint32_t i_rmask, i_gmask, i_bmask; /**< color masks for RGB chroma */
348  video_palette_t *p_palette; /**< video palette from demuxer */
349  video_orientation_t orientation; /**< picture orientation */
350  video_color_primaries_t primaries; /**< color primaries */
351  video_transfer_func_t transfer; /**< transfer function */
352  video_color_space_t space; /**< YCbCr color space */
353  bool b_color_range_full; /**< 0-255 instead of 16-235 */
354  video_chroma_location_t chroma_location; /**< YCbCr chroma location */
355 
356  video_multiview_mode_t multiview_mode; /** Multiview mode, 2D, 3D */
357 
358  video_projection_mode_t projection_mode; /**< projection mode */
360  struct {
361  /* similar to SMPTE ST 2086 mastering display color volume */
362  uint16_t primaries[3*2]; /* G,B,R / x,y */
363  uint16_t white_point[2]; /* x,y */
364  uint32_t max_luminance;
365  uint32_t min_luminance;
366  } mastering;
367  struct {
368  /* similar to CTA-861.3 content light level */
369  uint16_t MaxCLL; /* max content light level */
370  uint16_t MaxFALL; /* max frame average light level */
371  } lighting;
372  uint32_t i_cubemap_padding; /**< padding in pixels of the cube map faces */
373 };
374 
375 /**
376  * Initialize a video_format_t structure with chroma 'i_chroma'
377  * \param p_src pointer to video_format_t structure
378  * \param i_chroma chroma value to use
379  */
380 static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
381 {
382  memset( p_src, 0, sizeof( video_format_t ) );
383  p_src->i_chroma = i_chroma;
384  vlc_viewpoint_init( &p_src->pose );
385 }
386 
387 /**
388  * Copy video_format_t including the palette
389  * \param p_dst video_format_t to copy to
390  * \param p_src video_format_t to copy from
391  */
392 static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
393 {
394  memcpy( p_dst, p_src, sizeof( *p_dst ) );
395  if( p_src->p_palette )
396  {
397  p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
398  if( !p_dst->p_palette )
399  return VLC_ENOMEM;
400  memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
401  }
402  return VLC_SUCCESS;
403 }
404 
405 static inline void video_format_AdjustColorSpace( video_format_t *p_fmt )
406 {
407  if ( p_fmt->primaries == COLOR_PRIMARIES_UNDEF )
408  {
409  if ( p_fmt->i_visible_height > 576 ) // HD
411  else if ( p_fmt->i_visible_height > 525 ) // PAL
413  else
415  }
416 
417  if ( p_fmt->transfer == TRANSFER_FUNC_UNDEF )
418  {
419  if ( p_fmt->i_visible_height > 576 ) // HD
420  p_fmt->transfer = TRANSFER_FUNC_BT709;
421  else
422  p_fmt->transfer = TRANSFER_FUNC_SRGB;
423  }
424 
425  if ( p_fmt->space == COLOR_SPACE_UNDEF )
426  {
427  if ( p_fmt->i_visible_height > 576 ) // HD
428  p_fmt->space = COLOR_SPACE_BT709;
429  else
430  p_fmt->space = COLOR_SPACE_BT601;
431  }
432 }
433 
434 /**
435  * Cleanup and free palette of this video_format_t
436  * \param p_src video_format_t structure to clean
437  */
438 static inline void video_format_Clean( video_format_t *p_src )
439 {
440  free( p_src->p_palette );
441  memset( p_src, 0, sizeof( video_format_t ) );
442 }
443 
444 /**
445  * It will fill up a video_format_t using the given arguments.
446  * Note that the video_format_t must already be initialized.
447  */
449  int i_width, int i_height, int i_visible_width, int i_visible_height,
450  int i_sar_num, int i_sar_den );
451 
452 /**
453  * It will copy the crop properties from a video_format_t to another.
454  */
456 
457 /**
458  * It will compute the crop/ar properties when scaling.
459  */
461 
462 /**
463  * This function "normalizes" the formats orientation, by switching the a/r according to the orientation,
464  * producing a format whose orientation is ORIENT_NORMAL. It makes a shallow copy (pallette is not alloc'ed).
465  */
466 VLC_API void video_format_ApplyRotation(video_format_t * /*restrict*/ out,
467  const video_format_t *in);
468 
469 /**
470  * This function applies the transform operation to fmt.
471  */
473 
474 /**
475  * This function applies the transforms necessary to fmt so that the resulting fmt
476  * has the dst_orientation.
477  */
479 
480 /**
481  * Returns the operation required to transform src into dst.
482  */
484 
485 /**
486  * This function will check if the first video format is similar
487  * to the second one.
488  */
490 
491 /**
492  * It prints details about the given video_format_t
493  */
494 VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
495 
496 
498 {
499  switch ( transform ) {
500  case TRANSFORM_R90:
501  return TRANSFORM_R270;
502  case TRANSFORM_R270:
503  return TRANSFORM_R90;
504  default:
505  return transform;
506  }
507 }
508 /**
509  * subtitles format description
510  */
512 {
513  /* the character encoding of the text of the subtitle.
514  * all gettext recognized shorts can be used */
516 
517 
518  int i_x_origin; /**< x coordinate of the subtitle. 0 = left */
519  int i_y_origin; /**< y coordinate of the subtitle. 0 = top */
520 
521  struct
522  {
523  /* */
524  uint32_t palette[16+1]; /* CLUT Palette AYVU */
525 
526  /* the width of the original movie the spu was extracted from */
528  /* the height of the original movie the spu was extracted from */
530  } spu;
531 
532  struct
533  {
534  int i_id;
535  } dvb;
536  struct
537  {
539  int i_page;
540  } teletext;
541  struct
542  {
543  uint8_t i_channel;
544  /* Reorder depth of transport video, -1 for no reordering */
546  } cc;
547 
548  text_style_t *p_style; /* Default styles to use */
549 };
550 
551 #define SPU_PALETTE_DEFINED 0xbeefbeef
552 
553 /**
554  * ES language definition
555  */
556 typedef struct extra_languages_t
557 {
561 
562 /** ES Categories */
564 {
565  UNKNOWN_ES = 0x00,
570 };
571 #define ES_CATEGORY_COUNT (DATA_ES + 1)
572 
573 /**
574  * ES format definition
575  */
576 #define ES_PRIORITY_NOT_SELECTABLE -2
577 #define ES_PRIORITY_NOT_DEFAULTABLE -1
578 #define ES_PRIORITY_SELECTABLE_MIN 0
579 #define ES_PRIORITY_MIN ES_PRIORITY_NOT_SELECTABLE
581 {
582  enum es_format_category_e i_cat; /**< ES category */
583  vlc_fourcc_t i_codec; /**< FOURCC value as used in vlc */
584  vlc_fourcc_t i_original_fourcc; /**< original FOURCC from the container */
585 
586  int i_id; /**< es identifier, where means
587  -1: let the core mark the right id
588  >=0: valid id */
589  int i_group; /**< group identifier, where means:
590  -1 : standalone
591  >= 0 then a "group" (program) is created
592  for each value */
593  int i_priority; /**< priority, where means:
594  -2 : mean not selectable by the users
595  -1 : mean not selected by default even
596  when no other stream
597  >=0: priority */
598 
599  char *psz_language; /**< human-readable language name */
600  char *psz_description; /**< human-readable description of language */
601  unsigned i_extra_languages; /**< length in bytes of extra language data pointer */
602  extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
603 
604  union {
605  struct {
606  audio_format_t audio; /**< description of audio format */
607  audio_replay_gain_t audio_replay_gain; /*< audio replay gain information */
608  };
609  video_format_t video; /**< description of video format */
610  subs_format_t subs; /**< description of subtitle format */
611  };
612 
613  unsigned int i_bitrate; /**< bitrate of this ES */
614  int i_profile; /**< codec specific information (like real audio flavor, mpeg audio layer, h264 profile ...) */
615  int i_level; /**< codec specific information: indicates maximum restrictions on the stream (resolution, bitrate, codec features ...) */
616 
617  bool b_packetized; /**< whether the data is packetized (ie. not truncated) */
618  int i_extra; /**< length in bytes of extra data pointer */
619  void *p_extra; /**< extra data needed by some decoders or muxers */
620 
621 };
622 
623 /**
624  * This function will fill all RGB shift from RGB masks.
625  */
627 
628 /**
629  * This function will initialize a es_format_t structure.
630  */
632 
633 /**
634  * This function will initialize a es_format_t structure from a video_format_t.
635  */
637 
638 /**
639  * This functions will copy a es_format_t.
640  */
641 VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
642 
643 /**
644  * This function will clean up a es_format_t and release all associated
645  * resources.
646  * You can call it multiple times on the same structure.
647  */
648 VLC_API void es_format_Clean( es_format_t *fmt );
649 
650 /**
651  * This function will check if the first ES format is similar
652  * to the second one.
653  *
654  * All descriptive fields are ignored.
655  */
656 VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
657 
658 /**
659  * Changes ES format to another category
660  * Format must have been properly initialized
661  */
662 static inline void es_format_Change( es_format_t *fmt, int i_cat, vlc_fourcc_t i_codec )
663 {
664  es_format_Clean( fmt );
665  es_format_Init( fmt, i_cat, i_codec );
666 }
667 
668 #endif
subs_format_t::psz_encoding
char * psz_encoding
Definition: vlc_es.h:515
video_format_FixRgb
void video_format_FixRgb(video_format_t *)
This function will fill all RGB shift from RGB masks.
Definition: es_format.c:87
COLOR_SPACE_BT601
Definition: vlc_es.h:298
COLOR_PRIMARIES_BT2020
Definition: vlc_es.h:256
video_format_t::i_bmask
uint32_t i_bmask
color masks for RGB chroma
Definition: vlc_es.h:344
MULTIVIEW_STEREO_COL
Definition: vlc_es.h:227
VLC_API
#define VLC_API
Definition: fourcc_gen.c:30
video_format_t::p_palette
video_palette_t * p_palette
video palette from demuxer
Definition: vlc_es.h:348
MULTIVIEW_STEREO_CHECKERBOARD
Definition: vlc_es.h:233
TRANSFER_FUNC_BT470_M
Definition: vlc_es.h:278
VIDEO_ES
Definition: vlc_es.h:566
es_format_t::psz_description
char * psz_description
human-readable description of language
Definition: vlc_es.h:600
video_color_space_t
video_color_space_t
Video color space (i.e.
Definition: vlc_es.h:295
video_format_IsSimilar
bool video_format_IsSimilar(const video_format_t *, const video_format_t *)
This function will check if the first video format is similar to the second one.
Definition: es_format.c:381
AUDIO_CHANNEL_TYPE_BITMAP
Definition: vlc_es.h:75
es_format_t::video
video_format_t video
description of video format
Definition: vlc_es.h:609
AUDIO_REPLAY_GAIN_MAX
#define AUDIO_REPLAY_GAIN_MAX
audio replay gain description
Definition: vlc_es.h:53
video_format_CopyCrop
void video_format_CopyCrop(video_format_t *, const video_format_t *)
It will copy the crop properties from a video_format_t to another.
Definition: es_format.c:225
CHROMA_LOCATION_CENTER
Definition: vlc_es.h:314
video_format_Copy
static int video_format_Copy(video_format_t *p_dst, const video_format_t *p_src)
Copy video_format_t including the palette.
Definition: vlc_es.h:392
video_format_Print
void video_format_Print(vlc_object_t *, const char *, const video_format_t *)
It prints details about the given video_format_t.
Definition: es_format.c:420
es_format_t::i_bitrate
unsigned int i_bitrate
bitrate of this ES
Definition: vlc_es.h:613
video_format_t::MaxFALL
uint16_t MaxFALL
Definition: vlc_es.h:370
ORIENT_VFLIPPED
Definition: vlc_es.h:180
TRANSFER_FUNC_BT470_BG
Definition: vlc_es.h:277
video_multiview_mode_t
video_multiview_mode_t
Definition: vlc_es.h:212
vlc_common.h
es_format_Change
static void es_format_Change(es_format_t *fmt, int i_cat, vlc_fourcc_t i_codec)
Changes ES format to another category Format must have been properly initialized.
Definition: vlc_es.h:662
subs_format_t::spu
struct subs_format_t::@154 spu
CHROMA_LOCATION_LEFT
Definition: vlc_es.h:313
video_format_t::mastering
struct video_format_t::@152 mastering
CHROMA_LOCATION_BOTTOM_LEFT
Definition: vlc_es.h:317
video_format_t::i_y_offset
unsigned int i_y_offset
start offset of visible area
Definition: vlc_es.h:332
video_palette_t::i_entries
int i_entries
to keep the compatibility with libavcodec's palette
Definition: vlc_es.h:46
audio_replay_gain_t
Definition: vlc_es.h:56
video_format_t::i_sar_num
unsigned int i_sar_num
sample/pixel aspect ratio
Definition: vlc_es.h:338
audio_format_t::i_bitspersample
unsigned i_bitspersample
Definition: vlc_es.h:112
video_format_Clean
static void video_format_Clean(video_format_t *p_src)
Cleanup and free palette of this video_format_t.
Definition: vlc_es.h:438
ORIENT_ROTATED_270
Definition: vlc_es.h:182
AUDIO_CHANNEL_TYPE_AMBISONICS
Definition: vlc_es.h:76
video_chroma_location_t
video_chroma_location_t
Video chroma location.
Definition: vlc_es.h:310
video_format_t::i_bits_per_pixel
unsigned int i_bits_per_pixel
number of bits per pixel
Definition: vlc_es.h:336
es_format_t::i_id
int i_id
es identifier, where means -1: let the core mark the right id >=0: valid id
Definition: vlc_es.h:586
DATA_ES
Definition: vlc_es.h:569
audio_format_t::i_chan_mode
uint16_t i_chan_mode
Definition: vlc_es.h:94
extra_languages_t::psz_language
char * psz_language
Definition: vlc_es.h:558
ORIENT_ANTI_TRANSPOSED
Definition: vlc_es.h:178
video_format_t::i_cubemap_padding
uint32_t i_cubemap_padding
padding in pixels of the cube map faces
Definition: vlc_es.h:372
TRANSFORM_TRANSPOSE
Definition: vlc_es.h:208
video_format_t
video format description
Definition: vlc_es.h:325
video_format_t::i_gmask
uint32_t i_gmask
Definition: vlc_es.h:344
TRANSFORM_HFLIP
Definition: vlc_es.h:203
VIDEO_PALETTE_COLORS_MAX
#define VIDEO_PALETTE_COLORS_MAX
video palette data
Definition: vlc_es.h:42
es_format_InitFromVideo
void es_format_InitFromVideo(es_format_t *, const video_format_t *)
This function will initialize a es_format_t structure from a video_format_t.
Definition: es_format.c:454
COLOR_PRIMARIES_BT601_525
Definition: vlc_es.h:253
PROJECTION_MODE_RECTANGULAR
Definition: vlc_es.h:241
TRANSFORM_R270
Definition: vlc_es.h:206
video_format_t::white_point
uint16_t white_point[2]
Definition: vlc_es.h:363
vlc_viewpoint_t
Viewpoints.
Definition: vlc_viewpoint.h:44
subs_format_t::p_style
text_style_t * p_style
Definition: vlc_es.h:548
es_format_t::i_level
int i_level
codec specific information: indicates maximum restrictions on the stream (resolution,...
Definition: vlc_es.h:615
video_format_t::transfer
video_transfer_func_t transfer
transfer function
Definition: vlc_es.h:351
CHROMA_LOCATION_UNDEF
Definition: vlc_es.h:312
audio_format_t::i_rate
unsigned int i_rate
audio sample-rate
Definition: vlc_es.h:85
video_format_AdjustColorSpace
static void video_format_AdjustColorSpace(video_format_t *p_fmt)
Definition: vlc_es.h:405
video_format_t::i_rgshift
int i_rgshift
Definition: vlc_es.h:346
audio_format_t::i_physical_channels
uint16_t i_physical_channels
Definition: vlc_es.h:89
audio_format_t
audio format description
Definition: vlc_es.h:82
transform_Inverse
static video_transform_t transform_Inverse(video_transform_t transform)
Definition: vlc_es.h:497
TRANSFORM_VFLIP
Definition: vlc_es.h:204
video_format_TransformBy
void video_format_TransformBy(video_format_t *fmt, video_transform_t transform)
This function applies the transform operation to fmt.
Definition: es_format.c:312
TRANSFER_FUNC_LINEAR
Definition: vlc_es.h:275
video_format_t::primaries
video_color_primaries_t primaries
color primaries
Definition: vlc_es.h:350
TRANSFORM_R180
Definition: vlc_es.h:205
audio_format_t::i_blockalign
unsigned i_blockalign
Definition: vlc_es.h:113
audio_format_t::i_channels
uint8_t i_channels
Definition: vlc_es.h:114
subs_format_t::teletext
struct subs_format_t::@156 teletext
video_format_ApplyRotation
void video_format_ApplyRotation(video_format_t *out, const video_format_t *in)
This function "normalizes" the formats orientation, by switching the a/r according to the orientation...
video_format_t::projection_mode
video_projection_mode_t projection_mode
Multiview mode, 2D, 3D.
Definition: vlc_es.h:358
ORIENT_BOTTOM_RIGHT
Rotated 180 degrees.
Definition: vlc_es.h:170
video_format_t::i_frame_rate
unsigned int i_frame_rate
frame rate numerator
Definition: vlc_es.h:341
es_format_category_e
es_format_category_e
ES Categories.
Definition: vlc_es.h:563
video_format_t::space
video_color_space_t space
YCbCr color space.
Definition: vlc_es.h:352
ORIENT_LEFT_TOP
Transposed.
Definition: vlc_es.h:171
video_palette_t
Definition: vlc_es.h:44
es_format_t::p_extra_languages
extra_languages_t * p_extra_languages
extra language data needed by some decoders
Definition: vlc_es.h:602
ORIENT_TOP_RIGHT
Flipped horizontally.
Definition: vlc_es.h:168
COLOR_SPACE_BT2020
Definition: vlc_es.h:300
TRANSFER_FUNC_SRGB
Definition: vlc_es.h:276
video_format_t::i_width
unsigned int i_width
picture width
Definition: vlc_es.h:329
audio_format_t::i_bytes_per_frame
unsigned int i_bytes_per_frame
Definition: vlc_es.h:101
es_format_t::i_extra_languages
unsigned i_extra_languages
length in bytes of extra language data pointer
Definition: vlc_es.h:601
COLOR_PRIMARIES_UNDEF
Definition: vlc_es.h:252
es_format_t::audio_replay_gain
audio_replay_gain_t audio_replay_gain
Definition: vlc_es.h:607
audio_format_t::i_format
vlc_fourcc_t i_format
audio format fourcc
Definition: vlc_es.h:84
TRANSFORM_ANTI_TRANSPOSE
Definition: vlc_es.h:209
video_format_t::i_x_offset
unsigned int i_x_offset
start offset of visible area
Definition: vlc_es.h:331
subs_format_t::i_page
int i_page
Definition: vlc_es.h:539
video_format_t::i_rrshift
int i_rrshift
Definition: vlc_es.h:345
es_format_t
Definition: vlc_es.h:580
ORIENT_LEFT_BOTTOM
Rotated 90 degrees clockwise.
Definition: vlc_es.h:172
es_format_Clean
void es_format_Clean(es_format_t *fmt)
This function will clean up a es_format_t and release all associated resources.
Definition: es_format.c:539
subs_format_t::cc
struct subs_format_t::@157 cc
vlc_fourcc.h
subs_format_t::dvb
struct subs_format_t::@155 dvb
video_format_t::chroma_location
video_chroma_location_t chroma_location
YCbCr chroma location.
Definition: vlc_es.h:354
es_format_t::i_cat
enum es_format_category_e i_cat
ES category.
Definition: vlc_es.h:582
video_format_t::b_color_range_full
bool b_color_range_full
0-255 instead of 16-235
Definition: vlc_es.h:353
subs_format_t
subtitles format description
Definition: vlc_es.h:511
extra_languages_t
struct extra_languages_t extra_languages_t
ES language definition.
es_format_t::i_original_fourcc
vlc_fourcc_t i_original_fourcc
original FOURCC from the container
Definition: vlc_es.h:584
video_format_GetTransform
video_transform_t video_format_GetTransform(video_orientation_t src, video_orientation_t dst)
Returns the operation required to transform src into dst.
Definition: es_format.c:296
video_transfer_func_t
video_transfer_func_t
Video transfer functions.
Definition: vlc_es.h:272
TRANSFORM_R90
Definition: vlc_es.h:207
ORIENT_RIGHT_TOP
Rotated 90 degrees anti-clockwise.
Definition: vlc_es.h:173
es_format_t::i_group
int i_group
group identifier, where means: -1 : standalone >= 0 then a "group" (program) is created for each valu...
Definition: vlc_es.h:589
CHROMA_LOCATION_BOTTOM_CENTER
Definition: vlc_es.h:318
audio_format_t::channel_type
audio_channel_type_t channel_type
Definition: vlc_es.h:97
video_format_t::i_rbshift
int i_rbshift
Definition: vlc_es.h:347
ORIENT_TOP_LEFT
Top line represents top, left column left.
Definition: vlc_es.h:167
subs_format_t::i_id
int i_id
Definition: vlc_es.h:534
es_format_t::p_extra
void * p_extra
extra data needed by some decoders or muxers
Definition: vlc_es.h:619
video_palette_t::palette
uint8_t palette[256][4]
4-byte RGBA/YUVA palette
Definition: vlc_es.h:47
es_format_Init
void es_format_Init(es_format_t *, int i_cat, vlc_fourcc_t i_codec)
This function will initialize a es_format_t structure.
Definition: es_format.c:433
MULTIVIEW_STEREO_FRAME
Definition: vlc_es.h:230
es_format_t::audio
audio_format_t audio
description of audio format
Definition: vlc_es.h:606
CHROMA_LOCATION_TOP_LEFT
Definition: vlc_es.h:315
video_format_t::i_visible_height
unsigned int i_visible_height
height of visible area
Definition: vlc_es.h:334
MULTIVIEW_STEREO_TB
Definition: vlc_es.h:221
AUDIO_ES
Definition: vlc_es.h:567
video_format_t::pose
vlc_viewpoint_t pose
Definition: vlc_es.h:359
video_format_t::lighting
struct video_format_t::@153 lighting
video_format_t::i_sar_den
unsigned int i_sar_den
Definition: vlc_es.h:339
MULTIVIEW_2D
Definition: vlc_es.h:215
PROJECTION_MODE_CUBEMAP_LAYOUT_STANDARD
Definition: vlc_es.h:244
UNKNOWN_ES
Definition: vlc_es.h:565
text_style_t
Text style.
Definition: vlc_text_style.h:39
vlc_object_t
The main vlc_object_t structure.
Definition: vlc_objects.h:39
VLC_ENOMEM
#define VLC_ENOMEM
Not enough memory.
Definition: vlc_common.h:351
es_format_t::i_extra
int i_extra
length in bytes of extra data pointer
Definition: vlc_es.h:618
video_format_Setup
void video_format_Setup(video_format_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_visible_width, int i_visible_height, int i_sar_num, int i_sar_den)
It will fill up a video_format_t using the given arguments.
Definition: es_format.c:130
ORIENT_TRANSPOSED
Definition: vlc_es.h:177
subs_format_t::i_original_frame_height
int i_original_frame_height
Definition: vlc_es.h:529
TRANSFER_FUNC_HLG
Definition: vlc_es.h:282
VLC_SUCCESS
#define VLC_SUCCESS
No error.
Definition: vlc_common.h:349
COLOR_SPACE_UNDEF
Definition: vlc_es.h:297
COLOR_SPACE_BT709
Definition: vlc_es.h:299
video_format_t::i_visible_width
unsigned int i_visible_width
width of visible area
Definition: vlc_es.h:333
COLOR_PRIMARIES_BT601_625
Definition: vlc_es.h:254
CHROMA_LOCATION_TOP_CENTER
Definition: vlc_es.h:316
video_projection_mode_t
video_projection_mode_t
Video projection mode.
Definition: vlc_es.h:239
extra_languages_t
ES language definition.
Definition: vlc_es.h:556
es_format_t::i_codec
vlc_fourcc_t i_codec
FOURCC value as used in vlc.
Definition: vlc_es.h:583
es_format_Copy
int es_format_Copy(es_format_t *p_dst, const es_format_t *p_src)
This functions will copy a es_format_t.
es_format_t::i_priority
int i_priority
priority, where means: -2 : mean not selectable by the users -1 : mean not selected by default even w...
Definition: vlc_es.h:593
es_format_t::i_profile
int i_profile
codec specific information (like real audio flavor, mpeg audio layer, h264 profile ....
Definition: vlc_es.h:614
transform
static void transform(MD5_CONTEXT *ctx, const unsigned char *data)
Definition: md5.c:82
PROJECTION_MODE_EQUIRECTANGULAR
Definition: vlc_es.h:242
video_format_Init
static void video_format_Init(video_format_t *p_src, vlc_fourcc_t i_chroma)
Initialize a video_format_t structure with chroma 'i_chroma'.
Definition: vlc_es.h:380
ORIENT_ROTATED_90
Definition: vlc_es.h:183
subs_format_t::i_x_origin
int i_x_origin
x coordinate of the subtitle.
Definition: vlc_es.h:518
es_format_t::subs
subs_format_t subs
description of subtitle format
Definition: vlc_es.h:610
SPU_ES
Definition: vlc_es.h:568
COLOR_PRIMARIES_FCC1953
Definition: vlc_es.h:258
video_format_TransformTo
void video_format_TransformTo(video_format_t *fmt, video_orientation_t dst_orientation)
This function applies the transforms necessary to fmt so that the resulting fmt has the dst_orientati...
TRANSFER_FUNC_UNDEF
Definition: vlc_es.h:274
ORIENT_RIGHT_BOTTOM
Anti-transposed.
Definition: vlc_es.h:174
TRANSFORM_IDENTITY
Definition: vlc_es.h:202
MULTIVIEW_STEREO_ROW
Definition: vlc_es.h:224
es_format_IsSimilar
bool es_format_IsSimilar(const es_format_t *, const es_format_t *)
This function will check if the first ES format is similar to the second one.
Definition: es_format.c:567
video_format_t::i_height
unsigned int i_height
picture height
Definition: vlc_es.h:330
es_format_t::psz_language
char * psz_language
human-readable language name
Definition: vlc_es.h:599
subs_format_t::i_y_origin
int i_y_origin
y coordinate of the subtitle.
Definition: vlc_es.h:519
video_color_primaries_t
video_color_primaries_t
Video color primaries (a.k.a.
Definition: vlc_es.h:250
extra_languages_t::psz_description
char * psz_description
Definition: vlc_es.h:559
TRANSFER_FUNC_SMPTE_240
Definition: vlc_es.h:281
subs_format_t::palette
uint32_t palette[16+1]
Definition: vlc_es.h:524
video_transform_t
video_transform_t
Definition: vlc_es.h:200
video_format_t::i_frame_rate_base
unsigned int i_frame_rate_base
frame rate denominator
Definition: vlc_es.h:342
i_codec
vlc_fourcc_t i_codec
Definition: image.c:580
ORIENT_HFLIPPED
Definition: vlc_es.h:179
video_format_t::i_lrshift
int i_lrshift
Definition: vlc_es.h:345
subs_format_t::i_original_frame_width
int i_original_frame_width
Definition: vlc_es.h:527
video_format_t::i_rmask
uint32_t i_rmask
Definition: vlc_es.h:344
subs_format_t::i_magazine
int i_magazine
Definition: vlc_es.h:538
vlc_viewpoint.h
video_format_t::i_lbshift
int i_lbshift
Definition: vlc_es.h:347
COLOR_PRIMARIES_BT709
Definition: vlc_es.h:255
video_format_t::multiview_mode
video_multiview_mode_t multiview_mode
Definition: vlc_es.h:356
video_format_t::i_chroma
vlc_fourcc_t i_chroma
picture chroma
Definition: vlc_es.h:327
audio_format_t::i_frame_length
unsigned int i_frame_length
Definition: vlc_es.h:104
video_format_t::MaxCLL
uint16_t MaxCLL
Definition: vlc_es.h:369
vlc_viewpoint_init
static void vlc_viewpoint_init(vlc_viewpoint_t *p_vp)
Definition: vlc_viewpoint.h:51
TRANSFER_FUNC_BT709
Definition: vlc_es.h:279
vlc_text_style.h
video_format_t::max_luminance
uint32_t max_luminance
Definition: vlc_es.h:364
TRANSFER_FUNC_SMPTE_ST2084
Definition: vlc_es.h:280
ORIENT_ROTATED_180
Definition: vlc_es.h:181
video_format_ScaleCropAr
void video_format_ScaleCropAr(video_format_t *, const video_format_t *)
It will compute the crop/ar properties when scaling.
Definition: es_format.c:233
video_orientation_t
video_orientation_t
Picture orientation.
Definition: vlc_es.h:165
video_format_t::orientation
video_orientation_t orientation
picture orientation
Definition: vlc_es.h:349
audio_channel_type_t
audio_channel_type_t
Audio channel type.
Definition: vlc_es.h:73
subs_format_t::i_channel
uint8_t i_channel
Definition: vlc_es.h:543
subs_format_t::i_reorder_depth
int i_reorder_depth
Definition: vlc_es.h:545
es_format_t::b_packetized
bool b_packetized
whether the data is packetized (ie.
Definition: vlc_es.h:617
ORIENT_BOTTOM_LEFT
Flipped vertically.
Definition: vlc_es.h:169
video_format_t::min_luminance
uint32_t min_luminance
Definition: vlc_es.h:365
video_format_t::i_lgshift
int i_lgshift
Definition: vlc_es.h:346
MULTIVIEW_STEREO_SBS
Definition: vlc_es.h:218
vlc_fourcc_t
uint32_t vlc_fourcc_t
Definition: fourcc_gen.c:32
COLOR_PRIMARIES_DCI_P3
Definition: vlc_es.h:257
ORIENT_NORMAL
Definition: vlc_es.h:176