]> git.sesse.net Git - vlc/blob - include/vlc_es.h
* modules/stream_out/transcode.c:
[vlc] / include / vlc_es.h
1 /*****************************************************************************
2  * vlc_es.h: Elementary stream formats descriptions
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_ES_H
25 #define _VLC_ES_H 1
26
27 /**
28  * \file
29  * This file defines the elementary streams format types
30  */
31
32 /**
33  * video palette data
34  * \see video_format_t
35  * \see subs_format_t
36  */
37 struct video_palette_t
38 {
39     int i_entries;      /**< to keep the compatibility with ffmpeg's palette */
40     uint8_t palette[256][4];                   /**< 4-byte RGBA/YUVA palette */
41 };
42
43 /**
44  * audio format description
45  */
46 struct audio_format_t
47 {
48     vlc_fourcc_t i_format;                          /**< audio format fourcc */
49     unsigned int i_rate;                              /**< audio sample-rate */
50
51     /* Describes the channels configuration of the samples (ie. number of
52      * channels which are available in the buffer, and positions). */
53     uint32_t     i_physical_channels;
54
55     /* Describes from which original channels, before downmixing, the
56      * buffer is derived. */
57     uint32_t     i_original_channels;
58
59     /* Optional - for A/52, SPDIF and DTS types : */
60     /* Bytes used by one compressed frame, depends on bitrate. */
61     unsigned int i_bytes_per_frame;
62
63     /* Number of sampleframes contained in one compressed frame. */
64     unsigned int        i_frame_length;
65     /* Please note that it may be completely arbitrary - buffers are not
66      * obliged to contain a integral number of so-called "frames". It's
67      * just here for the division :
68      * buffer_size = i_nb_samples * i_bytes_per_frame / i_frame_length
69      */
70
71     /* FIXME ? (used by the codecs) */
72     int i_channels;
73     int i_blockalign;
74     int i_bitspersample;
75 };
76
77 #ifdef WORDS_BIGENDIAN
78 #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','b')
79 #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','b')
80 #else
81 #   define AUDIO_FMT_S16_NE VLC_FOURCC('s','1','6','l')
82 #   define AUDIO_FMT_U16_NE VLC_FOURCC('u','1','6','l')
83 #endif
84
85 /**
86  * video format description
87  */
88 struct video_format_t
89 {
90     vlc_fourcc_t i_chroma;                               /**< picture chroma */
91     unsigned int i_aspect;                                 /**< aspect ratio */
92
93     unsigned int i_width;                                 /**< picture width */
94     unsigned int i_height;                               /**< picture height */
95     unsigned int i_x_offset;               /**< start offset of visible area */
96     unsigned int i_y_offset;               /**< start offset of visible area */
97     unsigned int i_visible_width;                 /**< width of visible area */
98     unsigned int i_visible_height;               /**< height of visible area */
99
100     unsigned int i_bits_per_pixel;             /**< number of bits per pixel */
101
102     unsigned int i_frame_rate;                     /**< frame rate numerator */
103     unsigned int i_frame_rate_base;              /**< frame rate denominator */
104
105     int i_rmask, i_rgmask, i_bmask;          /**< color masks for RGB chroma */
106     video_palette_t *p_palette;              /**< video palette from demuxer */
107 };
108
109 /**
110  * subtitles format description
111  */
112 struct subs_format_t
113 {
114     char *psz_encoding;
115
116     struct
117     {
118         /* FIXME */
119         uint32_t palette[16+1];
120     } spu;
121
122     struct
123     {
124         int i_id;
125     } dvb;
126 };
127
128 /**
129  * ES definition
130  */
131 struct es_format_t
132 {
133     int             i_cat;
134     vlc_fourcc_t    i_codec;
135
136     int             i_id;       /* -1: let the core mark the right id
137                                    >=0: valid id */
138     int             i_group;    /* -1 : standalone
139                                    >= 0 then a "group" (program) is created
140                                         for each value */
141     int             i_priority; /*  -2 : mean not selectable by the users
142                                     -1 : mean not selected by default even
143                                         when no other stream
144                                     >=0: priority */
145     char            *psz_language;
146     char            *psz_description;
147
148     audio_format_t audio;
149     video_format_t video;
150     subs_format_t  subs;
151
152     int            i_bitrate;
153
154     vlc_bool_t     b_packetized; /* wether the data is packetized
155                                     (ie. not truncated) */
156     int     i_extra;
157     void    *p_extra;
158
159 };
160
161 /* ES Categories */
162 #define UNKNOWN_ES      0x00
163 #define VIDEO_ES        0x01
164 #define AUDIO_ES        0x02
165 #define SPU_ES          0x03
166 #define NAV_ES          0x04
167
168 static inline void es_format_Init( es_format_t *fmt,
169                                    int i_cat, vlc_fourcc_t i_codec )
170 {
171     fmt->i_cat                  = i_cat;
172     fmt->i_codec                = i_codec;
173     fmt->i_id                   = -1;
174     fmt->i_group                = 0;
175     fmt->i_priority             = 0;
176     fmt->psz_language           = NULL;
177     fmt->psz_description        = NULL;
178
179     memset( &fmt->audio, 0, sizeof(audio_format_t) );
180     memset( &fmt->video, 0, sizeof(video_format_t) );
181     memset( &fmt->subs, 0, sizeof(subs_format_t) );
182
183     fmt->b_packetized           = VLC_TRUE;
184     fmt->i_bitrate              = 0;
185     fmt->i_extra                = 0;
186     fmt->p_extra                = NULL;
187 }
188
189 static inline void es_format_Copy( es_format_t *dst, es_format_t *src )
190 {
191     memcpy( dst, src, sizeof( es_format_t ) );
192     if( src->psz_language )
193          dst->psz_language = strdup( src->psz_language );
194     if( src->psz_description )
195         dst->psz_description = strdup( src->psz_description );
196     if( src->i_extra > 0 )
197     {
198         dst->i_extra = src->i_extra;
199         dst->p_extra = malloc( src->i_extra );
200         memcpy( dst->p_extra, src->p_extra, src->i_extra );
201     }
202     else
203     {
204         dst->i_extra = 0;
205         dst->p_extra = NULL;
206     }
207
208     if( src->subs.psz_encoding )
209         dst->subs.psz_encoding = strdup( src->subs.psz_encoding );
210
211     if( src->video.p_palette )
212     {
213         dst->video.p_palette =
214             (video_palette_t*)malloc( sizeof( video_palette_t ) );
215         memcpy( dst->video.p_palette, src->video.p_palette,
216                 sizeof( video_palette_t ) );
217     }
218 }
219
220 static inline void es_format_Clean( es_format_t *fmt )
221 {
222     if( fmt->psz_language ) free( fmt->psz_language );
223     fmt->psz_language = NULL;
224
225     if( fmt->psz_description ) free( fmt->psz_description );
226     fmt->psz_description = NULL;
227
228     if( fmt->i_extra > 0 ) free( fmt->p_extra );
229     fmt->i_extra = 0; fmt->p_extra = NULL;
230
231     if( fmt->video.p_palette ) free( fmt->video.p_palette );
232     fmt->video.p_palette = NULL;
233
234     if( fmt->subs.psz_encoding ) free( fmt->subs.psz_encoding );
235     fmt->subs.psz_encoding = NULL;
236 }
237
238 #endif