]> git.sesse.net Git - vlc/blob - src/input/mpeg_system.c
* Fixed an alignment problem in PTS parsing.
[vlc] / src / input / mpeg_system.c
1 /*****************************************************************************
2  * mpeg_system.c: TS, PS and PES management
3  *****************************************************************************
4  * Copyright (C) 1998, 1999, 2000 VideoLAN
5  * $Id: mpeg_system.c,v 1.42 2001/03/06 17:54:48 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Michel Lespinasse <walken@via.ecp.fr>
9  *          BenoĆ®t Steiner <benny@via.ecp.fr>
10  *          Samuel Hocevar <sam@via.ecp.fr>
11  *          Henri Fallon <henri@via.ecp.fr>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #include "defs.h"
32
33 #include <stdlib.h>
34
35 #include "config.h"
36 #include "common.h"
37 #include "threads.h"
38 #include "mtime.h"
39
40 #include "intf_msg.h"
41
42 #include "stream_control.h"
43 #include "input_ext-intf.h"
44 #include "input_ext-dec.h"
45
46 #include "input.h"
47 #include "mpeg_system.h"
48
49 #include "main.h"                           /* AC3/MPEG channel, SPU channel */
50
51 /*****************************************************************************
52  * Local prototypes
53  *****************************************************************************/
54
55 static void input_DecodePAT( input_thread_t *, es_descriptor_t *);
56 static void input_DecodePMT( input_thread_t *, es_descriptor_t *);
57
58 /*
59  * PES Packet management
60  */
61
62 /*****************************************************************************
63  * MoveChunk
64  *****************************************************************************
65  * Small utility function used to parse discontinuous headers safely. Copies
66  * i_buf_len bytes of data to a buffer and returns the size copied.
67  * It also solves some alignment problems on non-IA-32, non-PPC processors.
68  * This is a variation on the theme of input_ext-dec.h:GetChunk().
69  *****************************************************************************/
70 static __inline__ size_t MoveChunk( byte_t * p_dest,
71                                     data_packet_t ** pp_data_src,
72                                     byte_t ** pp_src,
73                                     size_t i_buf_len )
74 {
75     ptrdiff_t           i_available;
76
77     if( (i_available = (*pp_data_src)->p_payload_end - *pp_src)
78             >= i_buf_len )
79     {
80         if( p_dest != NULL )
81             memcpy( p_dest, *pp_src, i_buf_len );
82         *pp_src += i_buf_len;
83         return( i_buf_len );
84     }
85     else
86     {
87         size_t          i_init_len = i_buf_len;
88
89         do
90         {
91             if( p_dest != NULL )
92                 memcpy( p_dest, *pp_src, i_available );
93             *pp_data_src = (*pp_data_src)->p_next;
94             i_buf_len -= i_available;
95             p_dest += i_available;
96             if( *pp_data_src == NULL )
97             {
98                 *pp_src = NULL;
99                 return( i_init_len - i_buf_len );
100             }
101             *pp_src = (*pp_data_src)->p_payload_start;
102         }
103         while( (i_available = (*pp_data_src)->p_payload_end - *pp_src)
104                 <= i_buf_len );
105
106         if( i_buf_len )
107         {
108             if( p_dest != NULL )
109                 memcpy( p_dest, *pp_src, i_buf_len );
110             *pp_src += i_buf_len;
111         }
112         return( i_init_len );
113     }
114 }
115
116 /*****************************************************************************
117  * input_ParsePES
118  *****************************************************************************
119  * Parse a finished PES packet and analyze its header.
120  *****************************************************************************/
121 #define PES_HEADER_SIZE     7
122 void input_ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
123 {
124     data_packet_t * p_data;
125     byte_t *        p_byte;
126     byte_t          p_header[PES_HEADER_SIZE];
127     int             i_done;
128
129 #define p_pes (p_es->p_pes)
130
131     //intf_DbgMsg("End of PES packet %p", p_pes);
132
133     /* Parse the header. The header has a variable length, but in order
134      * to improve the algorithm, we will read the 14 bytes we may be
135      * interested in */
136     p_data = p_pes->p_first;
137     p_byte = p_data->p_payload_start;
138     i_done = 0;
139
140     if( MoveChunk( p_header, &p_data, &p_byte, PES_HEADER_SIZE )
141             != PES_HEADER_SIZE )
142     {
143         intf_WarnMsg( 3, "PES packet too short to have a header" );
144         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
145         p_pes = NULL;
146         return;
147     }
148
149     /* Get the PES size if defined */
150     p_es->i_pes_real_size = U16_AT(p_header + 4) + 6;
151
152     /* First read the 6 header bytes common to all PES packets:
153      * use them to test the PES validity */
154     if( (p_header[0] || p_header[1] || (p_header[2] != 1)) )
155     {
156         /* packet_start_code_prefix != 0x000001 */
157         intf_ErrMsg( "PES packet doesn't start with 0x000001 : data loss" );
158         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
159         p_pes = NULL;
160     }
161     else
162     {
163         int i_pes_header_size, i_payload_size;
164
165         if ( p_es->i_pes_real_size &&
166              (p_es->i_pes_real_size != p_pes->i_pes_size) )
167         {
168             /* PES_packet_length is set and != total received payload */
169             /* Warn the decoder that the data may be corrupt. */
170             intf_WarnMsg( 3, "PES sizes do not match : packet corrupted" );
171         }
172
173         switch( p_es->i_stream_id )
174         {
175         case 0xBC:  /* Program stream map */
176         case 0xBE:  /* Padding */
177         case 0xBF:  /* Private stream 2 */
178         case 0xB0:  /* ECM */
179         case 0xB1:  /* EMM */
180         case 0xFF:  /* Program stream directory */
181         case 0xF2:  /* DSMCC stream */
182         case 0xF8:  /* ITU-T H.222.1 type E stream */
183             /* The payload begins immediately after the 6 bytes header, so
184              * we have finished with the parsing */
185             i_pes_header_size = 6;
186             break;
187
188         default:
189             if( (p_header[6] & 0xC0) == 0x80 )
190             {
191                 /* MPEG-2 : the PES header contains at least 3 more bytes. */
192                 size_t      i_max_len;
193                 boolean_t   b_has_pts, b_has_dts;
194                 byte_t      p_full_header[12];
195
196                 p_pes->b_data_alignment = p_header[6] & 0x04;
197
198                 i_max_len = MoveChunk( p_full_header, &p_data, &p_byte, 12 );
199                 if( i_max_len < 2 )
200                 {
201                     intf_WarnMsg( 3,
202                             "PES packet too short to have a MPEG-2 header" );
203                     p_input->pf_delete_pes( p_input->p_method_data,
204                                             p_pes );
205                     p_pes = NULL;
206                     return;
207                 }
208
209                 b_has_pts = p_full_header[0] & 0x80;
210                 b_has_dts = p_full_header[0] & 0x40;
211                 i_pes_header_size = p_full_header[1] + 9;
212
213                 /* Now parse the optional header extensions */
214                 if( b_has_pts )
215                 {
216                     if( i_max_len < 7 )
217                     {
218                         intf_WarnMsg( 3,
219                             "PES packet too short to have a MPEG-2 header" );
220                         p_input->pf_delete_pes( p_input->p_method_data,
221                                                 p_pes );
222                         p_pes = NULL;
223                         return;
224                     }
225                     p_pes->i_pts = input_ClockGetTS( p_input, p_es->p_pgrm,
226                     ( ((mtime_t)(p_full_header[2] & 0x0E) << 29) |
227                       ((mtime_t)(p_full_header[3]) << 22) |
228                       ((mtime_t)(p_full_header[4] & 0xFE) << 14) |
229                       ((mtime_t)p_full_header[5] << 7) |
230                       ((mtime_t)p_full_header[6] >> 1) ) );
231
232                     if( b_has_dts )
233                     {
234                         if( i_max_len < 12 )
235                         {
236                             intf_WarnMsg( 3,
237                               "PES packet too short to have a MPEG-2 header" );
238                             p_input->pf_delete_pes( p_input->p_method_data,
239                                                     p_pes );
240                             p_pes = NULL;
241                             return;
242                         }
243                         p_pes->i_dts = input_ClockGetTS( p_input, p_es->p_pgrm,
244                         ( ((mtime_t)(p_full_header[7] & 0x0E) << 29) |
245                           (((mtime_t)U16_AT(p_full_header + 8) << 14)
246                                 - (1 << 14)) |
247                           ((mtime_t)U16_AT(p_full_header + 10) >> 1) ) );
248                     }
249                 }
250             }
251             else
252             {
253                 /* Probably MPEG-1 */
254                 boolean_t       b_has_pts, b_has_dts;
255
256                 i_pes_header_size = 6;
257                 p_data = p_pes->p_first;
258                 p_byte = p_data->p_payload_start;
259                 /* Cannot fail because the previous one succeeded. */
260                 MoveChunk( NULL, &p_data, &p_byte, 6 );
261
262                 while( *p_byte == 0xFF && i_pes_header_size < 23 )
263                 {
264                     i_pes_header_size++;
265                     if( MoveChunk( NULL, &p_data, &p_byte, 1 ) != 1 )
266                     {
267                         intf_WarnMsg( 3,
268                             "PES packet too short to have a MPEG-1 header" );
269                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
270                         p_pes = NULL;
271                         return;
272                     }
273                 }
274                 if( i_pes_header_size == 23 )
275                 {
276                     intf_ErrMsg( "Too much MPEG-1 stuffing" );
277                     p_input->pf_delete_pes( p_input->p_method_data, p_pes );
278                     p_pes = NULL;
279                     return;
280                 }
281
282                 if( (*p_byte & 0xC0) == 0x40 )
283                 {
284                     /* Don't ask why... --Meuuh */
285                     /* Erm... why ? --Sam */
286                     /* Well... According to the recommendation, it is for
287                      * STD_buffer_scale and STD_buffer_size. --Meuuh */
288                     i_pes_header_size += 2;
289                     if( MoveChunk( NULL, &p_data, &p_byte, 2 ) != 2 )
290                     {
291                         intf_WarnMsg( 3,
292                             "PES packet too short to have a MPEG-1 header" );
293                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
294                         p_pes = NULL;
295                         return;
296                     }
297                 }
298
299                 i_pes_header_size++;
300
301                 b_has_pts = *p_byte & 0x20;
302                 b_has_dts = *p_byte & 0x10;
303
304                 if( b_has_pts )
305                 {
306                     byte_t      p_ts[5];
307
308                     i_pes_header_size += 4;
309                     if( MoveChunk( p_ts, &p_data, &p_byte, 5 ) != 5 )
310                     {
311                         intf_WarnMsg( 3,
312                             "PES packet too short to have a MPEG-1 header" );
313                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
314                         p_pes = NULL;
315                         return;
316                     }
317
318                     p_pes->i_pts = input_ClockGetTS( p_input, p_es->p_pgrm,
319                        ( ((mtime_t)(p_ts[0] & 0x0E) << 29) |
320                          (((mtime_t)U32_AT(p_ts) & 0xFFFE00) << 6) |
321                          ((mtime_t)p_ts[3] << 7) |
322                          ((mtime_t)p_ts[4] >> 1) ) );
323
324                     if( b_has_dts )
325                     {
326                         i_pes_header_size += 5;
327                         if( MoveChunk( p_ts, &p_data, &p_byte, 5 ) != 5 )
328                         {
329                             intf_WarnMsg( 3,
330                               "PES packet too short to have a MPEG-1 header" );
331                             p_input->pf_delete_pes( p_input->p_method_data,
332                                                     p_pes );
333                             p_pes = NULL;
334                             return;
335                         }
336
337                         p_pes->i_dts = input_ClockGetTS( p_input,
338                                                          p_es->p_pgrm,
339                             ( ((mtime_t)(p_ts[0] & 0x0E) << 29) |
340                               (((mtime_t)U32_AT(p_ts) & 0xFFFE00) << 6) |
341                               ((mtime_t)p_ts[3] << 7) |
342                               ((mtime_t)p_ts[4] >> 1) ) );
343                     }
344                 }
345             }
346
347             break;
348         }
349
350         if( p_es->i_stream_id == 0xbd )
351         {
352             /* With private stream 1, the first byte of the payload
353              * is a stream_private_id, so skip it. */
354             i_pes_header_size++;
355         }
356
357         /* Now we've parsed the header, we just have to indicate in some
358          * specific data packets where the PES payload begins (renumber
359          * p_payload_start), so that the decoders can find the beginning
360          * of their data right out of the box. */
361         p_data = p_pes->p_first;
362         i_payload_size = p_data->p_payload_end
363                                  - p_data->p_payload_start;
364         while( i_pes_header_size > i_payload_size )
365         {
366             /* These packets are entirely filled by the PES header. */
367             i_pes_header_size -= i_payload_size;
368             p_data->p_payload_start = p_data->p_payload_end;
369             /* Go to the next data packet. */
370             if( (p_data = p_data->p_next) == NULL )
371             {
372                 intf_ErrMsg( "PES header bigger than payload" );
373                 p_input->pf_delete_pes( p_input->p_method_data, p_pes );
374                 p_pes = NULL;
375                 return;
376             }
377             i_payload_size = p_data->p_payload_end
378                                  - p_data->p_payload_start;
379         }
380         /* This last packet is partly header, partly payload. */
381         if( i_payload_size < i_pes_header_size )
382         {
383             intf_ErrMsg( "PES header bigger than payload" );
384             p_input->pf_delete_pes( p_input->p_method_data, p_pes );
385             p_pes = NULL;
386             return;
387         }
388         p_data->p_payload_start += i_pes_header_size;
389
390         /* Now we can eventually put the PES packet in the decoder's
391          * PES fifo */
392         if( p_es->p_decoder_fifo != NULL )
393         {
394             input_DecodePES( p_es->p_decoder_fifo, p_pes );
395         }
396         else
397         {
398             intf_ErrMsg("No fifo to receive PES %p (who wrote this damn code ?)",
399                         p_pes);
400             p_input->pf_delete_pes( p_input->p_method_data, p_pes );
401         }
402         p_pes = NULL;
403     }
404 #undef p_pes
405
406 }
407
408 /*****************************************************************************
409  * input_GatherPES:
410  *****************************************************************************
411  * Gather a PES packet.
412  *****************************************************************************/
413 void input_GatherPES( input_thread_t * p_input, data_packet_t * p_data,
414                       es_descriptor_t * p_es,
415                       boolean_t b_unit_start, boolean_t b_packet_lost )
416 {
417 #define p_pes (p_es->p_pes)
418
419     //intf_DbgMsg("PES-demultiplexing %p (%p)", p_ts_packet, p_pes);
420
421     /* If we lost data, insert a NULL data packet (philosophy : 0 is quite
422      * often an escape sequence in decoders, so that should make them wait
423      * for the next start code). */
424     if( b_packet_lost )
425     {
426         input_NullPacket( p_input, p_es );
427     }
428
429     if( b_unit_start && p_pes != NULL )
430     {
431         /* If the data packet contains the begining of a new PES packet, and
432          * if we were reassembling a PES packet, then the PES should be
433          * complete now, so parse its header and give it to the decoders. */
434         input_ParsePES( p_input, p_es );
435     }
436
437     if( !b_unit_start && p_pes == NULL )
438     {
439         /* Random access... */
440         p_input->pf_delete_packet( p_input->p_method_data, p_data );
441     }
442     else
443     {
444         if( b_unit_start )
445         {
446             /* If we are at the beginning of a new PES packet, we must fetch
447              * a new PES buffer to begin with the reassembly of this PES
448              * packet. This is also here that we can synchronize with the
449              * stream if we lost packets or if the decoder has just
450              * started. */
451             if( (p_pes = p_input->pf_new_pes( p_input->p_method_data ) ) == NULL )
452             {
453                 intf_ErrMsg("Out of memory");
454                 p_input->b_error = 1;
455                 return;
456             }
457             p_pes->i_rate = p_input->stream.control.i_rate;
458             p_pes->p_first = p_data;
459             
460             /* If the PES header fits in the first data packet, we can
461              * already set p_gather->i_pes_real_size. */
462             if( p_data->p_payload_end - p_data->p_payload_start
463                     >= PES_HEADER_SIZE )
464             {
465                 p_es->i_pes_real_size =
466                                 U16_AT(p_data->p_payload_start + 4) + 6;
467                 
468             }
469             else
470             { 
471                 p_es->i_pes_real_size = 0;
472             } 
473         }
474         else
475         {
476             /* Update the relations between the data packets */
477             p_es->p_last->p_next = p_data;
478         }
479
480         p_es->p_last = p_data;
481
482         /* Size of the payload carried in the data packet */
483         p_pes->i_pes_size += (p_data->p_payload_end
484                                  - p_data->p_payload_start);
485     
486         /* We can check if the packet is finished */
487         if( p_pes->i_pes_size == p_es->i_pes_real_size )
488         {
489             /* The packet is finished, parse it */
490             input_ParsePES( p_input, p_es );
491         }
492     }
493 #undef p_pes
494 }
495
496
497 /*
498  * PS Demultiplexing
499  */
500
501 /*****************************************************************************
502  * GetID: Get the ID of a stream
503  *****************************************************************************/
504 static u16 GetID( data_packet_t * p_data )
505 {
506     u16         i_id;
507
508     i_id = p_data->p_payload_start[3];                                 /* stream_id */
509     if( i_id == 0xBD )
510     {
511         /* FIXME : this is not valid if the header is split in multiple
512          * packets */
513         /* stream_private_id */
514         i_id |= p_data->p_payload_start[ 9 + p_data->p_payload_start[8] ] << 8;
515     }
516     return( i_id );
517 }
518
519 /*****************************************************************************
520  * DecodePSM: Decode the Program Stream Map information
521  *****************************************************************************
522  * FIXME : loads are not aligned in this function
523  *****************************************************************************/
524 static void DecodePSM( input_thread_t * p_input, data_packet_t * p_data )
525 {
526     stream_ps_data_t *  p_demux =
527                  (stream_ps_data_t *)p_input->stream.p_demux_data;
528     byte_t *            p_byte;
529     byte_t *            p_end;
530     int                 i;
531     int                 i_new_es_number = 0;
532
533     if( p_data->p_payload_start + 10 > p_data->p_payload_end )
534     {
535         intf_ErrMsg( "PSM too short : packet corrupt" );
536         return;
537     }
538
539     if( p_demux->b_has_PSM
540         && p_demux->i_PSM_version == (p_data->p_payload_start[6] & 0x1F) )
541     {
542         /* Already got that one. */
543         return;
544     }
545
546     intf_DbgMsg( "Building PSM" );
547     p_demux->b_has_PSM = 1;
548     p_demux->i_PSM_version = p_data->p_payload_start[6] & 0x1F;
549
550     /* Go to elementary_stream_map_length, jumping over
551      * program_stream_info. */
552     p_byte = p_data->p_payload_start + 10
553               + U16_AT(&p_data->p_payload_start[8]);
554     if( p_byte > p_data->p_payload_end )
555     {
556         intf_ErrMsg( "PSM too short : packet corrupt" );
557         return;
558     }
559     /* This is the full size of the elementary_stream_map.
560      * 2 == elementary_stream_map_length
561      * Please note that CRC_32 is not included in the length. */
562     p_end = p_byte + 2 + U16_AT(p_byte);
563     p_byte += 2;
564     if( p_end > p_data->p_payload_end )
565     {
566         intf_ErrMsg( "PSM too short : packet corrupt" );
567         return;
568     }
569
570     vlc_mutex_lock( &p_input->stream.stream_lock );
571
572     /* 4 == minimum useful size of a section */
573     while( p_byte + 4 <= p_end )
574     {
575         es_descriptor_t *   p_es = NULL;
576         u8                  i_stream_id = p_byte[1];
577         /* FIXME: there will be a problem with private streams... (same
578          * stream_id) */
579
580         /* Look for the ES in the ES table */
581         for( i = i_new_es_number;
582              i < p_input->stream.pp_programs[0]->i_es_number;
583              i++ )
584         {
585             if( p_input->stream.pp_programs[0]->pp_es[i]->i_stream_id
586                     == i_stream_id )
587             {
588                 p_es = p_input->stream.pp_programs[0]->pp_es[i];
589                 if( p_es->i_type != p_byte[0] )
590                 {
591                     input_DelES( p_input, p_es );
592                     p_es = NULL;
593                 }
594                 else
595                 {
596                     /* Move the ES to the beginning. */
597                     p_input->stream.pp_programs[0]->pp_es[i]
598                         = p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ];
599                     p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ]
600                         = p_es;
601                     i_new_es_number++;
602                 }
603                 break;
604             }
605         }
606
607         /* The goal is to have all the ES we have just read in the
608          * beginning of the pp_es table, and all the others at the end,
609          * so that we can close them more easily at the end. */
610         if( p_es == NULL )
611         {
612             p_es = input_AddES( p_input, p_input->stream.pp_programs[0],
613                                 i_stream_id, 0 );
614             p_es->i_type = p_byte[0];
615             p_es->b_audio = ( p_es->i_type == MPEG1_AUDIO_ES
616                               || p_es->i_type == MPEG2_AUDIO_ES
617                               || p_es->i_type == AC3_AUDIO_ES
618                               || p_es->i_type == LPCM_AUDIO_ES
619                             );
620
621             /* input_AddES has inserted the new element at the end. */
622             p_input->stream.pp_programs[0]->pp_es[
623                 p_input->stream.pp_programs[0]->i_es_number ]
624                 = p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ];
625             p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ] = p_es;
626             i_new_es_number++;
627         }
628         p_byte += 4 + U16_AT(&p_byte[2]);
629     }
630
631     /* Un-select the streams that are no longer parts of the program. */
632     for( i = i_new_es_number;
633          i < p_input->stream.pp_programs[0]->i_es_number;
634          i++ )
635     {
636         /* We remove pp_es[i_new_es_member] and not pp_es[i] because the
637          * list will be emptied starting from the end */
638         input_DelES( p_input,
639                      p_input->stream.pp_programs[0]->pp_es[i_new_es_number] );
640     }
641
642 #ifdef STATS
643     intf_Msg( "input info: The stream map after the PSM is now :" );
644     input_DumpStream( p_input );
645 #endif
646
647     vlc_mutex_unlock( &p_input->stream.stream_lock );
648 }
649
650 /*****************************************************************************
651  * input_ParsePS: read the PS header
652  *****************************************************************************/
653 es_descriptor_t * input_ParsePS( input_thread_t * p_input,
654                                  data_packet_t * p_data )
655 {
656     u32                 i_code;
657     es_descriptor_t *   p_es = NULL;
658
659     i_code = p_data->p_payload_start[3];
660     if( i_code > 0xBC ) /* ES start code */
661     {
662         u16                 i_id;
663         int                 i_dummy;
664
665         /* This is a PES packet. Find out if we want it or not. */
666         i_id = GetID( p_data );
667
668         vlc_mutex_lock( &p_input->stream.stream_lock );
669         if( p_input->stream.pp_programs[0]->b_is_ok )
670         {
671             /* Look only at the selected ES. */
672             for( i_dummy = 0; i_dummy < p_input->stream.i_selected_es_number;
673                  i_dummy++ )
674             {
675                 if( p_input->stream.pp_selected_es[i_dummy] != NULL
676                     && p_input->stream.pp_selected_es[i_dummy]->i_id == i_id )
677                 {
678                     p_es = p_input->stream.pp_selected_es[i_dummy];
679                     break;
680                 }
681             }
682         }
683         else
684         {
685             stream_ps_data_t * p_demux =
686               (stream_ps_data_t *)p_input->stream.pp_programs[0]->p_demux_data;
687
688             /* Search all ES ; if not found -> AddES */
689             p_es = input_FindES( p_input, i_id );
690
691             if( p_es == NULL && !p_demux->b_has_PSM )
692             {
693                 p_es = input_AddES( p_input, p_input->stream.pp_programs[0],
694                                     i_id, 0 );
695                 if( p_es != NULL )
696                 {
697                     p_es->i_stream_id = p_data->p_payload_start[3];
698
699                     /* Set stream type and auto-spawn. */
700                     if( (i_id & 0xF0) == 0xE0 )
701                     {
702                         /* MPEG video */
703                         p_es->i_type = MPEG2_VIDEO_ES;
704 #ifdef AUTO_SPAWN
705                         if( !p_input->stream.b_seekable )
706                             input_SelectES( p_input, p_es );
707 #endif
708                     }
709                     else if( (i_id & 0xE0) == 0xC0 )
710                     {
711                         /* MPEG audio */
712                         p_es->i_type = MPEG2_AUDIO_ES;
713                         p_es->b_audio = 1;
714 #ifdef AUTO_SPAWN
715                         if( !p_input->stream.b_seekable )
716                         if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
717                                 == (p_es->i_id & 0x1F) )
718                         switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
719                         {
720                         case 0:
721                             main_PutIntVariable( INPUT_CHANNEL_VAR,
722                                                  REQUESTED_MPEG );
723                         case REQUESTED_MPEG:
724                             input_SelectES( p_input, p_es );
725                         }
726 #endif
727                     }
728                     else if( (i_id & 0xF0FF) == 0x80BD )
729                     {
730                         /* AC3 audio (0x80->0x8F) */
731                         p_es->i_type = AC3_AUDIO_ES;
732                         p_es->b_audio = 1;
733 #ifdef AUTO_SPAWN
734                         if( !p_input->stream.b_seekable )
735                         if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
736                                 == ((p_es->i_id & 0xF00) >> 8) )
737                         switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
738                         {
739                         case 0:
740                             main_PutIntVariable( INPUT_CHANNEL_VAR,
741                                                  REQUESTED_AC3 );
742                         case REQUESTED_AC3:
743                             input_SelectES( p_input, p_es );
744                         }
745 #endif
746                     }
747                     else if( (i_id & 0xE0FF) == 0x20BD )
748                     {
749                         /* Subtitles video (0x20->0x3F) */
750                         p_es->i_type = DVD_SPU_ES;
751 #ifdef AUTO_SPAWN
752                         if( main_GetIntVariable( INPUT_SUBTITLE_VAR, -1 )
753                                 == ((p_es->i_id & 0x1F00) >> 8) )
754                         {
755                             if( !p_input->stream.b_seekable )
756                                 input_SelectES( p_input, p_es );
757                         }
758 #endif
759                     }
760                     else if( (i_id & 0xF0FF) == 0xA0BD )
761                     {
762                         /* LPCM audio (0xA0->0xAF) */
763                         p_es->i_type = LPCM_AUDIO_ES;
764                         p_es->b_audio = 1;
765                         /* FIXME : write the decoder */
766                     }
767                     else
768                     {
769                         p_es->i_type = UNKNOWN_ES;
770                     }
771                 }
772             }
773         } /* stream.b_is_ok */
774         vlc_mutex_unlock( &p_input->stream.stream_lock );
775     } /* i_code > 0xBC */
776
777     return( p_es );
778 }
779
780 /*****************************************************************************
781  * input_DemuxPS: first step of demultiplexing: the PS header
782  *****************************************************************************/
783 void input_DemuxPS( input_thread_t * p_input, data_packet_t * p_data )
784 {
785     u32                 i_code;
786     boolean_t           b_trash = 0;
787     es_descriptor_t *   p_es = NULL;
788
789     i_code = U32_AT( p_data->p_payload_start );
790     if( i_code <= 0x1BC )
791     {
792         switch( i_code )
793         {
794         case 0x1BA: /* PACK_START_CODE */
795             {
796                 /* Read the SCR. */
797                 mtime_t         scr_time;
798                 u32             i_mux_rate;
799
800                 if( (p_data->p_payload_start[4] & 0xC0) == 0x40 )
801                 {
802                     /* MPEG-2 */
803                     byte_t      p_header[14];
804                     byte_t *    p_byte;
805                     p_byte = p_data->p_payload_start;
806
807                     if( MoveChunk( p_header, &p_data, &p_byte, 14 ) != 14 )
808                     {
809                         intf_WarnMsg( 3, "Packet too short to have a header" );
810                         b_trash = 1;
811                         break;
812                     }
813                     scr_time =
814                          ((mtime_t)(p_header[4] & 0x38) << 27) |
815                          ((mtime_t)(U32_AT(p_header + 4) & 0x03FFF800)
816                                         << 4) |
817                          ((( ((mtime_t)U16_AT(p_header + 6) << 16)
818                             | (mtime_t)U16_AT(p_header + 8) ) & 0x03FFF800)
819                                         >> 11);
820
821                     /* mux_rate */
822                     i_mux_rate = ((u32)U16_AT(p_header + 10) << 6)
823                                    | (p_header[12] >> 2);
824                 }
825                 else
826                 {
827                     /* MPEG-1 SCR is like PTS. */
828                     byte_t      p_header[12];
829                     byte_t *    p_byte;
830                     p_byte = p_data->p_payload_start;
831
832                     if( MoveChunk( p_header, &p_data, &p_byte, 12 ) != 12 )
833                     {
834                         intf_WarnMsg( 3, "Packet too short to have a header" );
835                         b_trash = 1;
836                         break;
837                     }
838                     scr_time =
839                          ((mtime_t)(p_header[4] & 0x0E) << 29) |
840                          (((mtime_t)U32_AT(p_header + 4) & 0xFFFE00) << 6) |
841                          ((mtime_t)p_header[7] << 7) |
842                          ((mtime_t)p_header[8] >> 1);
843
844                     /* mux_rate */
845                     i_mux_rate = (U32_AT(p_header + 8) & 0x7FFFFE) >> 1;
846                 }
847                 /* Call the pace control. */
848                 input_ClockManageRef( p_input, p_input->stream.pp_programs[0],
849                                       scr_time );
850
851                 if( i_mux_rate != p_input->stream.i_mux_rate
852                      && p_input->stream.i_mux_rate )
853                 {
854                     intf_WarnMsg(2,
855                                  "Mux_rate changed - expect cosmetic errors");
856                 }
857                 p_input->stream.i_mux_rate = i_mux_rate;
858
859                 b_trash = 1;
860             }
861             break;
862
863         case 0x1BB: /* SYSTEM_START_CODE */
864             b_trash = 1;                              /* Nothing interesting */
865             break;
866
867         case 0x1BC: /* PROGRAM_STREAM_MAP_CODE */
868             DecodePSM( p_input, p_data );
869             b_trash = 1;
870             break;
871     
872         case 0x1B9: /* PROGRAM_END_CODE */
873             b_trash = 1;
874             break;
875    
876         default:
877             /* This should not happen */
878             b_trash = 1;
879             intf_WarnMsg( 1, "Unwanted packet received with start code %x",
880                           i_code );
881         }
882     }
883     else
884     {
885         p_es = input_ParsePS( p_input, p_data );
886
887         vlc_mutex_lock( &p_input->stream.control.control_lock );
888         if( p_es != NULL && p_es->p_decoder_fifo != NULL
889              && (!p_es->b_audio || !p_input->stream.control.b_mute) )
890         {
891             vlc_mutex_unlock( &p_input->stream.control.control_lock );
892 #ifdef STATS
893             p_es->c_packets++;
894 #endif
895             input_GatherPES( p_input, p_data, p_es, 1, 0 );
896         }
897         else
898         {
899             vlc_mutex_unlock( &p_input->stream.control.control_lock );
900             b_trash = 1;
901         }
902     }
903
904     /* Trash the packet if it has no payload or if it isn't selected */
905     if( b_trash )
906     {
907         p_input->pf_delete_packet( p_input->p_method_data, p_data );
908 #ifdef STATS
909         p_input->c_packets_trashed++;
910 #endif
911     }
912 }
913
914  
915 /*
916  * TS Demultiplexing
917  */
918
919 /*****************************************************************************
920  * input_DemuxTS: first step of demultiplexing: the TS header
921  *****************************************************************************/
922 void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data )
923 {
924     u16                 i_pid;
925     int                 i_dummy;
926     boolean_t           b_adaptation;         /* Adaptation field is present */
927     boolean_t           b_payload;                 /* Packet carries payload */
928     boolean_t           b_unit_start;  /* A PSI or a PES start in the packet */
929     boolean_t           b_trash = 0;             /* Is the packet unuseful ? */
930     boolean_t           b_lost = 0;             /* Was there a packet loss ? */
931     boolean_t           b_psi = 0;                        /* Is this a PSI ? */
932     es_descriptor_t *   p_es = NULL;
933     es_ts_data_t *      p_es_demux = NULL;
934     pgrm_ts_data_t *    p_pgrm_demux = NULL;
935
936     #define p (p_data->p_buffer)
937    
938     /* Extract flags values from TS common header. */
939     i_pid = U16_AT(&p[1]) & 0x1fff;
940     b_unit_start = (p[1] & 0x40);
941     b_adaptation = (p[3] & 0x20);
942     b_payload = (p[3] & 0x10);
943
944     /* Find out the elementary stream. */
945     vlc_mutex_lock( &p_input->stream.stream_lock );
946
947         
948     p_es= input_FindES( p_input, i_pid );
949     
950     if( (p_es != NULL) && (p_es->p_demux_data != NULL) )
951     {
952         p_es_demux = (es_ts_data_t *)p_es->p_demux_data;
953         
954         if( p_es_demux->b_psi )
955             b_psi = 1;
956     }
957
958     vlc_mutex_lock( &p_input->stream.control.control_lock );
959
960     if( ( p_es == NULL ) || (p_es->b_audio && p_input->stream.control.b_mute) )
961     {
962         /* Not selected. Just read the adaptation field for a PCR. */
963         b_trash = 1;
964     }
965     else if( p_es->p_decoder_fifo == NULL  && !b_psi )
966       b_trash =1; 
967
968     vlc_mutex_unlock( &p_input->stream.control.control_lock );
969     vlc_mutex_unlock( &p_input->stream.stream_lock );
970
971
972     if( ( p_es != NULL ) && 
973         ((p_es->p_decoder_fifo != NULL) || b_psi 
974                                    || (p_pgrm_demux->i_pcr_pid == i_pid) ) )
975     {
976         p_es_demux = (es_ts_data_t *)p_es->p_demux_data;
977
978         if( ! p_es_demux->b_psi )
979         {
980             p_pgrm_demux = (pgrm_ts_data_t *)p_es->p_pgrm->p_demux_data; 
981         }
982
983 #ifdef STATS
984         p_es->c_packets++;
985 #endif
986
987         /* Extract adaptation field information if any */
988
989         if( !b_adaptation )
990         {
991             /* We don't have any adaptation_field, so payload starts
992              * immediately after the 4 byte TS header */
993             p_data->p_payload_start += 4;
994         }
995         else
996         {
997             /* p[4] is adaptation_field_length minus one */
998             p_data->p_payload_start += 5 + p[4];
999     
1000             /* The adaptation field can be limited to the
1001              * adaptation_field_length byte, so that there is nothing to do:
1002              * skip this possibility */
1003             if( p[4] )
1004             {
1005                 /* If the packet has both adaptation_field and payload,
1006                  * adaptation_field cannot be more than 182 bytes long; if
1007                  * there is only an adaptation_field, it must fill the next
1008                  * 183 bytes. */
1009                 if( b_payload ? (p[4] > 182) : (p[4] != 183) )
1010                 {
1011                     intf_WarnMsg( 2,
1012                         "invalid TS adaptation field (%p)",
1013                         p_data );
1014                     p_data->b_discard_payload = 1;
1015 #ifdef STATS
1016                     p_es->c_invalid_packets++;
1017 #endif
1018                 }
1019     
1020                 /* Now we are sure that the byte containing flags is present:
1021                  * read it */
1022                 else
1023                 {
1024                     /* discontinuity_indicator */
1025                     if( p[5] & 0x80 )
1026                     {
1027                         intf_WarnMsg( 2,
1028                             "discontinuity_indicator"
1029                             " encountered by TS demux (position read: %d,"
1030                             " saved: %d)",
1031                             p[5] & 0x80, p_es_demux->i_continuity_counter );
1032     
1033                         /* If the PID carries the PCR, there will be a system
1034                          * time-based discontinuity. We let the PCR decoder
1035                          * handle that. */
1036                         p_es->p_pgrm->i_synchro_state = SYNCHRO_REINIT;
1037     
1038                         /* There also may be a continuity_counter
1039                          * discontinuity: resynchronise our counter with
1040                          * the one of the stream. */
1041                         p_es_demux->i_continuity_counter = (p[3] & 0x0f) - 1;
1042                     }
1043     
1044                     /* If this is a PCR_PID, and this TS packet contains a
1045                      * PCR, we pass it along to the PCR decoder. */
1046
1047                     if( (p_pgrm_demux->i_pcr_pid == i_pid) && (p[5] & 0x10) )
1048                     {
1049                         /* There should be a PCR field in the packet, check
1050                          * if the adaptation field is long enough to carry
1051                          * it. */
1052                         if( p[4] >= 7 )
1053                         {
1054                             /* Read the PCR. */
1055                             mtime_t     pcr_time;
1056                             pcr_time =
1057                                     ( (mtime_t)U32_AT((u32*)&p[6]) << 1 )
1058                                       | ( p[10] >> 7 );
1059                             /* Call the pace control. */
1060                             input_ClockManageRef( p_input, p_es->p_pgrm,
1061                                                   pcr_time );
1062                         }
1063                     } /* PCR ? */
1064                 } /* valid TS adaptation field ? */
1065             } /* length > 0 */
1066         } /* has adaptation field */
1067         /* Check the continuity of the stream. */
1068         i_dummy = ((p[3] & 0x0f) - p_es_demux->i_continuity_counter) & 0x0f;
1069         if( i_dummy == 1 )
1070         {
1071             /* Everything is ok, just increase our counter */
1072             (p_es_demux->i_continuity_counter)++;
1073         }
1074         else
1075         {
1076             if( !b_payload && i_dummy == 0 )
1077             {
1078                 /* This is a packet without payload, this is allowed by the
1079                  * draft. As there is nothing interesting in this packet
1080                  * (except PCR that have already been handled), we can trash
1081                  * the packet. */
1082                 intf_WarnMsg( 1,
1083                               "Packet without payload received by TS demux" );
1084                 b_trash = 1;
1085             }
1086             else if( i_dummy <= 0 )
1087             {
1088                 /* FIXME: this can never happen, can it ? --Meuuh */
1089                 /* Duplicate packet: mark it as being to be trashed. */
1090                 intf_WarnMsg( 1, "Duplicate packet received by TS demux" );
1091                 b_trash = 1;
1092             }
1093             else if( p_es_demux->i_continuity_counter == 0xFF )
1094             {
1095                 /* This means that the packet is the first one we receive for
1096                  * this ES since the continuity counter ranges between 0 and
1097                  * 0x0F excepts when it has been initialized by the input:
1098                  * init the counter to the correct value. */
1099                 intf_DbgMsg( "First packet for PID %d received by TS demux",
1100                              p_es->i_id );
1101                 p_es_demux->i_continuity_counter = (p[3] & 0x0f);
1102             }
1103             else
1104             {
1105                 /* This can indicate that we missed a packet or that the
1106                  * continuity_counter wrapped and we received a dup packet:
1107                  * as we don't know, do as if we missed a packet to be sure
1108                  * to recover from this situation */
1109                 intf_WarnMsg( 2,
1110                            "Packet lost by TS demux: current %d, packet %d",
1111                            p_es_demux->i_continuity_counter & 0x0f,
1112                            p[3] & 0x0f );
1113                 b_lost = 1;
1114                 p_es_demux->i_continuity_counter = p[3] & 0x0f;
1115             } /* not continuous */
1116         } /* continuity */
1117     } /* if selected or PCR */
1118     
1119     /* Trash the packet if it has no payload or if it isn't selected */
1120     if( b_trash )
1121     {
1122         p_input->pf_delete_packet( p_input->p_method_data, p_data );
1123 #ifdef STATS
1124         p_input->c_packets_trashed++;
1125 #endif
1126     }
1127     else
1128     {
1129         if( b_psi )
1130         {
1131             /* The payload contains PSI tables */
1132             input_DemuxPSI( p_input, p_data, p_es,
1133                             b_unit_start, b_lost );
1134
1135         }
1136         else
1137         {
1138             /* The payload carries a PES stream */
1139             input_GatherPES( p_input, p_data, p_es, b_unit_start, b_lost ); 
1140         }
1141
1142     }
1143
1144 #undef p
1145
1146 }
1147
1148 /*
1149  * PSI demultiplexing and decoding
1150  */
1151
1152 /*****************************************************************************
1153  * DemuxPSI : makes up complete PSI data
1154  *****************************************************************************/
1155 void input_DemuxPSI( input_thread_t * p_input, data_packet_t * p_data, 
1156         es_descriptor_t * p_es, boolean_t b_unit_start, boolean_t b_lost )
1157 {
1158     es_ts_data_t  * p_demux_data;
1159     
1160     p_demux_data = (es_ts_data_t *)p_es->p_demux_data;
1161
1162 #define p_psi (p_demux_data->p_psi_section)
1163 #define p (p_data->p_payload_start)
1164
1165     if( b_unit_start )
1166     {
1167         /* unit_start set to 1 -> presence of a pointer field
1168          * (see ISO/IEC 13818 (2.4.4.2) which should be set to 0x00 */
1169         if( (u8)p[0] != 0x00 )
1170         {
1171         /*    intf_WarnMsg( 2, */
1172             intf_ErrMsg( "Non zero pointer field found. Trying to continue" );
1173             p+=(u8)p[0];
1174         }
1175         else
1176             p++;
1177
1178         /* This is the begining of a new section */
1179
1180         if( ((u8)(p[1]) & 0xc0) != 0x80 ) 
1181         {
1182             intf_ErrMsg( "Invalid PSI packet" );
1183             p_psi->b_trash = 1;
1184         }
1185         else 
1186         {
1187             p_psi->i_section_length = U16_AT(p+1) & 0x0fff;
1188             p_psi->b_section_complete = 0;
1189             p_psi->i_read_in_section = 0;
1190             p_psi->i_section_number = (u8)p[6];
1191
1192             if( p_psi->b_is_complete || p_psi->i_section_number == 0 )
1193             {
1194                 /* This is a new PSI packet */
1195                 p_psi->b_is_complete = 0;
1196                 p_psi->b_trash = 0;
1197                 p_psi->i_version_number = ( p[5] >> 1 ) & 0x1f;
1198                 p_psi->i_last_section_number = (u8)p[7];
1199
1200                 /* We'll write at the begining of the buffer */
1201                 p_psi->p_current = p_psi->buffer;
1202             }
1203             else
1204             {
1205                 if( p_psi->b_section_complete )
1206                 {
1207                     /* New Section of an already started PSI */
1208                     p_psi->b_section_complete = 0;
1209                     
1210                     if( p_psi->i_version_number != (( p[5] >> 1 ) & 0x1f) )
1211                     {
1212                         intf_WarnMsg( 2,"PSI version differs inside same PAT" );
1213                         p_psi->b_trash = 1;
1214                     }
1215                     if( p_psi->i_section_number + 1 != (u8)p[6] )
1216                     {
1217                         intf_WarnMsg( 2, 
1218                                 "PSI Section discontinuity. Packet lost ?");
1219                         p_psi->b_trash = 1;
1220                     }
1221                     else
1222                         p_psi->i_section_number++;
1223                 }
1224                 else
1225                 {
1226                     intf_WarnMsg( 2, "Received unexpected new PSI section" );
1227                     p_psi->b_trash = 1;
1228                 }
1229             }
1230         }
1231     } /* b_unit_start */
1232     
1233     if( !p_psi->b_trash )
1234     {
1235         /* read */
1236         if( (p_data->p_payload_end - p) >=
1237             ( p_psi->i_section_length - p_psi->i_read_in_section ) )
1238         {
1239             /* The end of the section is in this TS packet */
1240             memcpy( p_psi->p_current, p, 
1241             (p_psi->i_section_length - p_psi->i_read_in_section) );
1242     
1243             p_psi->b_section_complete = 1;
1244             p_psi->p_current += 
1245                 (p_psi->i_section_length - p_psi->i_read_in_section);
1246                         
1247             if( p_psi->i_section_number == p_psi->i_last_section_number )
1248             {
1249                 /* This was the last section of PSI */
1250                 p_psi->b_is_complete = 1;
1251             }
1252         }
1253         else
1254         {
1255             memcpy( p_psi->buffer, p, p_data->p_payload_end - p );
1256             p_psi->i_read_in_section+= p_data->p_payload_end - p;
1257
1258             p_psi->p_current += p_data->p_payload_end - p;
1259         }
1260     }
1261
1262     if ( p_psi->b_is_complete )
1263     {
1264         switch( p_demux_data->i_psi_type)
1265         {
1266             case PSI_IS_PAT:
1267                 input_DecodePAT( p_input, p_es );
1268                 break;
1269             case PSI_IS_PMT:
1270                 input_DecodePMT( p_input, p_es );
1271                 break;
1272             default:
1273                 intf_ErrMsg("Received unknown PSI in demuxPSI");
1274         }
1275     }
1276 #undef p_psi    
1277 #undef p
1278     
1279     return ;
1280 }
1281
1282 /*****************************************************************************
1283  * DecodePAT : Decodes Programm association table and deal with it
1284  *****************************************************************************/
1285 static void input_DecodePAT( input_thread_t * p_input, es_descriptor_t * p_es )
1286 {
1287     
1288     stream_ts_data_t  * p_stream_data;
1289     es_ts_data_t      * p_demux_data;
1290
1291    
1292     p_demux_data = (es_ts_data_t *)p_es->p_demux_data;
1293     p_stream_data = (stream_ts_data_t *)p_input->stream.p_demux_data;
1294     
1295 #define p_psi (p_demux_data->p_psi_section)
1296
1297     if( p_stream_data->i_pat_version != p_psi->i_version_number )
1298     {
1299         /* PAT has changed. We are going to delete all programms and 
1300          * create new ones. We chose not to only change what was needed
1301          * as a PAT change may mean the stream is radically changing and
1302          * this is a secure method to avoid krashed */
1303         pgrm_descriptor_t * p_pgrm;
1304         es_descriptor_t   * p_current_es;
1305         es_ts_data_t      * p_es_demux;
1306         pgrm_ts_data_t    * p_pgrm_demux;
1307         byte_t            * p_current_data;           
1308         
1309         int                 i_section_length,i_program_id,i_pmt_pid;
1310         int                 i_loop, i_current_section;
1311         
1312         p_current_data = p_psi->buffer;
1313
1314
1315         for( i_loop = 0; i_loop < p_input->stream.i_pgrm_number; i_loop++ )
1316         {
1317             input_DelProgram( p_input, p_input->stream.pp_programs[i_loop] );
1318         }
1319         
1320         do
1321         {
1322             i_section_length = U16_AT(p_current_data+1) & 0x0fff;
1323             i_current_section = (u8)p_current_data[6];
1324     
1325             for( i_loop = 0; i_loop < (i_section_length-9)/4 ; i_loop++ )
1326             {
1327                 i_program_id = U16_AT(p_current_data + i_loop*4 + 8);
1328                 i_pmt_pid = U16_AT( p_current_data + i_loop*4 + 10) & 0x1fff;
1329     
1330                 /* If program = 0, we're having info about NIT not PMT */
1331                 if( i_program_id )
1332                 {
1333                     /* Add this program */
1334                     p_pgrm = input_AddProgram( p_input, i_program_id, 
1335                                                sizeof( pgrm_ts_data_t ) );
1336                    
1337                     /* whatis the PID of the PMT of this program */
1338                     p_pgrm_demux = (pgrm_ts_data_t *)p_pgrm->p_demux_data;
1339                     p_pgrm_demux->i_pmt_version = PMT_UNINITIALIZED;
1340     
1341                     /* Add the PMT ES to this program */
1342                     p_current_es = input_AddES( p_input, p_pgrm,(u16)i_pmt_pid,
1343                                         sizeof( es_ts_data_t) );
1344                     p_es_demux = (es_ts_data_t *)p_current_es->p_demux_data;
1345                     p_es_demux->b_psi = 1;
1346                     p_es_demux->i_psi_type = PSI_IS_PMT;
1347                     
1348                     p_es_demux->p_psi_section = 
1349                                             malloc( sizeof( psi_section_t ) );
1350                     p_es_demux->p_psi_section->b_is_complete = 0;
1351                 }
1352             }
1353             
1354             p_current_data+=3+i_section_length;
1355             
1356         } while( i_current_section < p_psi->i_last_section_number );
1357         
1358         /* Go to the beginning of the next section*/
1359         p_stream_data->i_pat_version = p_psi->i_version_number;
1360
1361     }
1362 #undef p_psi    
1363
1364 }
1365
1366 /*****************************************************************************
1367  * DecodePMT : decode a given Program Stream Map
1368  * ***************************************************************************
1369  * When the PMT changes, it may mean a deep change in the stream, and it is
1370  * careful to deletes the ES and add them again. If the PMT doesn't change,
1371  * there no need to do anything.
1372  *****************************************************************************/
1373 static void input_DecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
1374 {
1375
1376     pgrm_ts_data_t            * p_pgrm_data;
1377     es_ts_data_t              * p_demux_data;
1378
1379     p_demux_data = (es_ts_data_t *)p_es->p_demux_data;
1380     p_pgrm_data = (pgrm_ts_data_t *)p_es->p_pgrm->p_demux_data;
1381     
1382 #define p_psi (p_demux_data->p_psi_section)
1383
1384     if( p_psi->i_version_number != p_pgrm_data->i_pmt_version ) 
1385     {
1386         es_descriptor_t   * p_new_es;  
1387         es_ts_data_t      * p_es_demux;
1388         byte_t            * p_current_data, * p_current_section;
1389         int                 i_section_length,i_current_section;
1390         int                 i_prog_info_length, i_loop;
1391         int                 i_es_info_length, i_pid, i_stream_type;
1392         
1393         p_current_section = p_psi->buffer;
1394         p_current_data = p_psi->buffer;
1395         
1396         p_pgrm_data->i_pcr_pid = U16_AT(p_current_section + 8) & 0x1fff;
1397
1398         /* Delete all ES in this program  except the PSI */
1399         for( i_loop=0; i_loop < p_es->p_pgrm->i_es_number; i_loop++ )
1400         {
1401             p_es_demux = (es_ts_data_t *)
1402                          p_es->p_pgrm->pp_es[i_loop]->p_demux_data;
1403             if ( ! p_es_demux->b_psi )
1404             input_DelES( p_input, p_es->p_pgrm->pp_es[i_loop] );
1405         }
1406
1407         /* Then add what we received in this PMT */
1408         do
1409         {
1410             
1411             i_section_length = U16_AT(p_current_data+1) & 0x0fff;
1412             i_current_section = (u8)p_current_data[6];
1413             i_prog_info_length = U16_AT(p_current_data+10) & 0x0fff;
1414
1415             /* For the moment we ignore program descriptors */
1416             p_current_data += 12+i_prog_info_length;
1417     
1418             /* The end of the section, before the CRC is at 
1419              * p_current_section + i_section_length -1 */
1420             while( p_current_data < p_current_section + i_section_length -1 )
1421             {
1422                 i_stream_type = (int)p_current_data[0];
1423                 i_pid = U16_AT( p_current_data + 1 ) & 0x1fff;
1424                 i_es_info_length = U16_AT( p_current_data + 3 ) & 0x0fff;
1425                 
1426                 /* Add this ES to the program */
1427                 p_new_es = input_AddES( p_input, p_es->p_pgrm, 
1428                                         (u16)i_pid, sizeof( es_ts_data_t ) );
1429                 p_new_es->i_type = i_stream_type;
1430                 
1431                 /* We want to decode */
1432                 input_SelectES( p_input, p_new_es );
1433
1434                 p_current_data += 5 + i_es_info_length;
1435             }
1436
1437             /* Go to the beginning of the next section*/
1438             p_current_data += 3+i_section_length;
1439            
1440             p_current_section+=1;
1441             
1442         } while( i_current_section < p_psi->i_last_section_number );
1443
1444         p_pgrm_data->i_pmt_version = p_psi->i_version_number;
1445
1446     }
1447     
1448 #undef p_psi
1449 }