VLC 4.0.0-dev
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vlc_es.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vlc_es.h: Elementary stream formats descriptions
3 *****************************************************************************
4 * Copyright (C) 1999-2012 VLC authors and VideoLAN
5 *
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#include <vlc_replay_gain.h>
30
31/**
32 * \file
33 * This file defines the elementary streams format types
34 */
35
36/**
37 * video palette data
38 * \see video_format_t
39 * \see subs_format_t
40 */
41#define VIDEO_PALETTE_COLORS_MAX 256
42#define VIDEO_PALETTE_CLUT_COUNT 16
44struct video_palette_t
46 int i_entries; /**< number of in-use palette entries */
47 uint8_t palette[VIDEO_PALETTE_COLORS_MAX][4]; /**< 4-byte RGBA/YUVA palette */
48};
49
50/**
51 * Audio channel type
52 */
53typedef enum audio_channel_type_t
59/**
60 * audio format description
61 */
62struct audio_format_t
64 vlc_fourcc_t i_format; /**< audio format fourcc */
65 unsigned int i_rate; /**< audio sample-rate */
67 /* Describes the channels configuration of the samples (ie. number of
68 * channels which are available in the buffer, and positions). */
69 uint16_t i_physical_channels;
71 /* Describes the chan mode, either set from the input
72 * (demux/codec/packetizer) or overridden by the user, used by audio
73 * filters. */
74 uint16_t i_chan_mode;
76 /* Channel type */
79 /* Optional - for A/52, SPDIF and DTS types : */
80 /* Bytes used by one compressed frame, depends on bitrate. */
81 unsigned int i_bytes_per_frame;
83 /* Number of sampleframes contained in one compressed frame. */
84 unsigned int i_frame_length;
85 /* Please note that it may be completely arbitrary - buffers are not
86 * obliged to contain a integral number of so-called "frames". It's
87 * just here for the division :
88 * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
89 */
90
91 /* FIXME ? (used by the codecs) */
92 unsigned i_bitspersample;
93 unsigned i_blockalign;
94 uint8_t i_channels; /* must be <=32 */
95};
96
97/* Values available for audio channels */
98#define AOUT_CHAN_CENTER 0x1
99#define AOUT_CHAN_LEFT 0x2
100#define AOUT_CHAN_RIGHT 0x4
101#define AOUT_CHAN_REARCENTER 0x10
102#define AOUT_CHAN_REARLEFT 0x20
103#define AOUT_CHAN_REARRIGHT 0x40
104#define AOUT_CHAN_MIDDLELEFT 0x100
105#define AOUT_CHAN_MIDDLERIGHT 0x200
106#define AOUT_CHAN_LFE 0x1000
108#define AOUT_CHANS_FRONT (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)
109#define AOUT_CHANS_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT)
110#define AOUT_CHANS_REAR (AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)
111#define AOUT_CHANS_CENTER (AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER)
113#define AOUT_CHANS_STEREO AOUT_CHANS_2_0
114#define AOUT_CHANS_2_0 (AOUT_CHANS_FRONT)
115#define AOUT_CHANS_2_1 (AOUT_CHANS_FRONT | AOUT_CHAN_LFE)
116#define AOUT_CHANS_3_0 (AOUT_CHANS_FRONT | AOUT_CHAN_CENTER)
117#define AOUT_CHANS_3_1 (AOUT_CHANS_3_0 | AOUT_CHAN_LFE)
118#define AOUT_CHANS_4_0 (AOUT_CHANS_FRONT | AOUT_CHANS_REAR)
119#define AOUT_CHANS_4_1 (AOUT_CHANS_4_0 | AOUT_CHAN_LFE)
120#define AOUT_CHANS_5_0 (AOUT_CHANS_4_0 | AOUT_CHAN_CENTER)
121#define AOUT_CHANS_5_1 (AOUT_CHANS_5_0 | AOUT_CHAN_LFE)
122#define AOUT_CHANS_6_0 (AOUT_CHANS_4_0 | AOUT_CHANS_MIDDLE)
123#define AOUT_CHANS_7_0 (AOUT_CHANS_6_0 | AOUT_CHAN_CENTER)
124#define AOUT_CHANS_7_1 (AOUT_CHANS_5_1 | AOUT_CHANS_MIDDLE)
125#define AOUT_CHANS_8_1 (AOUT_CHANS_7_1 | AOUT_CHAN_REARCENTER)
127#define AOUT_CHANS_4_0_MIDDLE (AOUT_CHANS_FRONT | AOUT_CHANS_MIDDLE)
128#define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_FRONT | AOUT_CHANS_CENTER)
129#define AOUT_CHANS_5_0_MIDDLE (AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER)
130#define AOUT_CHANS_6_1_MIDDLE (AOUT_CHANS_5_0_MIDDLE | AOUT_CHAN_REARCENTER | AOUT_CHAN_LFE)
132/* Maximum number of mapped channels (or the maximum of bits set in
133 * i_physical_channels) */
134#define AOUT_CHAN_MAX 9
135/* Maximum number of unmapped channels */
136#define INPUT_CHAN_MAX 64
138static const uint16_t vlc_chan_maps[] =
152/* Values available for i_chan_mode only */
153#define AOUT_CHANMODE_DUALMONO 0x1
154#define AOUT_CHANMODE_DOLBYSTEREO 0x2
155#define AOUT_CHANMODE_BINAURAL 0x4
157/**
158 * Picture orientation.
159 */
160typedef enum video_orientation_t
162 ORIENT_TOP_LEFT = 0, /**< Top line represents top, left column left. */
163 ORIENT_TOP_RIGHT, /**< Flipped horizontally */
164 ORIENT_BOTTOM_LEFT, /**< Flipped vertically */
165 ORIENT_BOTTOM_RIGHT, /**< Rotated 180 degrees */
166 ORIENT_LEFT_TOP, /**< Transposed */
167 ORIENT_LEFT_BOTTOM, /**< Rotated 90 degrees anti-clockwise */
168 ORIENT_RIGHT_TOP, /**< Rotated 90 degrees clockwise */
169 ORIENT_RIGHT_BOTTOM, /**< Anti-transposed */
170#define ORIENT_MAX ((size_t)ORIENT_RIGHT_BOTTOM)
181/** Convert EXIF orientation to enum video_orientation_t */
182#define ORIENT_FROM_EXIF(exif) ((0x57642310U >> (4 * ((exif) - 1))) & 7)
183/** Convert enum video_orientation_t to EXIF */
184#define ORIENT_TO_EXIF(orient) ((0x76853421U >> (4 * (orient))) & 15)
185/** If the orientation is natural or mirrored */
186#define ORIENT_IS_MIRROR(orient) vlc_parity(orient)
187/** If the orientation swaps dimensions */
188#define ORIENT_IS_SWAP(orient) (((orient) & 4) != 0)
189/** Applies horizontal flip to an orientation */
190#define ORIENT_HFLIP(orient) ((orient) ^ 1)
191/** Applies vertical flip to an orientation */
192#define ORIENT_VFLIP(orient) ((orient) ^ 2)
193/** Applies 180 degree rotation to an orientation */
194#define ORIENT_ROTATE_180(orient) ((orient) ^ 3)
196VLC_API void
198
199typedef enum video_transform_t
211typedef enum video_multiview_mode_t
213 /* No stereoscopy: 2D picture. */
214 MULTIVIEW_2D = 0,
216 /* Side-by-side with left eye first. */
219 /* Top-bottom with left eye first. */
222 /* Row sequential with left eye first. */
225 /* Column sequential with left eye first. */
228 /* Frame sequential with left eye first. */
231 /* Checkerboard pattern with left eye first. */
234#define MULTIVIEW_STEREO_MAX MULTIVIEW_STEREO_CHECKERBOARD
237/**
238 * Video projection mode.
239 */
240typedef enum video_projection_mode_t
248/**
249 * Video color primaries (a.k.a. chromacities)
250 */
251typedef enum video_color_primaries_t
260#define COLOR_PRIMARIES_SRGB COLOR_PRIMARIES_BT709
261#define COLOR_PRIMARIES_SMTPE_170 COLOR_PRIMARIES_BT601_525
262#define COLOR_PRIMARIES_SMTPE_240 COLOR_PRIMARIES_BT601_525 /* Only differs from 1e10-4 in white Y */
263#define COLOR_PRIMARIES_SMTPE_RP145 COLOR_PRIMARIES_BT601_525
264#define COLOR_PRIMARIES_EBU_3213 COLOR_PRIMARIES_BT601_625
265#define COLOR_PRIMARIES_BT470_BG COLOR_PRIMARIES_BT601_625
266#define COLOR_PRIMARIES_BT470_M COLOR_PRIMARIES_FCC1953
267#define COLOR_PRIMARIES_MAX COLOR_PRIMARIES_FCC1953
270/**
271 * Video transfer functions
272 */
273typedef enum video_transfer_func_t
277 TRANSFER_FUNC_SRGB /**< Gamma 2.2 */,
284#define TRANSFER_FUNC_BT2020 TRANSFER_FUNC_BT709
285#define TRANSFER_FUNC_SMPTE_170 TRANSFER_FUNC_BT709
286#define TRANSFER_FUNC_SMPTE_274 TRANSFER_FUNC_BT709
287#define TRANSFER_FUNC_SMPTE_293 TRANSFER_FUNC_BT709
288#define TRANSFER_FUNC_SMPTE_296 TRANSFER_FUNC_BT709
289#define TRANSFER_FUNC_ARIB_B67 TRANSFER_FUNC_HLG
290#define TRANSFER_FUNC_MAX TRANSFER_FUNC_HLG
293/**
294 * Video color space (i.e. YCbCr matrices)
295 */
296typedef enum video_color_space_t
302#define COLOR_SPACE_SRGB COLOR_SPACE_BT709
303#define COLOR_SPACE_SMPTE_170 COLOR_SPACE_BT601
304#define COLOR_SPACE_SMPTE_240 COLOR_SPACE_SMPTE_170
305#define COLOR_SPACE_MAX COLOR_SPACE_BT2020
308/**
309 * Video chroma location
310 */
311typedef enum video_chroma_location_t
314 CHROMA_LOCATION_LEFT, /**< Most common in MPEG-2 Video, H.264/265 */
315 CHROMA_LOCATION_CENTER, /**< Most common in MPEG-1 Video, JPEG */
320#define CHROMA_LOCATION_MAX CHROMA_LOCATION_BOTTOM_CENTER
323typedef enum video_color_range_t
328#define COLOR_RANGE_STUDIO COLOR_RANGE_LIMITED
329#define COLOR_RANGE_MAX COLOR_RANGE_LIMITED
332/**
333 * video format description
334 */
335struct video_format_t
337 vlc_fourcc_t i_chroma; /**< picture chroma */
339 unsigned int i_width; /**< picture width */
340 unsigned int i_height; /**< picture height */
341 unsigned int i_x_offset; /**< start offset of visible area */
342 unsigned int i_y_offset; /**< start offset of visible area */
343 unsigned int i_visible_width; /**< width of visible area */
344 unsigned int i_visible_height; /**< height of visible area */
346 unsigned int i_sar_num; /**< sample/pixel aspect ratio */
347 unsigned int i_sar_den;
349 unsigned int i_frame_rate; /**< frame rate numerator */
350 unsigned int i_frame_rate_base; /**< frame rate denominator */
352 video_palette_t *p_palette; /**< video palette from demuxer */
353 video_orientation_t orientation; /**< picture orientation */
354 video_color_primaries_t primaries; /**< color primaries */
355 video_transfer_func_t transfer; /**< transfer function */
356 video_color_space_t space; /**< YCbCr color space */
357 video_color_range_t color_range; /**< 0-255 instead of 16-235 */
358 video_chroma_location_t chroma_location; /**< YCbCr chroma location */
360 video_multiview_mode_t multiview_mode; /** Multiview mode, 2D, 3D */
361 bool b_multiview_right_eye_first; /** Multiview left or right eye first*/
363 video_projection_mode_t projection_mode; /**< projection mode */
365 struct {
366 /* similar to SMPTE ST 2086 mastering display color volume */
367 uint16_t primaries[3*2]; /* G,B,R / x,y */
368 uint16_t white_point[2]; /* x,y */
372 struct {
373 /* similar to CTA-861.3 content light level */
374 uint16_t MaxCLL; /* max content light level */
375 uint16_t MaxFALL; /* max frame average light level */
377 struct {
378 uint8_t version_major;
380 unsigned profile : 7;
381 unsigned level : 6;
382 unsigned rpu_present : 1;
383 unsigned el_present : 1;
384 unsigned bl_present : 1;
386 uint32_t i_cubemap_padding; /**< padding in pixels of the cube map faces */
388
389/**
390 * Initialize a video_format_t structure with chroma 'i_chroma'
391 * \param p_src pointer to video_format_t structure
392 * \param i_chroma chroma value to use
393 */
394static inline void video_format_Init( video_format_t *p_src, vlc_fourcc_t i_chroma )
396 memset( p_src, 0, sizeof( video_format_t ) );
397 p_src->i_chroma = i_chroma;
398 vlc_viewpoint_init( &p_src->pose );
399}
400
401/**
402 * Copy video_format_t including the palette
403 * \param p_dst video_format_t to copy to
404 * \param p_src video_format_t to copy from
405 */
406static inline int video_format_Copy( video_format_t *p_dst, const video_format_t *p_src )
408 memcpy( p_dst, p_src, sizeof( *p_dst ) );
409 if( p_src->p_palette )
410 {
411 p_dst->p_palette = (video_palette_t *) malloc( sizeof( video_palette_t ) );
412 if( !p_dst->p_palette )
413 return VLC_ENOMEM;
414 memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
415 }
416 return VLC_SUCCESS;
417}
418
419static inline void video_format_AdjustColorSpace( video_format_t *p_fmt )
421 if ( p_fmt->primaries == COLOR_PRIMARIES_UNDEF )
422 {
423 if ( p_fmt->i_visible_height > 576 ) // HD
425 else if ( p_fmt->i_visible_height > 525 ) // PAL
427 else
429 }
430
431 if ( p_fmt->transfer == TRANSFER_FUNC_UNDEF )
432 {
433 if ( p_fmt->i_visible_height > 576 ) // HD
435 else
437 }
438
439 if ( p_fmt->space == COLOR_SPACE_UNDEF )
440 {
441 if ( p_fmt->i_visible_height > 576 ) // HD
442 p_fmt->space = COLOR_SPACE_BT709;
443 else
444 p_fmt->space = COLOR_SPACE_BT601;
445 }
446
447 if ( p_fmt->color_range == COLOR_RANGE_UNDEF )
448 {
449 if ( vlc_fourcc_IsYUV(p_fmt->i_chroma) )
451 else
453 }
454}
455
456/**
457 * Cleanup and free palette of this video_format_t
458 * \param p_src video_format_t structure to clean
459 */
460static inline void video_format_Clean( video_format_t *p_src )
462 free( p_src->p_palette );
463 memset( p_src, 0, sizeof( video_format_t ) );
464}
465
466/**
467 * It will fill up a video_format_t using the given arguments.
468 * Note that the video_format_t must already be initialized.
469 */
471 int i_width, int i_height, int i_visible_width, int i_visible_height,
472 int i_sar_num, int i_sar_den );
473
474/**
475 * It will copy the crop properties from a video_format_t to another.
476 */
478
479static inline void video_format_CopyCropAr(video_format_t *dst,
480 const video_format_t *src)
481{
482 video_format_CopyCrop(dst, src);
483 dst->i_sar_num = src->i_sar_num;
484 dst->i_sar_den = src->i_sar_den;
485}
486
487/**
488 * It will compute the crop/ar properties when scaling.
489 */
491
492/**
493 * This function "normalizes" the formats orientation, by switching the a/r according to the orientation,
494 * producing a format whose orientation is ORIENT_NORMAL. It makes a shallow copy (palette is not alloc'ed).
495 */
497 const video_format_t *in);
498
499/**
500 * This function applies the transform operation to fmt.
501 */
503
504/**
505 * This function applies the transforms necessary to fmt so that the resulting fmt
506 * has the dst_orientation.
507 */
510/**
511 * Returns the operation required to transform src into dst.
512 */
514
515/**
516 * This function will check if the first video format is similar
517 * to the second one.
518 */
520
521/** Checks whether the video formats have the same chroma and mask */
523
524/**
525 * It prints details about the given video_format_t
526 */
527VLC_API void video_format_Print( vlc_object_t *, const char *, const video_format_t * );
528
529
532 switch ( transform ) {
533 case TRANSFORM_R90:
534 return TRANSFORM_R270;
535 case TRANSFORM_R270:
536 return TRANSFORM_R90;
537 default:
538 return transform;
539 }
540}
541
542
543/**
544 * subtitles format description
545 */
546struct subs_format_t
548 /* the character encoding of the text of the subtitle.
549 * all gettext recognized shorts can be used */
550 char *psz_encoding;
552
553 int i_x_origin; /**< x coordinate of the subtitle. 0 = left */
554 int i_y_origin; /**< y coordinate of the subtitle. 0 = top */
556 struct
557 {
558 /* the width of the original movie the spu was extracted from */
559 unsigned i_original_frame_width;
560 /* the height of the original movie the spu was extracted from */
563 /* */
564 uint32_t palette[VIDEO_PALETTE_CLUT_COUNT]; /* CLUT Palette AYVU */
568 struct
569 {
570 int i_id;
572 struct
573 {
574 uint8_t i_magazine; /* magazine value (3 bits), > 8 for any */
575 uint8_t i_page; /* BCD packet address value (4+4 bits) */
577 struct
578 {
579 uint8_t i_channel;
580 /* Reorder depth of transport video, -1 for no reordering */
581 int i_reorder_depth;
582 } cc;
584
585/**
586 * ES language definition
587 */
588typedef struct extra_languages_t
594/** ES Categories */
597 UNKNOWN_ES = 0x00,
603#define ES_CATEGORY_COUNT (DATA_ES + 1)
605/**
606 * ES format definition
607 */
608#define ES_PRIORITY_NOT_SELECTABLE -2
609#define ES_PRIORITY_NOT_DEFAULTABLE -1
610#define ES_PRIORITY_SELECTABLE_MIN 0
611#define ES_PRIORITY_MIN ES_PRIORITY_NOT_SELECTABLE
614 enum es_format_category_e i_cat; /**< ES category */
615 vlc_fourcc_t i_codec; /**< FOURCC value as used in vlc */
616 vlc_fourcc_t i_original_fourcc; /**< original FOURCC from the container */
618 int i_id; /**< es identifier, where means
619 -1: let the core mark the right id
620 >=0: valid id */
621 int i_group; /**< group identifier, where means:
622 -1 : standalone
623 >= 0 then a "group" (program) is created
624 for each value */
625 int i_priority; /**< priority, where means:
626 -2 : mean not selectable by the users
627 -1 : mean not selected by default even
628 when no other stream
629 >=0: priority */
630
631 char *psz_language; /**< human-readable language name */
632 char *psz_description; /**< human-readable description of language */
633 unsigned i_extra_languages; /**< length in bytes of extra language data pointer */
634 extra_languages_t *p_extra_languages; /**< extra language data needed by some decoders */
636 union {
637 struct {
638 audio_format_t audio; /**< description of audio format */
639 audio_replay_gain_t audio_replay_gain; /**< audio replay gain information */
640 };
641 video_format_t video; /**< description of video format */
642 subs_format_t subs; /**< description of subtitle format */
643 };
644
645 unsigned int i_bitrate; /**< bitrate of this ES */
646 int i_profile; /**< codec specific information (like real audio flavor, mpeg audio layer, h264 profile ...) */
647 int i_level; /**< codec specific information: indicates maximum restrictions on the stream (resolution, bitrate, codec features ...) */
649 bool b_packetized; /**< whether the data is packetized (ie. not truncated) */
650 size_t i_extra; /**< length in bytes of extra data pointer */
651 void *p_extra; /**< extra data needed by some decoders or muxers */
653};
654
655/**
656 * This function will initialize a es_format_t structure.
657 */
659
660/**
661 * This function will initialize a es_format_t structure from a video_format_t.
662 */
664
665/**
666 * This functions will copy a es_format_t.
667 */
668VLC_API int es_format_Copy( es_format_t *p_dst, const es_format_t *p_src );
670/**
671 * This function will clean up a es_format_t and release all associated
672 * resources.
673 * You can call it multiple times on the same structure.
674 */
676
677/**
678 * This function will check if the first ES format is similar
679 * to the second one.
680 *
681 * All descriptive fields are ignored.
682 */
683VLC_API bool es_format_IsSimilar( const es_format_t *, const es_format_t * );
684
685/**
686 * Log differences between 2 ES format.
687 * The difference checks the same fields as \ref es_format_IsSimilar
688 */
690 const char *name_a, const es_format_t *a,
691 const char *name_b, const es_format_t *b);
692/**
693 * Log differences between 2 video format.
694 * The difference checks the same fields as \ref video_format_IsSimilar
695 */
697 const char *name_a, const video_format_t *a,
698 const char *name_b, const video_format_t *b);
699
700/**
701 * Changes ES format to another category
702 * Format must have been properly initialized
703 */
704static inline void es_format_Change( es_format_t *fmt, int i_cat, vlc_fourcc_t i_codec )
706 es_format_Clean( fmt );
707 es_format_Init( fmt, i_cat, i_codec );
708}
709
710/**
711 * Increase the ES track id reference count.
712 *
713 * Any held ES tracks must be released with vlc_es_id_Release().
714 *
715 * @param es pointer to the ES id
716 * @return the same ES pointer, for convenience
717 */
720
721/**
722 * Decrease the ES track id reference count.
723 *
724 * @param id pointer to the ES track id
725 */
726VLC_API void
728
729/**
730 * Get the ES track input id
731 *
732 * @param id pointer to the ES track id
733 * @return the ES track input id (always valid)
734 */
735VLC_API int
737
738/**
739 * Return whether the ES track identifier is stable
740 *
741 * An string identifier is stable when it is certified to be the same across
742 * different playback instances for the same ES track.
743 *
744 * @param id pointer to the ES track id
745 * @return true if stable
746 */
747VLC_API bool
749
750/**
751 * Get the unique string identifier
752 *
753 * This id could be used to identify a track across different playback
754 * instances. For example, it can be used to store a track selection
755 * preference in a database.
756 *
757 * @warning Check with vlc_es_id_IsStrIdStable() if the ES track is stable
758 * before saving it for a future usage.
759 *
760 * @param id pointer to the ES track id
761 * @return the ES track string identifier, can't be NULL, valid until id is
762 * released
763 */
764VLC_API const char *
766
767/**
768 * Get the ES category
769 *
770 * @param id pointer to the ES track id
771 * @return the es track category (always valid)
772 */
775
776/**
777 * Get the native endianness mask for a RGB fourcc
778 *
779 * @note the alpha mask is 0 when the chroma doesn't contain an alpha component.
780 *
781 * @return VLC_SUCCESS if the mask values were filled
782 */
783static inline int vlc_RGBChromaToMask( vlc_fourcc_t fcc, uint32_t *rmask,
784 uint32_t *gmask, uint32_t *bmask,
785 uint32_t *amask )
786{
787 switch(fcc)
788 {
789 case VLC_CODEC_BGRA:
790 *bmask = 0xff000000;
791 *gmask = 0x00ff0000;
792 *rmask = 0x0000ff00;
793 *amask = 0x000000ff;
794 break;
795 case VLC_CODEC_BGRX:
796 *bmask = 0xff000000;
797 *gmask = 0x00ff0000;
798 *rmask = 0x0000ff00;
799 *amask = 0;
800 break;
801 case VLC_CODEC_RGBA:
802 *rmask = 0xff000000;
803 *gmask = 0x00ff0000;
804 *bmask = 0x0000ff00;
805 *amask = 0x000000ff;
806 break;
807 case VLC_CODEC_RGBX:
808 *rmask = 0xff000000;
809 *gmask = 0x00ff0000;
810 *bmask = 0x0000ff00;
811 *amask = 0;
812 break;
813 case VLC_CODEC_ABGR:
814 *amask = 0xff000000;
815 *bmask = 0x00ff0000;
816 *gmask = 0x0000ff00;
817 *rmask = 0x000000ff;
818 break;
819 case VLC_CODEC_XBGR:
820 *amask = 0;
821 *bmask = 0x00ff0000;
822 *gmask = 0x0000ff00;
823 *rmask = 0x000000ff;
824 break;
825 case VLC_CODEC_ARGB:
826 *amask = 0xff000000;
827 *rmask = 0x00ff0000;
828 *gmask = 0x0000ff00;
829 *bmask = 0x000000ff;
830 break;
831 case VLC_CODEC_XRGB:
832 *amask = 0;
833 *rmask = 0x00ff0000;
834 *gmask = 0x0000ff00;
835 *bmask = 0x000000ff;
836 break;
837 default:
838 return VLC_EINVAL;
839 }
840 return VLC_SUCCESS;
841}
842
843#endif
#define VLC_API
Definition fourcc_gen.c:31
uint32_t vlc_fourcc_t
Definition fourcc_gen.c:33
#define VLC_EINVAL
Bad variable value.
Definition vlc_common.h:488
#define VLC_ENOMEM
Not enough memory.
Definition vlc_common.h:482
#define VLC_SUCCESS
No error.
Definition vlc_common.h:478
vlc_fourcc_t i_codec
Definition image.c:568
static void transform(MD5_CONTEXT *ctx, const unsigned char *data)
Definition md5.c:84
audio format description
Definition vlc_es.h:64
unsigned int i_rate
audio sample-rate
Definition vlc_es.h:66
uint8_t i_channels
Definition vlc_es.h:95
unsigned i_blockalign
Definition vlc_es.h:94
unsigned int i_frame_length
Definition vlc_es.h:85
unsigned int i_bytes_per_frame
Definition vlc_es.h:82
audio_channel_type_t channel_type
Definition vlc_es.h:78
unsigned i_bitspersample
Definition vlc_es.h:93
uint16_t i_chan_mode
Definition vlc_es.h:75
uint16_t i_physical_channels
Definition vlc_es.h:70
vlc_fourcc_t i_format
audio format fourcc
Definition vlc_es.h:65
Audio replay gain.
Definition vlc_replay_gain.h:48
Definition vlc_es.h:614
char * psz_description
human-readable description of language
Definition vlc_es.h:633
int i_level
codec specific information: indicates maximum restrictions on the stream (resolution,...
Definition vlc_es.h:648
int i_id
es identifier, where means -1: let the core mark the right id >=0: valid id
Definition vlc_es.h:619
int i_profile
codec specific information (like real audio flavor, mpeg audio layer, h264 profile ....
Definition vlc_es.h:647
audio_format_t audio
description of audio format
Definition vlc_es.h:639
int i_group
group identifier, where means: -1 : standalone >= 0 then a "group" (program) is created for each valu...
Definition vlc_es.h:622
enum es_format_category_e i_cat
ES category.
Definition vlc_es.h:615
video_format_t video
description of video format
Definition vlc_es.h:642
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:626
bool b_packetized
whether the data is packetized (ie.
Definition vlc_es.h:650
size_t i_extra
length in bytes of extra data pointer
Definition vlc_es.h:651
audio_replay_gain_t audio_replay_gain
audio replay gain information
Definition vlc_es.h:640
extra_languages_t * p_extra_languages
extra language data needed by some decoders
Definition vlc_es.h:635
void * p_extra
extra data needed by some decoders or muxers
Definition vlc_es.h:652
subs_format_t subs
description of subtitle format
Definition vlc_es.h:643
unsigned int i_bitrate
bitrate of this ES
Definition vlc_es.h:646
vlc_fourcc_t i_codec
FOURCC value as used in vlc.
Definition vlc_es.h:616
char * psz_language
human-readable language name
Definition vlc_es.h:632
vlc_fourcc_t i_original_fourcc
original FOURCC from the container
Definition vlc_es.h:617
unsigned i_extra_languages
length in bytes of extra language data pointer
Definition vlc_es.h:634
ES language definition.
Definition vlc_es.h:590
char * psz_description
Definition vlc_es.h:592
char * psz_language
Definition vlc_es.h:591
subtitles format description
Definition vlc_es.h:548
int i_x_origin
x coordinate of the subtitle.
Definition vlc_es.h:554
int i_reorder_depth
Definition vlc_es.h:582
struct subs_format_t::@214 teletext
char * psz_encoding
Definition vlc_es.h:551
bool b_palette
Definition vlc_es.h:566
uint8_t i_magazine
Definition vlc_es.h:575
int i_y_origin
y coordinate of the subtitle.
Definition vlc_es.h:555
int i_id
Definition vlc_es.h:571
uint32_t palette[16]
Definition vlc_es.h:565
struct subs_format_t::@213 dvb
uint8_t i_page
Definition vlc_es.h:576
struct subs_format_t::@212 spu
uint8_t i_channel
Definition vlc_es.h:580
unsigned i_original_frame_width
Definition vlc_es.h:560
struct subs_format_t::@215 cc
unsigned i_original_frame_height
Definition vlc_es.h:562
video format description
Definition vlc_es.h:337
video_color_range_t color_range
0-255 instead of 16-235
Definition vlc_es.h:358
video_projection_mode_t projection_mode
Multiview left or right eye first.
Definition vlc_es.h:364
unsigned int i_height
picture height
Definition vlc_es.h:341
unsigned int i_y_offset
start offset of visible area
Definition vlc_es.h:343
unsigned int i_visible_width
width of visible area
Definition vlc_es.h:344
unsigned int i_sar_den
Definition vlc_es.h:348
uint16_t MaxCLL
Definition vlc_es.h:375
unsigned int i_frame_rate
frame rate numerator
Definition vlc_es.h:350
unsigned el_present
Definition vlc_es.h:384
video_orientation_t orientation
picture orientation
Definition vlc_es.h:354
struct video_format_t::@210 lighting
uint32_t max_luminance
Definition vlc_es.h:370
video_palette_t * p_palette
video palette from demuxer
Definition vlc_es.h:353
bool b_multiview_right_eye_first
Multiview mode, 2D, 3D.
Definition vlc_es.h:362
video_color_space_t space
YCbCr color space.
Definition vlc_es.h:357
unsigned rpu_present
Definition vlc_es.h:383
vlc_viewpoint_t pose
Definition vlc_es.h:365
uint8_t version_minor
Definition vlc_es.h:380
unsigned level
Definition vlc_es.h:382
unsigned int i_x_offset
start offset of visible area
Definition vlc_es.h:342
uint8_t version_major
Definition vlc_es.h:379
struct video_format_t::@209 mastering
unsigned bl_present
Definition vlc_es.h:385
video_multiview_mode_t multiview_mode
Definition vlc_es.h:361
unsigned profile
Definition vlc_es.h:381
unsigned int i_width
picture width
Definition vlc_es.h:340
unsigned int i_visible_height
height of visible area
Definition vlc_es.h:345
uint32_t i_cubemap_padding
padding in pixels of the cube map faces
Definition vlc_es.h:387
uint16_t MaxFALL
Definition vlc_es.h:376
uint16_t white_point[2]
Definition vlc_es.h:369
unsigned int i_sar_num
sample/pixel aspect ratio
Definition vlc_es.h:347
unsigned int i_frame_rate_base
frame rate denominator
Definition vlc_es.h:351
video_chroma_location_t chroma_location
YCbCr chroma location.
Definition vlc_es.h:359
struct video_format_t::@211 dovi
uint32_t min_luminance
Definition vlc_es.h:371
vlc_fourcc_t i_chroma
picture chroma
Definition vlc_es.h:338
video_color_primaries_t primaries
color primaries
Definition vlc_es.h:355
video_transfer_func_t transfer
transfer function
Definition vlc_es.h:356
Definition vlc_es.h:46
int i_entries
number of in-use palette entries
Definition vlc_es.h:47
uint8_t palette[256][4]
4-byte RGBA/YUVA palette
Definition vlc_es.h:48
Opaque structure representing an ES (Elementary Stream) track.
Definition es_out.c:105
Definition vlc_messages.h:125
VLC object common members.
Definition vlc_objects.h:53
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:531
video_projection_mode_t
Video projection mode.
Definition vlc_es.h:242
@ PROJECTION_MODE_EQUIRECTANGULAR
Definition vlc_es.h:244
@ PROJECTION_MODE_CUBEMAP_LAYOUT_STANDARD
Definition vlc_es.h:246
@ PROJECTION_MODE_RECTANGULAR
Definition vlc_es.h:243
video_chroma_location_t
Video chroma location.
Definition vlc_es.h:313
@ CHROMA_LOCATION_CENTER
Most common in MPEG-1 Video, JPEG.
Definition vlc_es.h:316
@ CHROMA_LOCATION_TOP_LEFT
Definition vlc_es.h:317
@ CHROMA_LOCATION_LEFT
Most common in MPEG-2 Video, H.264/265.
Definition vlc_es.h:315
@ CHROMA_LOCATION_UNDEF
Definition vlc_es.h:314
@ CHROMA_LOCATION_TOP_CENTER
Definition vlc_es.h:318
@ CHROMA_LOCATION_BOTTOM_CENTER
Definition vlc_es.h:320
@ CHROMA_LOCATION_BOTTOM_LEFT
Definition vlc_es.h:319
#define AOUT_CHANS_7_0
Definition vlc_es.h:124
video_color_space_t
Video color space (i.e.
Definition vlc_es.h:298
@ COLOR_SPACE_BT2020
Definition vlc_es.h:302
@ COLOR_SPACE_BT601
Definition vlc_es.h:300
@ COLOR_SPACE_BT709
Definition vlc_es.h:301
@ COLOR_SPACE_UNDEF
Definition vlc_es.h:299
#define AOUT_CHANS_5_0
Definition vlc_es.h:121
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:218
es_format_category_e
ES Categories.
Definition vlc_es.h:597
@ SPU_ES
Definition vlc_es.h:601
@ UNKNOWN_ES
Definition vlc_es.h:598
@ DATA_ES
Definition vlc_es.h:602
@ AUDIO_ES
Definition vlc_es.h:600
@ VIDEO_ES
Definition vlc_es.h:599
#define AOUT_CHANS_3_0
Definition vlc_es.h:117
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:301
void video_format_ScaleCropAr(video_format_t *, const video_format_t *)
It will compute the crop/ar properties when scaling.
Definition es_format.c:61
video_orientation_t
Picture orientation.
Definition vlc_es.h:162
@ ORIENT_NORMAL
Definition vlc_es.h:173
@ ORIENT_LEFT_TOP
Transposed.
Definition vlc_es.h:167
@ ORIENT_RIGHT_TOP
Rotated 90 degrees clockwise.
Definition vlc_es.h:169
@ ORIENT_VFLIPPED
Definition vlc_es.h:177
@ ORIENT_ROTATED_180
Definition vlc_es.h:178
@ ORIENT_ANTI_TRANSPOSED
Definition vlc_es.h:175
@ ORIENT_RIGHT_BOTTOM
Anti-transposed.
Definition vlc_es.h:170
@ ORIENT_ROTATED_270
Definition vlc_es.h:179
@ ORIENT_TRANSPOSED
Definition vlc_es.h:174
@ ORIENT_BOTTOM_RIGHT
Rotated 180 degrees.
Definition vlc_es.h:166
@ ORIENT_TOP_RIGHT
Flipped horizontally.
Definition vlc_es.h:164
@ ORIENT_HFLIPPED
Definition vlc_es.h:176
@ ORIENT_ROTATED_90
Definition vlc_es.h:180
@ ORIENT_LEFT_BOTTOM
Rotated 90 degrees anti-clockwise.
Definition vlc_es.h:168
@ ORIENT_BOTTOM_LEFT
Flipped vertically.
Definition vlc_es.h:165
@ ORIENT_TOP_LEFT
Top line represents top, left column left.
Definition vlc_es.h:163
#define AOUT_CHANS_8_1
Definition vlc_es.h:126
vlc_es_id_t * vlc_es_id_Hold(vlc_es_id_t *es)
Increase the ES track id reference count.
Definition es_out.c:4687
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:283
const char * vlc_es_id_GetStrId(vlc_es_id_t *id)
Get the unique string identifier.
Definition es_out.c:4712
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:424
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:395
audio_channel_type_t
Audio channel type.
Definition vlc_es.h:55
@ AUDIO_CHANNEL_TYPE_AMBISONICS
Definition vlc_es.h:57
@ AUDIO_CHANNEL_TYPE_BITMAP
Definition vlc_es.h:56
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:53
video_multiview_mode_t
Definition vlc_es.h:213
@ MULTIVIEW_STEREO_TB
Definition vlc_es.h:221
@ MULTIVIEW_STEREO_ROW
Definition vlc_es.h:224
@ MULTIVIEW_STEREO_CHECKERBOARD
Definition vlc_es.h:233
@ MULTIVIEW_STEREO_SBS
Definition vlc_es.h:218
@ MULTIVIEW_2D
Definition vlc_es.h:215
@ MULTIVIEW_STEREO_COL
Definition vlc_es.h:227
@ MULTIVIEW_STEREO_FRAME
Definition vlc_es.h:230
video_color_range_t
Definition vlc_es.h:325
@ COLOR_RANGE_FULL
Definition vlc_es.h:327
@ COLOR_RANGE_LIMITED
Definition vlc_es.h:328
@ COLOR_RANGE_UNDEF
Definition vlc_es.h:326
void video_format_LogDifferences(struct vlc_logger *log, const char *name_a, const video_format_t *a, const char *name_b, const video_format_t *b)
Log differences between 2 video format.
Definition es_format.c:242
video_color_primaries_t
Video color primaries (a.k.a.
Definition vlc_es.h:253
@ COLOR_PRIMARIES_BT601_625
Definition vlc_es.h:256
@ COLOR_PRIMARIES_BT601_525
Definition vlc_es.h:255
@ COLOR_PRIMARIES_FCC1953
Definition vlc_es.h:260
@ COLOR_PRIMARIES_BT2020
Definition vlc_es.h:258
@ COLOR_PRIMARIES_DCI_P3
Definition vlc_es.h:259
@ COLOR_PRIMARIES_UNDEF
Definition vlc_es.h:254
@ COLOR_PRIMARIES_BT709
Definition vlc_es.h:257
enum es_format_category_e vlc_es_id_GetCat(vlc_es_id_t *id)
Get the ES category.
Definition es_out.c:4718
video_transfer_func_t
Video transfer functions.
Definition vlc_es.h:275
@ TRANSFER_FUNC_BT709
Definition vlc_es.h:281
@ TRANSFER_FUNC_LINEAR
Definition vlc_es.h:277
@ TRANSFER_FUNC_BT470_M
Definition vlc_es.h:280
@ TRANSFER_FUNC_SRGB
Gamma 2.2.
Definition vlc_es.h:278
@ TRANSFER_FUNC_UNDEF
Definition vlc_es.h:276
@ TRANSFER_FUNC_HLG
Definition vlc_es.h:284
@ TRANSFER_FUNC_SMPTE_240
Definition vlc_es.h:283
@ TRANSFER_FUNC_BT470_BG
Definition vlc_es.h:279
@ TRANSFER_FUNC_SMPTE_ST2084
Definition vlc_es.h:282
static void video_format_AdjustColorSpace(video_format_t *p_fmt)
Definition vlc_es.h:420
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:407
void video_format_TransformBy(video_format_t *fmt, video_transform_t transform)
This function applies the transform operation to fmt.
Definition es_format.c:140
#define AOUT_CHANS_5_1
Definition vlc_es.h:122
static const uint16_t vlc_chan_maps[]
Definition vlc_es.h:139
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:36
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:125
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:322
bool video_format_IsSameChroma(const video_format_t *, const video_format_t *)
Checks whether the video formats have the same chroma and mask.
Definition es_format.c:209
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:401
#define VIDEO_PALETTE_COLORS_MAX
video palette data
Definition vlc_es.h:42
bool vlc_es_id_IsStrIdStable(vlc_es_id_t *id)
Return whether the ES track identifier is stable.
Definition es_out.c:4706
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:705
void es_format_LogDifferences(struct vlc_logger *, const char *name_a, const es_format_t *a, const char *name_b, const es_format_t *b)
Log differences between 2 ES format.
Definition es_format.c:471
#define AOUT_CHANS_4_0
Definition vlc_es.h:119
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:124
void vlc_viewpoint_from_orientation(vlc_viewpoint_t *vp, video_orientation_t orient)
Definition viewpoint.c:74
void vlc_es_id_Release(vlc_es_id_t *id)
Decrease the ES track id reference count.
Definition es_out.c:4694
static void video_format_Clean(video_format_t *p_src)
Cleanup and free palette of this video_format_t.
Definition vlc_es.h:461
#define VIDEO_PALETTE_CLUT_COUNT
Definition vlc_es.h:43
static void video_format_CopyCropAr(video_format_t *dst, const video_format_t *src)
Definition vlc_es.h:480
static int vlc_RGBChromaToMask(vlc_fourcc_t fcc, uint32_t *rmask, uint32_t *gmask, uint32_t *bmask, uint32_t *amask)
Get the native endianness mask for a RGB fourcc.
Definition vlc_es.h:784
#define AOUT_CHANS_2_0
Definition vlc_es.h:115
video_transform_t
Definition vlc_es.h:201
@ TRANSFORM_HFLIP
Definition vlc_es.h:203
@ TRANSFORM_R180
Definition vlc_es.h:205
@ TRANSFORM_TRANSPOSE
Definition vlc_es.h:208
@ TRANSFORM_ANTI_TRANSPOSE
Definition vlc_es.h:209
@ TRANSFORM_R90
Definition vlc_es.h:207
@ TRANSFORM_VFLIP
Definition vlc_es.h:204
@ TRANSFORM_IDENTITY
Definition vlc_es.h:202
@ TRANSFORM_R270
Definition vlc_es.h:206
int vlc_es_id_GetInputId(vlc_es_id_t *id)
Get the ES track input id.
Definition es_out.c:4700
#define AOUT_CHAN_CENTER
Definition vlc_es.h:99
#define VLC_CODEC_RGBA
Definition vlc_fourcc.h:408
#define VLC_CODEC_XBGR
Definition vlc_fourcc.h:350
#define VLC_CODEC_ABGR
Definition vlc_fourcc.h:414
#define VLC_CODEC_BGRA
Definition vlc_fourcc.h:412
#define VLC_CODEC_ARGB
Definition vlc_fourcc.h:410
#define VLC_CODEC_RGBX
Definition vlc_fourcc.h:346
static bool vlc_fourcc_IsYUV(vlc_fourcc_t fcc)
It returns true if the given fourcc is YUV and false otherwise.
Definition vlc_fourcc.h:865
#define VLC_CODEC_XRGB
Definition vlc_fourcc.h:344
#define VLC_CODEC_BGRX
Definition vlc_fourcc.h:348
Video and audio viewpoint struct and helpers.
static void vlc_viewpoint_init(vlc_viewpoint_t *p_vp)
Definition vlc_viewpoint.h:48