ffmpeg: targetos must now be in lower case.
[vlc.git] / modules / demux / ps.h
blob0b2fd4beca297234c15f4e88be28d7c9240345bb
1 /*****************************************************************************
2 * ps.h: Program Stream demuxer helper
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #include <vlc_demux.h>
26 /* 256-0xC0 for normal stream, 256 for 0xbd stream, 256 for 0xfd stream */
27 #define PS_TK_COUNT (768 - 0xc0)
28 #define PS_ID_TO_TK( id ) ((id) <= 0xff ? (id) - 0xc0 : \
29 ((id)&0xff) + (((id)&0xff00) == 0xbd00 ? 256-0xC0 : 512-0xc0) )
31 typedef struct ps_psm_t ps_psm_t;
32 static inline int ps_id_to_type( const ps_psm_t *, int );
33 static inline const uint8_t *ps_id_to_lang( const ps_psm_t *, int );
35 typedef struct
37 vlc_bool_t b_seen;
38 int i_skip;
39 int i_id;
40 es_out_id_t *es;
41 es_format_t fmt;
42 mtime_t i_first_pts;
43 mtime_t i_last_pts;
45 } ps_track_t;
47 /* Init a set of track */
48 static inline void ps_track_init( ps_track_t tk[PS_TK_COUNT] )
50 int i;
51 for( i = 0; i < PS_TK_COUNT; i++ )
53 tk[i].b_seen = VLC_FALSE;
54 tk[i].i_skip = 0;
55 tk[i].i_id = 0;
56 tk[i].es = NULL;
57 tk[i].i_first_pts = -1;
58 tk[i].i_last_pts = -1;
59 es_format_Init( &tk[i].fmt, UNKNOWN_ES, 0 );
63 /* From id fill i_skip and es_format_t */
64 static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
66 tk->i_skip = 0;
67 tk->i_id = i_id;
68 if( ( i_id&0xff00 ) == 0xbd00 )
70 if( ( i_id&0xf8 ) == 0x88 || (i_id&0xf8) == 0x98 )
72 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('d','t','s',' ') );
73 tk->i_skip = 4;
75 else if( ( i_id&0xf0 ) == 0x80
76 || (i_id&0xf0) == 0xc0 ) /* AC-3, Can also be used for DD+/E-AC-3 */
78 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('a','5','2',' ') );
79 tk->i_skip = 4;
81 else if( (i_id&0xf0) == 0xb0 )
83 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','l','p',' ') );
84 /* FIXME / untested ... no known decoder (at least not in VLC/ffmpeg) */
86 else if( ( i_id&0xe0 ) == 0x20 )
88 es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('s','p','u',' ') );
89 tk->i_skip = 1;
91 else if( ( i_id&0xf0 ) == 0xa0 )
93 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('l','p','c','m') );
94 tk->i_skip = 1;
96 else if( ( i_id&0xff ) == 0x70 )
98 es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('o','g','t',' ') );
100 else if( ( i_id&0xfc ) == 0x00 )
102 es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('c','v','d',' ') );
104 else
106 es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
107 return VLC_EGENERIC;
110 else if( (i_id&0xff00) == 0xfd00 )
112 uint8_t i_sub_id = i_id & 0xff;
113 if( i_sub_id >= 0x55 && i_sub_id <= 0x5f )
115 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('W','V','C','1') );
117 else
119 es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
120 return VLC_EGENERIC;
123 else
125 int i_type = ps_id_to_type( p_psm , i_id );
127 es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
129 if( (i_id&0xf0) == 0xe0 && i_type == 0x1b )
131 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('h','2','6','4') );
133 else if( (i_id&0xf0) == 0xe0 && i_type == 0x10 )
135 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('m','p','4','v') );
137 else if( (i_id&0xf0) == 0xe0 && i_type == 0x02 )
139 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
141 else if( ( i_id&0xe0 ) == 0xc0 && i_type == 0x0f )
143 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','4','a') );
145 else if( ( i_id&0xe0 ) == 0xc0 && i_type == 0x03 )
147 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','g','a') );
150 if( tk->fmt.i_cat == UNKNOWN_ES && ( i_id&0xf0 ) == 0xe0 )
152 es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
154 else if( tk->fmt.i_cat == UNKNOWN_ES && ( i_id&0xe0 ) == 0xc0 )
156 es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','g','a') );
158 else if( tk->fmt.i_cat == UNKNOWN_ES ) return VLC_EGENERIC;
161 /* PES packets usually contain truncated frames */
162 tk->fmt.b_packetized = VLC_FALSE;
164 if( ps_id_to_lang( p_psm , i_id ) )
166 tk->fmt.psz_language = malloc( 4 );
167 memcpy( tk->fmt.psz_language, ps_id_to_lang( p_psm , i_id ), 3 );
168 tk->fmt.psz_language[3] = 0;
171 return VLC_SUCCESS;
174 /* return the id of a PES (should be valid) */
175 static inline int ps_pkt_id( block_t *p_pkt )
177 if( p_pkt->p_buffer[3] == 0xbd &&
178 p_pkt->i_buffer >= 9 &&
179 p_pkt->i_buffer >= 9 + p_pkt->p_buffer[8] )
181 /* VOB extension */
182 return 0xbd00 | p_pkt->p_buffer[9+p_pkt->p_buffer[8]];
184 else if( p_pkt->p_buffer[3] == 0xfd &&
185 p_pkt->i_buffer >= 9 &&
186 (p_pkt->p_buffer[6]&0xC0) == 0x80 && /* mpeg2 */
187 (p_pkt->p_buffer[7]&0x01) == 0x01 ) /* extension_flag */
189 /* ISO 13818 amendment 2 and SMPTE RP 227 */
190 const uint8_t i_flags = p_pkt->p_buffer[7];
191 int i_skip = 9;
194 /* Find PES extension */
195 if( (i_flags & 0x80 ) )
197 i_skip += 5; /* pts */
198 if( (i_flags & 0x40) )
199 i_skip += 5; /* dts */
201 if( (i_flags & 0x20 ) )
202 i_skip += 6;
203 if( (i_flags & 0x10 ) )
204 i_skip += 3;
205 if( (i_flags & 0x08 ) )
206 i_skip += 1;
207 if( (i_flags & 0x04 ) )
208 i_skip += 1;
209 if( (i_flags & 0x02 ) )
210 i_skip += 2;
212 if( i_skip < p_pkt->i_buffer && (p_pkt->p_buffer[i_skip]&0x01) )
214 const uint8_t i_flags2 = p_pkt->p_buffer[i_skip];
216 /* Find PES extension 2 */
217 i_skip += 1;
218 if( i_flags2 & 0x80 )
219 i_skip += 16;
220 if( (i_flags2 & 0x40) && i_skip < p_pkt->i_buffer )
221 i_skip += 1 + p_pkt->p_buffer[i_skip];
222 if( i_flags2 & 0x20 )
223 i_skip += 2;
224 if( i_flags2 & 0x10 )
225 i_skip += 2;
227 if( i_skip + 1 < p_pkt->i_buffer )
229 const int i_extension_field_length = p_pkt->p_buffer[i_skip]&0x7f;
230 if( i_extension_field_length >=1 )
232 int i_stream_id_extension_flag = (p_pkt->p_buffer[i_skip+1] >> 7)&0x1;
233 if( i_stream_id_extension_flag == 0 )
234 return 0xfd00 | (p_pkt->p_buffer[i_skip+1]&0x7f);
239 return p_pkt->p_buffer[3];
242 /* return the size of the next packet
243 * XXX you need to give him at least 14 bytes (and it need to start as a
244 * valid packet) */
245 static inline int ps_pkt_size( uint8_t *p, int i_peek )
247 if( p[3] == 0xb9 && i_peek >= 4 )
249 return 4;
251 else if( p[3] == 0xba )
253 if( (p[4] >> 6) == 0x01 && i_peek >= 14 )
255 return 14 + (p[13]&0x07);
257 else if( (p[4] >> 4) == 0x02 && i_peek >= 12 )
259 return 12;
261 return -1;
263 else if( i_peek >= 6 )
265 return 6 + ((p[4]<<8) | p[5] );
267 return -1;
270 /* parse a PACK PES */
271 static inline int ps_pkt_parse_pack( block_t *p_pkt, int64_t *pi_scr,
272 int *pi_mux_rate )
274 uint8_t *p = p_pkt->p_buffer;
275 if( p_pkt->i_buffer >= 14 && (p[4] >> 6) == 0x01 )
277 *pi_scr =((((int64_t)p[4]&0x38) << 27 )|
278 (((int64_t)p[4]&0x03) << 28 )|
279 ((int64_t)p[5] << 20 )|
280 (((int64_t)p[6]&0xf8) << 12 )|
281 (((int64_t)p[6]&0x03) << 13 )|
282 ((int64_t)p[7] << 5 )|
283 ((int64_t)p[8] >> 3 )) * 100 / 9;
285 *pi_mux_rate = ( p[10] << 14 )|( p[11] << 6 )|( p[12] >> 2);
287 else if( p_pkt->i_buffer >= 12 && (p[4] >> 4) == 0x02 )
289 *pi_scr =((((int64_t)p[4]&0x0e) << 29 )|
290 ((int64_t)p[5] << 22 )|
291 (((int64_t)p[6]&0xfe) << 14 )|
292 ((int64_t)p[7] << 7 )|
293 ((int64_t)p[8] >> 1 )) * 100 / 9;
295 *pi_mux_rate = ( ( p[9]&0x7f )<< 15 )|( p[10] << 7 )|( p[11] >> 1);
297 else
299 return VLC_EGENERIC;
301 return VLC_SUCCESS;
304 /* Parse a SYSTEM PES */
305 static inline int ps_pkt_parse_system( block_t *p_pkt, ps_psm_t *p_psm,
306 ps_track_t tk[PS_TK_COUNT] )
308 uint8_t *p = &p_pkt->p_buffer[6 + 3 + 1 + 1 + 1];
310 /* System header is not useable if it references private streams (0xBD)
311 * or 'all audio streams' (0xB8) or 'all video streams' (0xB9) */
312 while( p < &p_pkt->p_buffer[p_pkt->i_buffer] )
314 int i_id = p[0];
316 /* fprintf( stderr, " SYSTEM_START_CODEEE: id=0x%x\n", p[0] ); */
317 if( p[0] >= 0xBC || p[0] == 0xB8 || p[0] == 0xB9 ) p += 2;
318 p++;
320 if( i_id >= 0xc0 )
322 int i_tk = PS_ID_TO_TK( i_id );
324 if( !tk[i_tk].b_seen )
326 if( !ps_track_fill( &tk[i_tk], p_psm, i_id ) )
328 tk[i_tk].b_seen = VLC_TRUE;
333 return VLC_SUCCESS;
336 /* Parse a PES (and skip i_skip_extra in the payload) */
337 static inline int ps_pkt_parse_pes( block_t *p_pes, int i_skip_extra )
339 uint8_t header[30];
340 int i_skip = 0;
342 memcpy( header, p_pes->p_buffer, __MIN( p_pes->i_buffer, 30 ) );
344 switch( header[3] )
346 case 0xBC: /* Program stream map */
347 case 0xBE: /* Padding */
348 case 0xBF: /* Private stream 2 */
349 case 0xB0: /* ECM */
350 case 0xB1: /* EMM */
351 case 0xFF: /* Program stream directory */
352 case 0xF2: /* DSMCC stream */
353 case 0xF8: /* ITU-T H.222.1 type E stream */
354 i_skip = 6;
355 break;
357 default:
358 if( ( header[6]&0xC0 ) == 0x80 )
360 /* mpeg2 PES */
361 i_skip = header[8] + 9;
363 if( header[7]&0x80 ) /* has pts */
365 p_pes->i_pts = ((mtime_t)(header[ 9]&0x0e ) << 29)|
366 (mtime_t)(header[10] << 22)|
367 ((mtime_t)(header[11]&0xfe) << 14)|
368 (mtime_t)(header[12] << 7)|
369 (mtime_t)(header[13] >> 1);
371 if( header[7]&0x40 ) /* has dts */
373 p_pes->i_dts = ((mtime_t)(header[14]&0x0e ) << 29)|
374 (mtime_t)(header[15] << 22)|
375 ((mtime_t)(header[16]&0xfe) << 14)|
376 (mtime_t)(header[17] << 7)|
377 (mtime_t)(header[18] >> 1);
381 else
383 i_skip = 6;
384 while( i_skip < 23 && header[i_skip] == 0xff )
386 i_skip++;
388 if( i_skip == 23 )
390 /* msg_Err( p_demux, "too much MPEG-1 stuffing" ); */
391 return VLC_EGENERIC;
393 if( ( header[i_skip] & 0xC0 ) == 0x40 )
395 i_skip += 2;
398 if( header[i_skip]&0x20 )
400 p_pes->i_pts = ((mtime_t)(header[i_skip]&0x0e ) << 29)|
401 (mtime_t)(header[i_skip+1] << 22)|
402 ((mtime_t)(header[i_skip+2]&0xfe) << 14)|
403 (mtime_t)(header[i_skip+3] << 7)|
404 (mtime_t)(header[i_skip+4] >> 1);
406 if( header[i_skip]&0x10 ) /* has dts */
408 p_pes->i_dts = ((mtime_t)(header[i_skip+5]&0x0e ) << 29)|
409 (mtime_t)(header[i_skip+6] << 22)|
410 ((mtime_t)(header[i_skip+7]&0xfe) << 14)|
411 (mtime_t)(header[i_skip+8] << 7)|
412 (mtime_t)(header[i_skip+9] >> 1);
413 i_skip += 10;
415 else
417 i_skip += 5;
420 else
422 i_skip += 1;
427 i_skip += i_skip_extra;
429 if( p_pes->i_buffer <= i_skip )
431 return VLC_EGENERIC;
434 p_pes->p_buffer += i_skip;
435 p_pes->i_buffer -= i_skip;
437 p_pes->i_dts = 100 * p_pes->i_dts / 9;
438 p_pes->i_pts = 100 * p_pes->i_pts / 9;
440 return VLC_SUCCESS;
443 /* Program stream map handling */
444 typedef struct ps_es_t
446 int i_type;
447 int i_id;
449 int i_descriptor;
450 uint8_t *p_descriptor;
452 /* Language is iso639-2T */
453 uint8_t lang[3];
455 } ps_es_t;
457 struct ps_psm_t
459 int i_version;
461 int i_es;
462 ps_es_t **es;
465 static inline int ps_id_to_type( const ps_psm_t *p_psm, int i_id )
467 int i;
468 for( i = 0; p_psm && i < p_psm->i_es; i++ )
470 if( p_psm->es[i]->i_id == i_id ) return p_psm->es[i]->i_type;
472 return 0;
475 static inline const uint8_t *ps_id_to_lang( const ps_psm_t *p_psm, int i_id )
477 int i;
478 for( i = 0; p_psm && i < p_psm->i_es; i++ )
480 if( p_psm->es[i]->i_id == i_id ) return p_psm->es[i]->lang;
482 return 0;
485 static inline void ps_psm_init( ps_psm_t *p_psm )
487 p_psm->i_version = 0xFFFF;
488 p_psm->i_es = 0;
489 p_psm->es = 0;
492 static inline void ps_psm_destroy( ps_psm_t *p_psm )
494 while( p_psm->i_es-- )
496 if( p_psm->es[p_psm->i_es]->i_descriptor )
497 free( p_psm->es[p_psm->i_es]->p_descriptor );
498 free( p_psm->es[p_psm->i_es] );
500 if( p_psm->es ) free( p_psm->es );
502 p_psm->es = 0;
503 p_psm->i_es = 0;
506 static inline int ps_psm_fill( ps_psm_t *p_psm, block_t *p_pkt,
507 ps_track_t tk[PS_TK_COUNT], es_out_t *out )
509 int i_buffer = p_pkt->i_buffer;
510 uint8_t *p_buffer = p_pkt->p_buffer;
511 int i_length, i_version, i_info_length, i_esm_length, i_es_base, i;
513 if( !p_psm || p_buffer[3] != 0xbc ) return VLC_EGENERIC;
515 i_length = (uint16_t)(p_buffer[4] << 8) + p_buffer[5] + 6;
516 if( i_length > i_buffer ) return VLC_EGENERIC;
518 //i_current_next_indicator = (p_buffer[6] && 0x01);
519 i_version = (p_buffer[6] && 0xf8);
521 if( p_psm->i_version == i_version ) return VLC_EGENERIC;
523 ps_psm_destroy( p_psm );
525 i_info_length = (uint16_t)(p_buffer[8] << 8) + p_buffer[9];
526 if( i_info_length + 10 > i_length ) return VLC_EGENERIC;
528 /* Elementary stream map */
529 i_esm_length = (uint16_t)(p_buffer[ 10 + i_info_length ] << 8) +
530 p_buffer[ 11 + i_info_length];
531 i_es_base = 12 + i_info_length;
533 while( i_es_base + 4 < i_length )
535 ps_es_t es;
536 es.lang[0] = es.lang[1] = es.lang[2] = 0;
538 es.i_type = p_buffer[ i_es_base ];
539 es.i_id = p_buffer[ i_es_base + 1 ];
540 i_info_length = (uint16_t)(p_buffer[ i_es_base + 2 ] << 8) +
541 p_buffer[ i_es_base + 3 ];
543 if( i_es_base + 4 + i_info_length > i_length ) break;
545 /* TODO Add support for VC-1 stream:
546 * stream_type=0xea, stream_id=0xfd AND registration
547 * descriptor 0x5 with format_identifier == 0x56432D31 (VC-1)
548 * (I need a sample that use PSM with VC-1) */
550 es.p_descriptor = 0;
551 es.i_descriptor = i_info_length;
552 if( i_info_length > 0 )
554 int i = 0;
556 es.p_descriptor = malloc( i_info_length );
557 memcpy( es.p_descriptor, p_buffer + i_es_base + 4, i_info_length);
559 while( i <= es.i_descriptor - 2 )
561 /* Look for the ISO639 language descriptor */
562 if( es.p_descriptor[i] != 0x0a )
564 i += es.p_descriptor[i+1] + 2;
565 continue;
568 if( i <= es.i_descriptor - 6 )
570 es.lang[0] = es.p_descriptor[i+2];
571 es.lang[1] = es.p_descriptor[i+3];
572 es.lang[2] = es.p_descriptor[i+4];
574 break;
578 p_psm->es = realloc( p_psm->es, sizeof(ps_es_t *) * (p_psm->i_es+1) );
579 p_psm->es[p_psm->i_es] = malloc( sizeof(ps_es_t) );
580 *p_psm->es[p_psm->i_es++] = es;
581 i_es_base += 4 + i_info_length;
584 /* TODO: CRC */
586 p_psm->i_version = i_version;
588 /* Check/Modify our existing tracks */
589 for( i = 0; i < PS_TK_COUNT; i++ )
591 ps_track_t tk_tmp;
593 if( !tk[i].b_seen || !tk[i].es ) continue;
595 if( ps_track_fill( &tk_tmp, p_psm, tk[i].i_id ) != VLC_SUCCESS )
596 continue;
598 if( tk_tmp.fmt.i_codec == tk[i].fmt.i_codec ) continue;
600 es_out_Del( out, tk[i].es );
601 tk[i] = tk_tmp;
602 tk[i].b_seen = VLC_TRUE;
603 tk[i].es = es_out_Add( out, &tk[i].fmt );
606 return VLC_SUCCESS;