VLC 4.0.0-dev
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 *
6 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7 *
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.
12 *
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.
17 *
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 *****************************************************************************/
22
23#ifndef VLC_ES_H
24#define VLC_ES_H 1
25
26#include <vlc_common.h>
27#include <vlc_fourcc.h>
28#include <vlc_viewpoint.h>
29
30/**
31 * \file
32 * This file defines the elementary streams format types
33 */
34
35/**
36 * video palette data
37 * \see video_format_t
38 * \see subs_format_t
39 */
40#define VIDEO_PALETTE_COLORS_MAX 256
42struct video_palette_t
44 int i_entries; /**< number of in-use palette entries */
45 uint8_t palette[VIDEO_PALETTE_COLORS_MAX][4]; /**< 4-byte RGBA/YUVA palette */
46};
47
48/**
49 * audio replay gain description
50 */
51#define AUDIO_REPLAY_GAIN_MAX (2)
52#define AUDIO_REPLAY_GAIN_TRACK (0)
53#define AUDIO_REPLAY_GAIN_ALBUM (1)
54typedef 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];
66
67
68/**
69 * Audio channel type
70 */
71typedef enum audio_channel_type_t
77/**
78 * audio format description
79 */
80struct 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 */
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
107 */
108
109 /* FIXME ? (used by the codecs) */
110 unsigned i_bitspersample;
111 unsigned i_blockalign;
112 uint8_t i_channels; /* must be <=32 */
114
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
156static const uint16_t vlc_chan_maps[] =
158 0,
168};
169
170/* Values available for i_chan_mode only */
171#define AOUT_CHANMODE_DUALMONO 0x1
172#define AOUT_CHANMODE_DOLBYSTEREO 0x2
173#define AOUT_CHANMODE_BINAURAL 0x4
175/**
176 * Picture orientation.
177 */
178typedef enum video_orientation_t
180 ORIENT_TOP_LEFT = 0, /**< Top line represents top, left column left. */
181 ORIENT_TOP_RIGHT, /**< Flipped horizontally */
182 ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
183 ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
184 ORIENT_LEFT_TOP, /**< Transposed */
185 ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees anti-clockwise */
186 ORIENT_RIGHT_TOP, /**< Rotated 90 degrees clockwise */
187 ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
188#define ORIENT_MAX ((size_t)ORIENT_RIGHT_BOTTOM)
199/** Convert EXIF orientation to enum video_orientation_t */
200#define ORIENT_FROM_EXIF(exif) ((0x57642310U >> (4 * ((exif) - 1))) & 7)
201/** Convert enum video_orientation_t to EXIF */
202#define ORIENT_TO_EXIF(orient) ((0x76853421U >> (4 * (orient))) & 15)
203/** If the orientation is natural or mirrored */
204#define ORIENT_IS_MIRROR(orient) vlc_parity(orient)
205/** If the orientation swaps dimensions */
206#define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
207/** Applies horizontal flip to an orientation */
208#define ORIENT_HFLIP(orient) ((orient) ^ 1)
209/** Applies vertical flip to an orientation */
210#define ORIENT_VFLIP(orient) ((orient) ^ 2)
211/** Applies 180 degree rotation to an orientation */
212#define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
214typedef enum video_transform_t
226typedef enum video_multiview_mode_t
228 /* No stereoscopy: 2D picture. */
229 MULTIVIEW_2D = 0,
231 /* Side-by-side with left eye first. */
234 /* Top-bottom with left eye first. */
237 /* Row sequential with left eye first. */
240 /* Column sequential with left eye first. */
243 /* Frame sequential with left eye first. */
246 /* Checkerboard pattern with left eye first. */
249#define MULTIVIEW_STEREO_MAX MULTIVIEW_STEREO_CHECKERBOARD
252/**
253 * Video projection mode.
254 */
255typedef enum video_projection_mode_t
263/**
264 * Video color primaries (a.k.a. chromacities)
265 */
266typedef enum video_color_primaries_t
275#define COLOR_PRIMARIES_SRGB COLOR_PRIMARIES_BT709
276#define COLOR_PRIMARIES_SMTPE_170 COLOR_PRIMARIES_BT601_525
277#define COLOR_PRIMARIES_SMTPE_240 COLOR_PRIMARIES_BT601_525 /* Only differs from 1e10-4 in white Y */
278#define COLOR_PRIMARIES_SMTPE_RP145 COLOR_PRIMARIES_BT601_525
279#define COLOR_PRIMARIES_EBU_3213 COLOR_PRIMARIES_BT601_625
280#define COLOR_PRIMARIES_BT470_BG COLOR_PRIMARIES_BT601_625
281#define COLOR_PRIMARIES_BT470_M COLOR_PRIMARIES_FCC1953
282#define COLOR_PRIMARIES_MAX COLOR_PRIMARIES_FCC1953
285/**
286 * Video transfer functions
287 */
288typedef enum video_transfer_func_t
292 TRANSFER_FUNC_SRGB /**< Gamma 2.2 */,
299#define TRANSFER_FUNC_BT2020 TRANSFER_FUNC_BT709
300#define TRANSFER_FUNC_SMPTE_170 TRANSFER_FUNC_BT709
301#define TRANSFER_FUNC_SMPTE_274 TRANSFER_FUNC_BT709
302#define TRANSFER_FUNC_SMPTE_293 TRANSFER_FUNC_BT709
303#define TRANSFER_FUNC_SMPTE_296 TRANSFER_FUNC_BT709
304#define TRANSFER_FUNC_ARIB_B67 TRANSFER_FUNC_HLG
305#define TRANSFER_FUNC_MAX TRANSFER_FUNC_HLG
308/**
309 * Video color space (i.e. YCbCr matrices)
310 */
311typedef enum video_color_space_t
317#define COLOR_SPACE_SRGB COLOR_SPACE_BT709
318#define COLOR_SPACE_SMPTE_170 COLOR_SPACE_BT601
319#define COLOR_SPACE_SMPTE_240 COLOR_SPACE_SMPTE_170
320#define COLOR_SPACE_MAX COLOR_SPACE_BT2020
323/**
324 * Video chroma location
325 */
326typedef enum video_chroma_location_t
329 CHROMA_LOCATION_LEFT, /**< Most common in MPEG-2 Video, H.264/265 */
330 CHROMA_LOCATION_CENTER, /**< Most common in MPEG-1 Video, JPEG */
335#define CHROMA_LOCATION_MAX CHROMA_LOCATION_BOTTOM_CENTER
338typedef enum video_color_range_t
343#define COLOR_RANGE_STUDIO COLOR_RANGE_LIMITED
344#define COLOR_RANGE_MAX COLOR_RANGE_LIMITED
347/**
348 * video format description
349 */
350struct video_format_t
352 vlc_fourcc_t i_chroma; /**< picture chroma */
354 unsigned int i_width; /**< picture width */
355 unsigned int i_height; /**< picture height */
356 unsigned int i_x_offset; /**< start offset of visible area */
357 unsigned int i_y_offset; /**< start offset of visible area */
358 unsigned int i_visible_width; /**< width of visible area */
359 unsigned int i_visible_height; /**< height of visible area */
361 unsigned int i_bits_per_pixel; /**< number of bits per pixel */
363 unsigned int i_sar_num; /**< sample/pixel aspect ratio */
364 unsigned int i_sar_den;
366 unsigned int i_frame_rate; /**< frame rate numerator */
367 unsigned int i_frame_rate_base; /**< frame rate denominator */
369 uint32_t i_rmask, i_gmask, i_bmask; /**< color masks for RGB chroma */
370 video_palette_t *p_palette; /**< video palette from demuxer */
371 video_orientation_t orientation; /**< picture orientation */
372 video_color_primaries_t primaries; /**< color primaries */
373 video_transfer_func_t transfer; /**< transfer function */
374 video_color_space_t space; /**< YCbCr color space */
375 video_color_range_t color_range; /**< 0-255 instead of 16-235 */
376 video_chroma_location_t chroma_location; /**< YCbCr chroma location */
378 video_multiview_mode_t multiview_mode; /** Multiview mode, 2D, 3D */
379 bool b_multiview_right_eye_first; /** Multiview left or right eye first*/
381 video_projection_mode_t projection_mode; /**< projection mode */
383 struct {
384 /* similar to SMPTE ST 2086 mastering display color volume */
385 uint16_t primaries[3*2]; /* G,B,R / x,y */
386 uint16_t white_point[2]; /* x,y */
390 struct {
391 /* similar to CTA-861.3 content light level */
392 uint16_t MaxCLL; /* max content light level */
393 uint16_t MaxFALL; /* max frame average light level */
395 struct {
396 uint8_t version_major;
398 unsigned profile : 7;
399 unsigned level : 6;
400 unsigned rpu_present : 1;
401 unsigned el_present : 1;
402 unsigned bl_present : 1;
404 uint32_t i_cubemap_padding; /**< padding in pixels of the cube map faces */
406
407/**
408 * Initialize a video_format_t structure with chroma 'i_chroma'
409 * \param p_src pointer to video_format_t structure
410 * \param i_chroma chroma value to use
411 */
412static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
414 memset( p_src, 0, sizeof( video_format_t ) );
415 p_src->i_chroma = i_chroma;
416 vlc_viewpoint_init( &p_src->pose );
417}
418
419/**
420 * Copy video_format_t including the palette
421 * \param p_dst video_format_t to copy to
422 * \param p_src video_format_t to copy from
423 */
424static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
426 memcpy( p_dst, p_src, sizeof( *p_dst ) );
427 if( p_src->p_palette )
428 {
429 p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
430 if( !p_dst->p_palette )
431 return VLC_ENOMEM;
432 memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
433 }
434 return VLC_SUCCESS;
435}
436
437static inline void video_format_AdjustColorSpace( video_format_t *p_fmt )
439 if ( p_fmt->primaries == COLOR_PRIMARIES_UNDEF )
440 {
441 if ( p_fmt->i_visible_height > 576 ) // HD
443 else if ( p_fmt->i_visible_height > 525 ) // PAL
445 else
447 }
448
449 if ( p_fmt->transfer == TRANSFER_FUNC_UNDEF )
450 {
451 if ( p_fmt->i_visible_height > 576 ) // HD
453 else
455 }
456
457 if ( p_fmt->space == COLOR_SPACE_UNDEF )
458 {
459 if ( p_fmt->i_visible_height > 576 ) // HD
460 p_fmt->space = COLOR_SPACE_BT709;
461 else
462 p_fmt->space = COLOR_SPACE_BT601;
463 }
464
465 if ( p_fmt->color_range == COLOR_RANGE_UNDEF )
466 {
467 if ( vlc_fourcc_IsYUV(p_fmt->i_chroma) )
469 else
471 }
472}
473
474/**
475 * Cleanup and free palette of this video_format_t
476 * \param p_src video_format_t structure to clean
477 */
478static inline void video_format_Clean( video_format_t *p_src )
480 free( p_src->p_palette );
481 memset( p_src, 0, sizeof( video_format_t ) );
482}
483
484/**
485 * It will fill up a video_format_t using the given arguments.
486 * Note that the video_format_t must already be initialized.
487 */
489 int i_width, int i_height, int i_visible_width, int i_visible_height,
490 int i_sar_num, int i_sar_den );
491
492/**
493 * It will copy the crop properties from a video_format_t to another.
494 */
496
497static inline void video_format_CopyCropAr(video_format_t *dst,
498 const video_format_t *src)
499{
500 video_format_CopyCrop(dst, src);
501 dst->i_sar_num = src->i_sar_num;
502 dst->i_sar_den = src->i_sar_den;
503}
504
505/**
506 * It will compute the crop/ar properties when scaling.
507 */
509
510/**
511 * This function "normalizes" the formats orientation, by switching the a/r according to the orientation,
512 * producing a format whose orientation is ORIENT_NORMAL. It makes a shallow copy (palette is not alloc'ed).
513 */
515 const video_format_t *in);
516
517/**
518 * This function applies the transform operation to fmt.
519 */
521
522/**
523 * This function applies the transforms necessary to fmt so that the resulting fmt
524 * has the dst_orientation.
525 */
528/**
529 * Returns the operation required to transform src into dst.
530 */
532
533/**
534 * This function will check if the first video format is similar
535 * to the second one.
536 */
538
539/**
540 * It prints details about the given video_format_t
541 */
542VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
543
544
547 switch ( transform ) {
548 case TRANSFORM_R90:
549 return TRANSFORM_R270;
550 case TRANSFORM_R270:
551 return TRANSFORM_R90;
552 default:
553 return transform;
554 }
555}
556
557
558/**
559 * subtitles format description
560 */
561struct subs_format_t
563 /* the character encoding of the text of the subtitle.
564 * all gettext recognized shorts can be used */
565 char *psz_encoding;
567
568 int i_x_origin; /**< x coordinate of the subtitle. 0 = left */
569 int i_y_origin; /**< y coordinate of the subtitle. 0 = top */
571 struct
572 {
573 /* */
574 uint32_t palette[16+1]; /* CLUT Palette AYVU */
576 /* the width of the original movie the spu was extracted from */
578 /* the height of the original movie the spu was extracted from */
582 struct
583 {
584 int i_id;
586 struct
587 {
588 uint8_t i_magazine; /* magazine value (3 bits), > 8 for any */
589 uint8_t i_page; /* BCD packet address value (4+4 bits) */
591 struct
592 {
593 uint8_t i_channel;
594 /* Reorder depth of transport video, -1 for no reordering */
595 int i_reorder_depth;
596 } cc;
598
599#define SPU_PALETTE_DEFINED 0xbeefbeef
601/**
602 * ES language definition
603 */
604typedef struct extra_languages_t
606 char *psz_language;
610/** ES Categories */
613 UNKNOWN_ES = 0x00,
619#define ES_CATEGORY_COUNT (DATA_ES + 1)
621/**
622 * ES format definition
623 */
624#define ES_PRIORITY_NOT_SELECTABLE -2
625#define ES_PRIORITY_NOT_DEFAULTABLE -1
626#define ES_PRIORITY_SELECTABLE_MIN 0
627#define ES_PRIORITY_MIN ES_PRIORITY_NOT_SELECTABLE
630 enum es_format_category_e i_cat; /**< ES category */
631 vlc_fourcc_t i_codec; /**< FOURCC value as used in vlc */
632 vlc_fourcc_t i_original_fourcc; /**< original FOURCC from the container */
634 int i_id; /**< es identifier, where means
635 -1: let the core mark the right id
636 >=0: valid id */
637 int i_group; /**< group identifier, where means:
638 -1 : standalone
639 >= 0 then a "group" (program) is created
640 for each value */
641 int i_priority; /**< priority, where means:
642 -2 : mean not selectable by the users
643 -1 : mean not selected by default even
644 when no other stream
645 >=0: priority */
646
647 char *psz_language; /**< human-readable language name */
648 char *psz_description; /**< human-readable description of language */
649 unsigned i_extra_languages; /**< length in bytes of extra language data pointer */
650 extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
652 union {
653 struct {
654 audio_format_t audio; /**< description of audio format */
655 audio_replay_gain_t audio_replay_gain; /**< audio replay gain information */
656 };
657 video_format_t video; /**< description of video format */
658 subs_format_t subs; /**< description of subtitle format */
659 };
660
661 unsigned int i_bitrate; /**< bitrate of this ES */
662 int i_profile; /**< codec specific information (like real audio flavor, mpeg audio layer, h264 profile ...) */
663 int i_level; /**< codec specific information: indicates maximum restrictions on the stream (resolution, bitrate, codec features ...) */
665 bool b_packetized; /**< whether the data is packetized (ie. not truncated) */
666 int i_extra; /**< length in bytes of extra data pointer */
667 void *p_extra; /**< extra data needed by some decoders or muxers */
669};
670
671/**
672 * This function will fill all RGB shift from RGB masks.
673 */
675
676/**
677 * This function will initialize a es_format_t structure.
678 */
680
681/**
682 * This function will initialize a es_format_t structure from a video_format_t.
683 */
685
686/**
687 * This functions will copy a es_format_t.
688 */
689VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
691/**
692 * This function will clean up a es_format_t and release all associated
693 * resources.
694 * You can call it multiple times on the same structure.
695 */
697
698/**
699 * This function will check if the first ES format is similar
700 * to the second one.
701 *
702 * All descriptive fields are ignored.
703 */
704VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
705
706/**
707 * Changes ES format to another category
708 * Format must have been properly initialized
709 */
710static inline void es_format_Change( es_format_t *fmt, int i_cat, vlc_fourcc_t i_codec )
712 es_format_Clean( fmt );
713 es_format_Init( fmt, i_cat, i_codec );
714}
715
716/**
717 * Increase the ES track id reference count.
718 *
719 * Any held ES tracks must be released with vlc_es_id_Release().
720 *
721 * @param es pointer to the ES id
722 * @return the same ES pointer, for convenience
723 */
726
727/**
728 * Decrease the ES track id reference count.
729 *
730 * @param id pointer to the ES track id
731 */
732VLC_API void
734
735/**
736 * Get the ES track input id
737 *
738 * @param id pointer to the ES track id
739 * @return the ES track input id (always valid)
740 */
741VLC_API int
743
744/**
745 * Return whether the ES track identifier is stable
746 *
747 * An string identifier is stable when it is certified to be the same across
748 * different playback instances for the same ES track.
749 *
750 * @param id pointer to the ES track id
751 * @return true if stable
752 */
753VLC_API bool
755
756/**
757 * Get the unique string identifier
758 *
759 * This id could be used to identify a track across different playback
760 * instances. For example, it can be used to store a track selection
761 * preference in a database.
762 *
763 * @warning Check with vlc_es_id_IsStrIdStable() if the ES track is stable
764 * before saving it for a future usage.
765 *
766 * @param id pointer to the ES track id
767 * @return the ES track string identifier, can't be NULL, valid until id is
768 * released
769 */
770VLC_API const char *
772
773/**
774 * Get the ES category
775 *
776 * @param id pointer to the ES track id
777 * @return the es track category (always valid)
778 */
781
782#endif
bool vlc_fourcc_IsYUV(vlc_fourcc_t fcc)
It returns true if the given fourcc is YUV and false otherwise.
Definition: fourcc.c:680
#define VLC_API
Definition: fourcc_gen.c:31
uint32_t vlc_fourcc_t
Definition: fourcc_gen.c:33
#define VLC_ENOMEM
Not enough memory.
Definition: vlc_common.h:507
#define VLC_SUCCESS
No error.
Definition: vlc_common.h:503
vlc_fourcc_t i_codec
Definition: image.c:589
static void transform(MD5_CONTEXT *ctx, const unsigned char *data)
Definition: md5.c:84
audio format description
Definition: vlc_es.h:82
unsigned int i_rate
audio sample-rate
Definition: vlc_es.h:84
uint8_t i_channels
Definition: vlc_es.h:113
unsigned i_blockalign
Definition: vlc_es.h:112
unsigned int i_frame_length
Definition: vlc_es.h:103
unsigned int i_bytes_per_frame
Definition: vlc_es.h:100
audio_channel_type_t channel_type
Definition: vlc_es.h:96
unsigned i_bitspersample
Definition: vlc_es.h:111
uint16_t i_chan_mode
Definition: vlc_es.h:93
uint16_t i_physical_channels
Definition: vlc_es.h:88
vlc_fourcc_t i_format
audio format fourcc
Definition: vlc_es.h:83
Definition: vlc_es.h:56
Definition: vlc_es.h:630
char * psz_description
human-readable description of language
Definition: vlc_es.h:649
int i_level
codec specific information: indicates maximum restrictions on the stream (resolution,...
Definition: vlc_es.h:664
int i_id
es identifier, where means -1: let the core mark the right id >=0: valid id
Definition: vlc_es.h:635
int i_profile
codec specific information (like real audio flavor, mpeg audio layer, h264 profile ....
Definition: vlc_es.h:663
audio_format_t audio
description of audio format
Definition: vlc_es.h:655
int i_group
group identifier, where means: -1 : standalone >= 0 then a "group" (program) is created for each valu...
Definition: vlc_es.h:638
enum es_format_category_e i_cat
ES category.
Definition: vlc_es.h:631
video_format_t video
description of video format
Definition: vlc_es.h:658
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:642
int i_extra
length in bytes of extra data pointer
Definition: vlc_es.h:667
bool b_packetized
whether the data is packetized (ie.
Definition: vlc_es.h:666
audio_replay_gain_t audio_replay_gain
audio replay gain information
Definition: vlc_es.h:656
extra_languages_t * p_extra_languages
extra language data needed by some decoders
Definition: vlc_es.h:651
void * p_extra
extra data needed by some decoders or muxers
Definition: vlc_es.h:668
subs_format_t subs
description of subtitle format
Definition: vlc_es.h:659
unsigned int i_bitrate
bitrate of this ES
Definition: vlc_es.h:662
vlc_fourcc_t i_codec
FOURCC value as used in vlc.
Definition: vlc_es.h:632
char * psz_language
human-readable language name
Definition: vlc_es.h:648
vlc_fourcc_t i_original_fourcc
original FOURCC from the container
Definition: vlc_es.h:633
unsigned i_extra_languages
length in bytes of extra language data pointer
Definition: vlc_es.h:650
ES language definition.
Definition: vlc_es.h:606
char * psz_description
Definition: vlc_es.h:608
char * psz_language
Definition: vlc_es.h:607
subtitles format description
Definition: vlc_es.h:563
uint32_t palette[16+1]
Definition: vlc_es.h:575
int i_x_origin
x coordinate of the subtitle.
Definition: vlc_es.h:569
int i_reorder_depth
Definition: vlc_es.h:596
struct subs_format_t::@214 teletext
char * psz_encoding
Definition: vlc_es.h:566
int i_original_frame_width
Definition: vlc_es.h:578
int i_original_frame_height
Definition: vlc_es.h:580
uint8_t i_magazine
Definition: vlc_es.h:589
int i_y_origin
y coordinate of the subtitle.
Definition: vlc_es.h:570
int i_id
Definition: vlc_es.h:585
struct subs_format_t::@213 dvb
uint8_t i_page
Definition: vlc_es.h:590
struct subs_format_t::@212 spu
uint8_t i_channel
Definition: vlc_es.h:594
struct subs_format_t::@215 cc
video format description
Definition: vlc_es.h:352
video_color_range_t color_range
0-255 instead of 16-235
Definition: vlc_es.h:376
video_projection_mode_t projection_mode
Multiview left or right eye first.
Definition: vlc_es.h:382
unsigned int i_height
picture height
Definition: vlc_es.h:356
unsigned int i_y_offset
start offset of visible area
Definition: vlc_es.h:358
unsigned int i_visible_width
width of visible area
Definition: vlc_es.h:359
unsigned int i_sar_den
Definition: vlc_es.h:365
uint16_t MaxCLL
Definition: vlc_es.h:393
unsigned int i_frame_rate
frame rate numerator
Definition: vlc_es.h:367
unsigned el_present
Definition: vlc_es.h:402
video_orientation_t orientation
picture orientation
Definition: vlc_es.h:372
struct video_format_t::@210 lighting
uint32_t max_luminance
Definition: vlc_es.h:388
video_palette_t * p_palette
video palette from demuxer
Definition: vlc_es.h:371
uint32_t i_gmask
Definition: vlc_es.h:370
uint32_t i_rmask
Definition: vlc_es.h:370
bool b_multiview_right_eye_first
Multiview mode, 2D, 3D.
Definition: vlc_es.h:380
video_color_space_t space
YCbCr color space.
Definition: vlc_es.h:375
unsigned rpu_present
Definition: vlc_es.h:401
vlc_viewpoint_t pose
Definition: vlc_es.h:383
uint8_t version_minor
Definition: vlc_es.h:398
unsigned level
Definition: vlc_es.h:400
uint32_t i_bmask
color masks for RGB chroma
Definition: vlc_es.h:370
unsigned int i_x_offset
start offset of visible area
Definition: vlc_es.h:357
uint8_t version_major
Definition: vlc_es.h:397
struct video_format_t::@209 mastering
unsigned bl_present
Definition: vlc_es.h:403
video_multiview_mode_t multiview_mode
Definition: vlc_es.h:379
unsigned profile
Definition: vlc_es.h:399
unsigned int i_width
picture width
Definition: vlc_es.h:355
unsigned int i_visible_height
height of visible area
Definition: vlc_es.h:360
uint32_t i_cubemap_padding
padding in pixels of the cube map faces
Definition: vlc_es.h:405
uint16_t MaxFALL
Definition: vlc_es.h:394
uint16_t white_point[2]
Definition: vlc_es.h:387
unsigned int i_sar_num
sample/pixel aspect ratio
Definition: vlc_es.h:364
unsigned int i_frame_rate_base
frame rate denominator
Definition: vlc_es.h:368
video_chroma_location_t chroma_location
YCbCr chroma location.
Definition: vlc_es.h:377
struct video_format_t::@211 dovi
uint32_t min_luminance
Definition: vlc_es.h:389
vlc_fourcc_t i_chroma
picture chroma
Definition: vlc_es.h:353
video_color_primaries_t primaries
color primaries
Definition: vlc_es.h:373
video_transfer_func_t transfer
transfer function
Definition: vlc_es.h:374
unsigned int i_bits_per_pixel
number of bits per pixel
Definition: vlc_es.h:362
Definition: vlc_es.h:44
int i_entries
number of in-use palette entries
Definition: vlc_es.h:45
uint8_t palette[256][4]
4-byte RGBA/YUVA palette
Definition: vlc_es.h:46
Opaque structure representing an ES (Elementary Stream) track.
Definition: es_out.c:98
VLC object common members.
Definition: vlc_objects.h:45
Viewpoints.
Definition: vlc_viewpoint.h:41
This file is a collection of common definitions and types.
static video_transform_t transform_Inverse(video_transform_t transform)
Definition: vlc_es.h:546
video_projection_mode_t
Video projection mode.
Definition: vlc_es.h:257
@ PROJECTION_MODE_EQUIRECTANGULAR
Definition: vlc_es.h:259
@ PROJECTION_MODE_CUBEMAP_LAYOUT_STANDARD
Definition: vlc_es.h:261
@ PROJECTION_MODE_RECTANGULAR
Definition: vlc_es.h:258
video_chroma_location_t
Video chroma location.
Definition: vlc_es.h:328
@ CHROMA_LOCATION_CENTER
Most common in MPEG-1 Video, JPEG.
Definition: vlc_es.h:331
@ CHROMA_LOCATION_TOP_LEFT
Definition: vlc_es.h:332
@ CHROMA_LOCATION_LEFT
Most common in MPEG-2 Video, H.264/265.
Definition: vlc_es.h:330
@ CHROMA_LOCATION_UNDEF
Definition: vlc_es.h:329
@ CHROMA_LOCATION_TOP_CENTER
Definition: vlc_es.h:333
@ CHROMA_LOCATION_BOTTOM_CENTER
Definition: vlc_es.h:335
@ CHROMA_LOCATION_BOTTOM_LEFT
Definition: vlc_es.h:334
#define AOUT_CHANS_7_0
Definition: vlc_es.h:142
video_color_space_t
Video color space (i.e.
Definition: vlc_es.h:313
@ COLOR_SPACE_BT2020
Definition: vlc_es.h:317
@ COLOR_SPACE_BT601
Definition: vlc_es.h:315
@ COLOR_SPACE_BT709
Definition: vlc_es.h:316
@ COLOR_SPACE_UNDEF
Definition: vlc_es.h:314
#define AOUT_CHANS_5_0
Definition: vlc_es.h:139
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:339
es_format_category_e
ES Categories.
Definition: vlc_es.h:613
@ SPU_ES
Definition: vlc_es.h:617
@ UNKNOWN_ES
Definition: vlc_es.h:614
@ DATA_ES
Definition: vlc_es.h:618
@ AUDIO_ES
Definition: vlc_es.h:616
@ VIDEO_ES
Definition: vlc_es.h:615
#define AOUT_CHANS_3_0
Definition: vlc_es.h:135
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:410
void video_format_ScaleCropAr(video_format_t *, const video_format_t *)
It will compute the crop/ar properties when scaling.
Definition: es_format.c:191
video_orientation_t
Picture orientation.
Definition: vlc_es.h:180
@ ORIENT_NORMAL
Definition: vlc_es.h:191
@ ORIENT_LEFT_TOP
Transposed.
Definition: vlc_es.h:185
@ ORIENT_RIGHT_TOP
Rotated 90 degrees clockwise.
Definition: vlc_es.h:187
@ ORIENT_VFLIPPED
Definition: vlc_es.h:195
@ ORIENT_ROTATED_180
Definition: vlc_es.h:196
@ ORIENT_ANTI_TRANSPOSED
Definition: vlc_es.h:193
@ ORIENT_RIGHT_BOTTOM
Anti-transposed.
Definition: vlc_es.h:188
@ ORIENT_ROTATED_270
Definition: vlc_es.h:197
@ ORIENT_TRANSPOSED
Definition: vlc_es.h:192
@ ORIENT_BOTTOM_RIGHT
Rotated 180 degrees.
Definition: vlc_es.h:184
@ ORIENT_TOP_RIGHT
Flipped horizontally.
Definition: vlc_es.h:182
@ ORIENT_HFLIPPED
Definition: vlc_es.h:194
@ ORIENT_ROTATED_90
Definition: vlc_es.h:198
@ ORIENT_LEFT_BOTTOM
Rotated 90 degrees anti-clockwise.
Definition: vlc_es.h:186
@ ORIENT_BOTTOM_LEFT
Flipped vertically.
Definition: vlc_es.h:183
@ ORIENT_TOP_LEFT
Top line represents top, left column left.
Definition: vlc_es.h:181
#define AOUT_CHANS_8_1
Definition: vlc_es.h:144
vlc_es_id_t * vlc_es_id_Hold(vlc_es_id_t *es)
Increase the ES track id reference count.
Definition: es_out.c:4636
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...
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:391
const char * vlc_es_id_GetStrId(vlc_es_id_t *id)
Get the unique string identifier.
Definition: es_out.c:4661
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:533
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:413
audio_channel_type_t
Audio channel type.
Definition: vlc_es.h:73
@ AUDIO_CHANNEL_TYPE_AMBISONICS
Definition: vlc_es.h:75
@ AUDIO_CHANNEL_TYPE_BITMAP
Definition: vlc_es.h:74
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:183
video_multiview_mode_t
Definition: vlc_es.h:228
@ MULTIVIEW_STEREO_TB
Definition: vlc_es.h:236
@ MULTIVIEW_STEREO_ROW
Definition: vlc_es.h:239
@ MULTIVIEW_STEREO_CHECKERBOARD
Definition: vlc_es.h:248
@ MULTIVIEW_STEREO_SBS
Definition: vlc_es.h:233
@ MULTIVIEW_2D
Definition: vlc_es.h:230
@ MULTIVIEW_STEREO_COL
Definition: vlc_es.h:242
@ MULTIVIEW_STEREO_FRAME
Definition: vlc_es.h:245
video_color_range_t
Definition: vlc_es.h:340
@ COLOR_RANGE_FULL
Definition: vlc_es.h:342
@ COLOR_RANGE_LIMITED
Definition: vlc_es.h:343
@ COLOR_RANGE_UNDEF
Definition: vlc_es.h:341
video_color_primaries_t
Video color primaries (a.k.a.
Definition: vlc_es.h:268
@ COLOR_PRIMARIES_BT601_625
Definition: vlc_es.h:271
@ COLOR_PRIMARIES_BT601_525
Definition: vlc_es.h:270
@ COLOR_PRIMARIES_FCC1953
Definition: vlc_es.h:275
@ COLOR_PRIMARIES_BT2020
Definition: vlc_es.h:273
@ COLOR_PRIMARIES_DCI_P3
Definition: vlc_es.h:274
@ COLOR_PRIMARIES_UNDEF
Definition: vlc_es.h:269
@ COLOR_PRIMARIES_BT709
Definition: vlc_es.h:272
enum es_format_category_e vlc_es_id_GetCat(vlc_es_id_t *id)
Get the ES category.
Definition: es_out.c:4667
video_transfer_func_t
Video transfer functions.
Definition: vlc_es.h:290
@ TRANSFER_FUNC_BT709
Definition: vlc_es.h:296
@ TRANSFER_FUNC_LINEAR
Definition: vlc_es.h:292
@ TRANSFER_FUNC_BT470_M
Definition: vlc_es.h:295
@ TRANSFER_FUNC_SRGB
Gamma 2.2.
Definition: vlc_es.h:293
@ TRANSFER_FUNC_UNDEF
Definition: vlc_es.h:291
@ TRANSFER_FUNC_HLG
Definition: vlc_es.h:299
@ TRANSFER_FUNC_SMPTE_240
Definition: vlc_es.h:298
@ TRANSFER_FUNC_BT470_BG
Definition: vlc_es.h:294
@ TRANSFER_FUNC_SMPTE_ST2084
Definition: vlc_es.h:297
static void video_format_AdjustColorSpace(video_format_t *p_fmt)
Definition: vlc_es.h:438
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:425
void video_format_FixRgb(video_format_t *)
This function will fill all RGB shift from RGB masks.
Definition: es_format.c:37
void video_format_TransformBy(video_format_t *fmt, video_transform_t transform)
This function applies the transform operation to fmt.
Definition: es_format.c:270
#define AOUT_CHANS_5_1
Definition: vlc_es.h:140
static const uint16_t vlc_chan_maps[]
Definition: vlc_es.h:157
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:73
struct extra_languages_t extra_languages_t
ES language definition.
int es_format_Copy(es_format_t *p_dst, const es_format_t *p_src)
This functions will copy a es_format_t.
#define AOUT_CHANS_7_1
Definition: vlc_es.h:143
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:431
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:510
#define VIDEO_PALETTE_COLORS_MAX
video palette data
Definition: vlc_es.h:41
bool vlc_es_id_IsStrIdStable(vlc_es_id_t *id)
Return whether the ES track identifier is stable.
Definition: es_out.c:4655
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:711
#define AOUT_CHANS_4_0
Definition: vlc_es.h:137
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...
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:254
void vlc_es_id_Release(vlc_es_id_t *id)
Decrease the ES track id reference count.
Definition: es_out.c:4643
static void video_format_Clean(video_format_t *p_src)
Cleanup and free palette of this video_format_t.
Definition: vlc_es.h:479
static void video_format_CopyCropAr(video_format_t *dst, const video_format_t *src)
Definition: vlc_es.h:498
#define AOUT_CHANS_2_0
Definition: vlc_es.h:133
#define AUDIO_REPLAY_GAIN_MAX
audio replay gain description
Definition: vlc_es.h:52
video_transform_t
Definition: vlc_es.h:216
@ TRANSFORM_HFLIP
Definition: vlc_es.h:218
@ TRANSFORM_R180
Definition: vlc_es.h:220
@ TRANSFORM_TRANSPOSE
Definition: vlc_es.h:223
@ TRANSFORM_ANTI_TRANSPOSE
Definition: vlc_es.h:224
@ TRANSFORM_R90
Definition: vlc_es.h:222
@ TRANSFORM_VFLIP
Definition: vlc_es.h:219
@ TRANSFORM_IDENTITY
Definition: vlc_es.h:217
@ TRANSFORM_R270
Definition: vlc_es.h:221
int vlc_es_id_GetInputId(vlc_es_id_t *id)
Get the ES track input id.
Definition: es_out.c:4649
#define AOUT_CHAN_CENTER
Definition: vlc_es.h:117
Video and audio viewpoint struct and helpers.
static void vlc_viewpoint_init(vlc_viewpoint_t *p_vp)
Definition: vlc_viewpoint.h:48