]> git.sesse.net Git - vlc/blob - src/input/mpeg_system.c
Begining of TS Input
[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.36 2001/02/14 15:58:29 henri 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  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <stdlib.h>
33
34 #include "config.h"
35 #include "common.h"
36 #include "threads.h"
37 #include "mtime.h"
38
39 #include "intf_msg.h"
40
41 #include "stream_control.h"
42 #include "input_ext-intf.h"
43 #include "input_ext-dec.h"
44
45 #include "input.h"
46 #include "mpeg_system.h"
47
48 #include "main.h"                           /* AC3/MPEG channel, SPU channel */
49
50 /*****************************************************************************
51  * Local prototypes
52  *****************************************************************************/
53
54
55 /*
56  * PES Packet management
57  */
58
59 /*****************************************************************************
60  * MoveChunk
61  *****************************************************************************
62  * Small utility function used to parse discontinuous headers safely. Copies
63  * i_buf_len bytes of data to a buffer and returns the size copied.
64  * This is a variation on the theme of input_ext-dec.h:GetChunk().
65  *****************************************************************************/
66 static __inline__ size_t MoveChunk( byte_t * p_dest,
67                                     data_packet_t ** pp_data_src,
68                                     byte_t ** pp_src,
69                                     size_t i_buf_len )
70 {
71     ptrdiff_t           i_available;
72
73     if( (i_available = (*pp_data_src)->p_payload_end - *pp_src)
74             >= i_buf_len )
75     {
76         if( p_dest != NULL )
77             memcpy( p_dest, *pp_src, i_buf_len );
78         *pp_src += i_buf_len;
79         return( i_buf_len );
80     }
81     else
82     {
83         size_t          i_init_len = i_buf_len;
84
85         do
86         {
87             if( p_dest != NULL )
88                 memcpy( p_dest, *pp_src, i_available );
89             *pp_data_src = (*pp_data_src)->p_next;
90             i_buf_len -= i_available;
91             p_dest += i_available;
92             if( *pp_data_src == NULL )
93             {
94                 *pp_src = NULL;
95                 return( i_init_len - i_buf_len );
96             }
97             *pp_src = (*pp_data_src)->p_payload_start;
98         }
99         while( (i_available = (*pp_data_src)->p_payload_end - *pp_src)
100                 <= i_buf_len );
101
102         if( i_buf_len )
103         {
104             if( p_dest != NULL )
105                 memcpy( p_dest, *pp_src, i_buf_len );
106             *pp_src += i_buf_len;
107         }
108         return( i_init_len );
109     }
110 }
111
112 /*****************************************************************************
113  * input_ParsePES
114  *****************************************************************************
115  * Parse a finished PES packet and analyze its header.
116  *****************************************************************************/
117 #define PES_HEADER_SIZE     7
118 void input_ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
119 {
120     data_packet_t * p_data;
121     byte_t *        p_byte;
122     byte_t          p_header[PES_HEADER_SIZE];
123     int             i_done;
124
125 #define p_pes (p_es->p_pes)
126
127     //intf_DbgMsg("End of PES packet %p", p_pes);
128
129     /* Parse the header. The header has a variable length, but in order
130      * to improve the algorithm, we will read the 14 bytes we may be
131      * interested in */
132     p_data = p_pes->p_first;
133     p_byte = p_data->p_payload_start;
134     i_done = 0;
135
136     if( MoveChunk( p_header, &p_data, &p_byte, PES_HEADER_SIZE )
137             != PES_HEADER_SIZE )
138     {
139         intf_WarnMsg( 3, "PES packet too short to have a header" );
140         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
141         p_pes = NULL;
142         return;
143     }
144
145     /* Get the PES size if defined */
146     p_es->i_pes_real_size = U16_AT(p_header + 4) + 6;
147
148     /* First read the 6 header bytes common to all PES packets:
149      * use them to test the PES validity */
150     if( (p_header[0] || p_header[1] || (p_header[2] != 1)) )
151     {
152         /* packet_start_code_prefix != 0x000001 */
153         intf_ErrMsg( "PES packet doesn't start with 0x000001 : data loss" );
154         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
155         p_pes = NULL;
156     }
157     else
158     {
159         int i_pes_header_size, i_payload_size;
160
161         if ( p_es->i_pes_real_size &&
162              (p_es->i_pes_real_size != p_pes->i_pes_size) )
163         {
164             /* PES_packet_length is set and != total received payload */
165             /* Warn the decoder that the data may be corrupt. */
166             intf_WarnMsg( 3, "PES sizes do not match : packet corrupted" );
167         }
168
169         switch( p_es->i_stream_id )
170         {
171         case 0xBC:  /* Program stream map */
172         case 0xBE:  /* Padding */
173         case 0xBF:  /* Private stream 2 */
174         case 0xB0:  /* ECM */
175         case 0xB1:  /* EMM */
176         case 0xFF:  /* Program stream directory */
177         case 0xF2:  /* DSMCC stream */
178         case 0xF8:  /* ITU-T H.222.1 type E stream */
179             /* The payload begins immediately after the 6 bytes header, so
180              * we have finished with the parsing */
181             i_pes_header_size = 6;
182             break;
183
184         default:
185             if( (p_header[6] & 0xC0) == 0x80 )
186             {
187                 /* MPEG-2 : the PES header contains at least 3 more bytes. */
188                 size_t      i_max_len;
189                 boolean_t   b_has_pts, b_has_dts;
190                 byte_t      p_full_header[12];
191
192                 p_pes->b_data_alignment = p_header[6] & 0x04;
193
194                 i_max_len = MoveChunk( p_full_header, &p_data, &p_byte, 12 );
195                 if( i_max_len < 2 )
196                 {
197                     intf_WarnMsg( 3,
198                             "PES packet too short to have a MPEG-2 header" );
199                     p_input->pf_delete_pes( p_input->p_method_data,
200                                             p_pes );
201                     p_pes = NULL;
202                     return;
203                 }
204
205                 b_has_pts = p_full_header[0] & 0x80;
206                 b_has_dts = p_full_header[0] & 0x40;
207                 i_pes_header_size = p_full_header[1] + 9;
208
209                 /* Now parse the optional header extensions */
210                 if( b_has_pts )
211                 {
212                     if( i_max_len < 7 )
213                     {
214                         intf_WarnMsg( 3,
215                             "PES packet too short to have a MPEG-2 header" );
216                         p_input->pf_delete_pes( p_input->p_method_data,
217                                                 p_pes );
218                         p_pes = NULL;
219                         return;
220                     }
221                     p_pes->i_pts = input_ClockGetTS( p_input, p_es->p_pgrm,
222                     ( ((mtime_t)(p_full_header[2] & 0x0E) << 29) |
223                       (((mtime_t)U16_AT(p_full_header + 3) << 14) - (1 << 14)) |
224                       ((mtime_t)U16_AT(p_full_header + 5) >> 1) ) );
225
226                     if( b_has_dts )
227                     {
228                         if( i_max_len < 12 )
229                         {
230                             intf_WarnMsg( 3,
231                               "PES packet too short to have a MPEG-2 header" );
232                             p_input->pf_delete_pes( p_input->p_method_data,
233                                                     p_pes );
234                             p_pes = NULL;
235                             return;
236                         }
237                         p_pes->i_dts = input_ClockGetTS( p_input, p_es->p_pgrm,
238                         ( ((mtime_t)(p_full_header[7] & 0x0E) << 29) |
239                           (((mtime_t)U16_AT(p_full_header + 8) << 14)
240                                 - (1 << 14)) |
241                           ((mtime_t)U16_AT(p_full_header + 10) >> 1) ) );
242                     }
243                 }
244             }
245             else
246             {
247                 /* Probably MPEG-1 */
248                 boolean_t       b_has_pts, b_has_dts;
249
250                 i_pes_header_size = 6;
251                 p_data = p_pes->p_first;
252                 p_byte = p_data->p_payload_start;
253                 /* Cannot fail because the previous one succeeded. */
254                 MoveChunk( NULL, &p_data, &p_byte, 6 );
255
256                 while( *p_byte == 0xFF && i_pes_header_size < 22 )
257                 {
258                     i_pes_header_size++;
259                     if( MoveChunk( NULL, &p_data, &p_byte, 1 ) != 1 )
260                     {
261                         intf_WarnMsg( 3,
262                             "PES packet too short to have a MPEG-1 header" );
263                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
264                         p_pes = NULL;
265                         return;
266                     }
267                 }
268                 if( i_pes_header_size == 22 )
269                 {
270                     intf_ErrMsg( "Too much MPEG-1 stuffing" );
271                     p_input->pf_delete_pes( p_input->p_method_data, p_pes );
272                     p_pes = NULL;
273                     return;
274                 }
275
276                 if( (*p_byte & 0xC0) == 0x40 )
277                 {
278                     /* Don't ask why... --Meuuh */
279                     /* Erm... why ? --Sam */
280                     /* Well... According to the recommendation, it is for
281                      * STD_buffer_scale and STD_buffer_size. --Meuuh */
282                     i_pes_header_size += 2;
283                     if( MoveChunk( NULL, &p_data, &p_byte, 2 ) != 2 )
284                     {
285                         intf_WarnMsg( 3,
286                             "PES packet too short to have a MPEG-1 header" );
287                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
288                         p_pes = NULL;
289                         return;
290                     }
291                 }
292
293                 i_pes_header_size++;
294
295                 b_has_pts = *p_byte & 0x20;
296                 b_has_dts = *p_byte & 0x10;
297
298                 if( b_has_pts )
299                 {
300                     byte_t      p_ts[5];
301
302                     i_pes_header_size += 4;
303                     if( MoveChunk( p_ts, &p_data, &p_byte, 5 ) != 5 )
304                     {
305                         intf_WarnMsg( 3,
306                             "PES packet too short to have a MPEG-1 header" );
307                         p_input->pf_delete_pes( p_input->p_method_data, p_pes );
308                         p_pes = NULL;
309                         return;
310                     }
311
312                     p_pes->i_pts = input_ClockGetTS( p_input, p_es->p_pgrm,
313                       ( ((mtime_t)(p_ts[0] & 0x0E) << 29) |
314                         (((mtime_t)U16_AT(p_ts + 1) << 14) - (1 << 14)) |
315                         ((mtime_t)U16_AT(p_ts + 3) >> 1) ) );
316
317                     if( b_has_dts )
318                     {
319                         i_pes_header_size += 5;
320                         if( MoveChunk( p_ts, &p_data, &p_byte, 5 ) != 5 )
321                         {
322                             intf_WarnMsg( 3,
323                               "PES packet too short to have a MPEG-1 header" );
324                             p_input->pf_delete_pes( p_input->p_method_data,
325                                                     p_pes );
326                             p_pes = NULL;
327                             return;
328                         }
329
330                         p_pes->i_dts = input_ClockGetTS( p_input,
331                                                          p_es->p_pgrm,
332                             ( ((mtime_t)(p_ts[0] & 0x0E) << 29) |
333                               (((mtime_t)U16_AT(p_ts + 1) << 14) - (1 << 14)) |
334                               ((mtime_t)U16_AT(p_ts + 3) >> 1) ) );
335                     }
336                 }
337             }
338
339             break;
340         }
341
342         if( p_es->i_stream_id == 0xbd )
343         {
344             /* With private stream 1, the first byte of the payload
345              * is a stream_private_id, so skip it. */
346             i_pes_header_size++;
347         }
348
349         /* Now we've parsed the header, we just have to indicate in some
350          * specific data packets where the PES payload begins (renumber
351          * p_payload_start), so that the decoders can find the beginning
352          * of their data right out of the box. */
353         p_data = p_pes->p_first;
354         i_payload_size = p_data->p_payload_end
355                                  - p_data->p_payload_start;
356         while( i_pes_header_size > i_payload_size )
357         {
358             /* These packets are entirely filled by the PES header. */
359             i_pes_header_size -= i_payload_size;
360             p_data->p_payload_start = p_data->p_payload_end;
361             /* Go to the next data packet. */
362             if( (p_data = p_data->p_next) == NULL )
363             {
364                 intf_ErrMsg( "PES header bigger than payload" );
365                 p_input->pf_delete_pes( p_input->p_method_data, p_pes );
366                 p_pes = NULL;
367                 return;
368             }
369             i_payload_size = p_data->p_payload_end
370                                  - p_data->p_payload_start;
371         }
372         /* This last packet is partly header, partly payload. */
373         if( i_payload_size < i_pes_header_size )
374         {
375             intf_ErrMsg( "PES header bigger than payload" );
376             p_input->pf_delete_pes( p_input->p_method_data, p_pes );
377             p_pes = NULL;
378             return;
379         }
380         p_data->p_payload_start += i_pes_header_size;
381
382         /* Now we can eventually put the PES packet in the decoder's
383          * PES fifo */
384         if( p_es->p_decoder_fifo != NULL )
385         {
386             input_DecodePES( p_es->p_decoder_fifo, p_pes );
387         }
388         else
389         {
390             intf_ErrMsg("No fifo to receive PES %p (who wrote this damn code ?)",
391                         p_pes);
392             p_input->pf_delete_pes( p_input->p_method_data, p_pes );
393         }
394         p_pes = NULL;
395     }
396 #undef p_pes
397
398 }
399
400 /*****************************************************************************
401  * input_GatherPES:
402  *****************************************************************************
403  * Gather a PES packet.
404  *****************************************************************************/
405 void input_GatherPES( input_thread_t * p_input, data_packet_t * p_data,
406                       es_descriptor_t * p_es,
407                       boolean_t b_unit_start, boolean_t b_packet_lost )
408 {
409 #define p_pes (p_es->p_pes)
410
411     //intf_DbgMsg("PES-demultiplexing %p (%p)", p_ts_packet, p_pes);
412
413     /* If we lost data, insert a NULL data packet (philosophy : 0 is quite
414      * often an escape sequence in decoders, so that should make them wait
415      * for the next start code). */
416     if( b_packet_lost )
417     {
418         input_NullPacket( p_input, p_es );
419     }
420
421     if( b_unit_start && p_pes != NULL )
422     {
423         /* If the data packet contains the begining of a new PES packet, and
424          * if we were reassembling a PES packet, then the PES should be
425          * complete now, so parse its header and give it to the decoders. */
426         input_ParsePES( p_input, p_es );
427     }
428
429     if( !b_unit_start && p_pes == NULL )
430     {
431         /* Random access... */
432         p_input->pf_delete_packet( p_input->p_method_data, p_data );
433     }
434     else
435     {
436         if( b_unit_start )
437         {
438             /* If we are at the beginning of a new PES packet, we must fetch
439              * a new PES buffer to begin with the reassembly of this PES
440              * packet. This is also here that we can synchronize with the
441              * stream if we lost packets or if the decoder has just
442              * started. */
443             if( (p_pes = p_input->pf_new_pes( p_input->p_method_data ) ) == NULL )
444             {
445                 intf_ErrMsg("Out of memory");
446                 p_input->b_error = 1;
447                 return;
448             }
449             p_pes->i_rate = p_input->stream.control.i_rate;
450             p_pes->p_first = p_data;
451             
452             /* If the PES header fits in the first data packet, we can
453              * already set p_gather->i_pes_real_size. */
454             if( p_data->p_payload_end - p_data->p_payload_start
455                     >= PES_HEADER_SIZE )
456             {
457                 p_es->i_pes_real_size =
458                                 U16_AT(p_data->p_payload_start + 4) + 6;
459                 
460             }
461             else
462             { 
463                 p_es->i_pes_real_size = 0;
464             } 
465         }
466         else
467         {
468             /* Update the relations between the data packets */
469             p_es->p_last->p_next = p_data;
470         }
471
472         p_es->p_last = p_data;
473
474         /* Size of the payload carried in the data packet */
475         p_pes->i_pes_size += (p_data->p_payload_end
476                                  - p_data->p_payload_start);
477     
478         /* We can check if the packet is finished */
479         if( p_pes->i_pes_size == p_es->i_pes_real_size )
480         {
481             /* The packet is finished, parse it */
482             input_ParsePES( p_input, p_es );
483         }
484     }
485 #undef p_pes
486 }
487
488
489 /*
490  * PS Demultiplexing
491  */
492
493 /*****************************************************************************
494  * GetID: Get the ID of a stream
495  *****************************************************************************/
496 static u16 GetID( data_packet_t * p_data )
497 {
498     u16         i_id;
499
500     i_id = p_data->p_buffer[3];                                 /* stream_id */
501     if( i_id == 0xBD )
502     {
503         /* stream_private_id */
504         i_id |= p_data->p_buffer[ 9 + p_data->p_buffer[8] ] << 8;
505     }
506     return( i_id );
507 }
508
509 /*****************************************************************************
510  * DecodePSM: Decode the Program Stream Map information
511  *****************************************************************************/
512 static void DecodePSM( input_thread_t * p_input, data_packet_t * p_data )
513 {
514     stream_ps_data_t *  p_demux =
515                  (stream_ps_data_t *)p_input->stream.p_demux_data;
516     byte_t *            p_byte;
517     byte_t *            p_end;
518     int                 i;
519     int                 i_new_es_number = 0;
520
521     intf_Msg("input info: Your stream contains Program Stream Map information");
522     intf_Msg("input info: Please send a mail to <massiot@via.ecp.fr>");
523
524     if( p_data->p_payload_start + 10 > p_data->p_payload_end )
525     {
526         intf_ErrMsg( "PSM too short : packet corrupt" );
527         return;
528     }
529
530     if( p_demux->b_has_PSM
531         && p_demux->i_PSM_version == (p_data->p_buffer[6] & 0x1F) )
532     {
533         /* Already got that one. */
534         return;
535     }
536
537     intf_DbgMsg( "Building PSM" );
538     p_demux->b_has_PSM = 1;
539     p_demux->i_PSM_version = p_data->p_buffer[6] & 0x1F;
540
541     /* Go to elementary_stream_map_length, jumping over
542      * program_stream_info. */
543     p_byte = p_data->p_payload_start + 10
544               + U16_AT(&p_data->p_payload_start[8]);
545     if( p_byte > p_data->p_payload_end )
546     {
547         intf_ErrMsg( "PSM too short : packet corrupt" );
548         return;
549     }
550     /* This is the full size of the elementary_stream_map.
551      * 2 == elementary_stream_map_length
552      * Please note that CRC_32 is not included in the length. */
553     p_end = p_byte + 2 + U16_AT(p_byte);
554     p_byte += 2;
555     if( p_end > p_data->p_payload_end )
556     {
557         intf_ErrMsg( "PSM too short : packet corrupt" );
558         return;
559     }
560
561     vlc_mutex_lock( &p_input->stream.stream_lock );
562
563     /* 4 == minimum useful size of a section */
564     while( p_byte + 4 <= p_end )
565     {
566         es_descriptor_t *   p_es = NULL;
567         u8                  i_stream_id = p_byte[1];
568         /* FIXME: there will be a problem with private streams... (same
569          * stream_id) */
570
571         /* Look for the ES in the ES table */
572         for( i = i_new_es_number;
573              i < p_input->stream.pp_programs[0]->i_es_number;
574              i++ )
575         {
576             if( p_input->stream.pp_programs[0]->pp_es[i]->i_stream_id
577                     == i_stream_id )
578             {
579                 p_es = p_input->stream.pp_programs[0]->pp_es[i];
580                 if( p_es->i_type != p_byte[0] )
581                 {
582                     input_DelES( p_input, p_es );
583                     p_es = NULL;
584                 }
585                 else
586                 {
587                     /* Move the ES to the beginning. */
588                     p_input->stream.pp_programs[0]->pp_es[i]
589                         = p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ];
590                     p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ]
591                         = p_es;
592                     i_new_es_number++;
593                 }
594                 break;
595             }
596         }
597
598         /* The goal is to have all the ES we have just read in the
599          * beginning of the pp_es table, and all the others at the end,
600          * so that we can close them more easily at the end. */
601         if( p_es == NULL )
602         {
603             p_es = input_AddES( p_input, p_input->stream.pp_programs[0],
604                                 i_stream_id, 0 );
605             p_es->i_type = p_byte[0];
606             p_es->b_audio = ( p_es->i_type == MPEG1_AUDIO_ES
607                               || p_es->i_type == MPEG2_AUDIO_ES
608                               || p_es->i_type == AC3_AUDIO_ES
609                               || p_es->i_type == LPCM_AUDIO_ES
610                             );
611
612             /* input_AddES has inserted the new element at the end. */
613             p_input->stream.pp_programs[0]->pp_es[
614                 p_input->stream.pp_programs[0]->i_es_number ]
615                 = p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ];
616             p_input->stream.pp_programs[0]->pp_es[ i_new_es_number ] = p_es;
617             i_new_es_number++;
618         }
619         p_byte += 4 + U16_AT(&p_byte[2]);
620     }
621
622     /* Un-select the streams that are no longer parts of the program. */
623     for( i = i_new_es_number;
624          i < p_input->stream.pp_programs[0]->i_es_number;
625          i++ )
626     {
627         /* We remove pp_es[i_new_es_member] and not pp_es[i] because the
628          * list will be emptied starting from the end */
629         input_DelES( p_input,
630                      p_input->stream.pp_programs[0]->pp_es[i_new_es_number] );
631     }
632
633 #ifdef STATS
634     intf_Msg( "input info: The stream map after the PSM is now :" );
635     input_DumpStream( p_input );
636 #endif
637
638     vlc_mutex_unlock( &p_input->stream.stream_lock );
639 }
640
641 /*****************************************************************************
642  * input_ParsePS: read the PS header
643  *****************************************************************************/
644 es_descriptor_t * input_ParsePS( input_thread_t * p_input,
645                                  data_packet_t * p_data )
646 {
647     u32                 i_code;
648     es_descriptor_t *   p_es = NULL;
649
650     i_code = U32_AT( p_data->p_buffer );
651     if( i_code > 0x1BC ) /* ES start code */
652     {
653         u16                 i_id;
654         int                 i_dummy;
655
656         /* This is a PES packet. Find out if we want it or not. */
657         i_id = GetID( p_data );
658
659         vlc_mutex_lock( &p_input->stream.stream_lock );
660         if( p_input->stream.pp_programs[0]->b_is_ok )
661         {
662             /* Look only at the selected ES. */
663             for( i_dummy = 0; i_dummy < p_input->stream.i_selected_es_number;
664                  i_dummy++ )
665             {
666                 if( p_input->stream.pp_selected_es[i_dummy] != NULL
667                     && p_input->stream.pp_selected_es[i_dummy]->i_id == i_id )
668                 {
669                     p_es = p_input->stream.pp_selected_es[i_dummy];
670                     break;
671                 }
672             }
673         }
674         else
675         {
676             stream_ps_data_t * p_demux =
677               (stream_ps_data_t *)p_input->stream.pp_programs[0]->p_demux_data;
678
679             /* Search all ES ; if not found -> AddES */
680             p_es = input_FindES( p_input, i_id );
681
682             if( p_es == NULL && !p_demux->b_has_PSM )
683             {
684                 p_es = input_AddES( p_input, p_input->stream.pp_programs[0],
685                                     i_id, 0 );
686                 if( p_es != NULL )
687                 {
688                     p_es->i_stream_id = p_data->p_buffer[3];
689
690                     /* Set stream type and auto-spawn. */
691                     if( (i_id & 0xF0) == 0xE0 )
692                     {
693                         /* MPEG video */
694                         p_es->i_type = MPEG2_VIDEO_ES;
695 #ifdef AUTO_SPAWN
696                         if( !p_input->stream.b_seekable )
697                             input_SelectES( p_input, p_es );
698 #endif
699                     }
700                     else if( (i_id & 0xE0) == 0xC0 )
701                     {
702                         /* MPEG audio */
703                         p_es->i_type = MPEG2_AUDIO_ES;
704                         p_es->b_audio = 1;
705 #ifdef AUTO_SPAWN
706                         if( !p_input->stream.b_seekable )
707                         if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
708                                 == (p_es->i_id & 0x1F) )
709                         switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
710                         {
711                         case 0:
712                             main_PutIntVariable( INPUT_CHANNEL_VAR,
713                                                  REQUESTED_MPEG );
714                         case REQUESTED_MPEG:
715                             input_SelectES( p_input, p_es );
716                         }
717 #endif
718                     }
719                     else if( (i_id & 0xF0FF) == 0x80BD )
720                     {
721                         /* AC3 audio (0x80->0x8F) */
722                         p_es->i_type = AC3_AUDIO_ES;
723                         p_es->b_audio = 1;
724 #ifdef AUTO_SPAWN
725                         if( !p_input->stream.b_seekable )
726                         if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
727                                 == ((p_es->i_id & 0xF00) >> 8) )
728                         switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
729                         {
730                         case 0:
731                             main_PutIntVariable( INPUT_CHANNEL_VAR,
732                                                  REQUESTED_AC3 );
733                         case REQUESTED_AC3:
734                             input_SelectES( p_input, p_es );
735                         }
736 #endif
737                     }
738                     else if( (i_id & 0xE0FF) == 0x20BD )
739                     {
740                         /* Subtitles video (0x20->0x3F) */
741                         p_es->i_type = DVD_SPU_ES;
742 #ifdef AUTO_SPAWN
743                         if( main_GetIntVariable( INPUT_SUBTITLE_VAR, -1 )
744                                 == ((p_es->i_id & 0x1F00) >> 8) )
745                         {
746                             if( !p_input->stream.b_seekable )
747                                 input_SelectES( p_input, p_es );
748                         }
749 #endif
750                     }
751                     else if( (i_id & 0xF0FF) == 0xA0BD )
752                     {
753                         /* LPCM audio (0xA0->0xAF) */
754                         p_es->i_type = LPCM_AUDIO_ES;
755                         p_es->b_audio = 1;
756                         /* FIXME : write the decoder */
757                     }
758                     else
759                     {
760                         p_es->i_type = UNKNOWN_ES;
761                     }
762                 }
763             }
764         } /* stream.b_is_ok */
765         vlc_mutex_unlock( &p_input->stream.stream_lock );
766     } /* i_code > 0xBC */
767
768     return( p_es );
769 }
770
771 /*****************************************************************************
772  * input_DemuxPS: first step of demultiplexing: the PS header
773  *****************************************************************************/
774 void input_DemuxPS( input_thread_t * p_input, data_packet_t * p_data )
775 {
776     u32                 i_code;
777     boolean_t           b_trash = 0;
778     es_descriptor_t *   p_es = NULL;
779
780     i_code = U32_AT( p_data->p_buffer );
781     if( i_code <= 0x1BC )
782     {
783         switch( i_code )
784         {
785         case 0x1BA: /* PACK_START_CODE */
786             {
787                 /* Read the SCR. */
788                 mtime_t         scr_time;
789
790                 if( (p_data->p_buffer[4] & 0xC0) == 0x40 )
791                 {
792                     /* MPEG-2 */
793                     scr_time =
794                          ((mtime_t)(p_data->p_buffer[4] & 0x38) << 27) |
795                          ((mtime_t)(U32_AT(p_data->p_buffer + 4) & 0x03FFF800)
796                                         << 4) |
797                          ((mtime_t)(U32_AT(p_data->p_buffer + 6) & 0x03FFF800)
798                                         >> 11);
799                 }
800                 else
801                 {
802                     /* MPEG-1 SCR is like PTS. */
803                     scr_time =
804                          ((mtime_t)(p_data->p_buffer[4] & 0x0E) << 29) |
805                          (((mtime_t)U16_AT(p_data->p_buffer + 5) << 14)
806                            - (1 << 14)) |
807                          ((mtime_t)U16_AT(p_data->p_buffer + 7) >> 1);
808                 }
809                 /* Call the pace control. */
810                 //intf_Msg("+%lld", scr_time);
811                 input_ClockManageRef( p_input, p_input->stream.pp_programs[0],
812                                       scr_time );
813                 b_trash = 1;
814             }
815             break;
816
817         case 0x1BB: /* SYSTEM_START_CODE */
818             b_trash = 1;                              /* Nothing interesting */
819             break;
820
821         case 0x1BC: /* PROGRAM_STREAM_MAP_CODE */
822             DecodePSM( p_input, p_data );
823             b_trash = 1;
824             break;
825     
826         case 0x1B9: /* PROGRAM_END_CODE */
827             b_trash = 1;
828             break;
829    
830         default:
831             /* This should not happen */
832             b_trash = 1;
833             intf_WarnMsg( 1, "Unwanted packet received with start code %x",
834                           i_code );
835         }
836     }
837     else
838     {
839         p_es = input_ParsePS( p_input, p_data );
840
841         vlc_mutex_lock( &p_input->stream.control.control_lock );
842         if( p_es != NULL && p_es->p_decoder_fifo != NULL
843              && (!p_es->b_audio || !p_input->stream.control.b_mute) )
844         {
845             vlc_mutex_unlock( &p_input->stream.control.control_lock );
846 #ifdef STATS
847             p_es->c_packets++;
848 #endif
849             input_GatherPES( p_input, p_data, p_es, 1, 0 );
850         }
851         else
852         {
853             vlc_mutex_unlock( &p_input->stream.control.control_lock );
854             b_trash = 1;
855         }
856     }
857
858     /* Trash the packet if it has no payload or if it isn't selected */
859     if( b_trash )
860     {
861         p_input->pf_delete_packet( p_input->p_method_data, p_data );
862 #ifdef STATS
863         p_input->c_packets_trashed++;
864 #endif
865     }
866 }
867
868  
869 /*
870  * TS Demultiplexing
871  */
872
873 /*****************************************************************************
874  * input_DemuxTS: first step of demultiplexing: the TS header
875  *****************************************************************************/
876 void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data )
877 {
878     int                 i_pid, i_dummy;
879     boolean_t           b_adaptation;         /* Adaptation field is present */
880     boolean_t           b_payload;                 /* Packet carries payload */
881     boolean_t           b_unit_start;  /* A PSI or a PES start in the packet */
882     boolean_t           b_trash = 0;             /* Is the packet unuseful ? */
883     boolean_t           b_lost = 0;             /* Was there a packet loss ? */
884     es_descriptor_t *   p_es = NULL;
885     es_ts_data_t *      p_es_demux = NULL;
886     pgrm_ts_data_t *    p_pgrm_demux = NULL;
887
888     #define p (p_data->p_buffer)
889
890     //intf_DbgMsg("input debug: TS-demultiplexing packet %p, pid %d",
891     //            p_ts_packet, U16_AT(&p[1]) & 0x1fff);
892
893     /* Extract flags values from TS common header. */
894     i_pid = U16_AT(&p[1]) & 0x1fff;
895     b_unit_start = (p[1] & 0x40);
896     b_adaptation = (p[3] & 0x20);
897     b_payload = (p[3] & 0x10);
898
899     /* Find out the elementary stream. */
900     vlc_mutex_lock( &p_input->stream.stream_lock );
901
902 // kludge    
903 if ( i_pid == 0x78 )
904 {
905     p_es = input_FindES( p_input, 0x78 );
906     p_es->i_type = MPEG2_VIDEO_ES;
907     if( p_es->p_pes == NULL )
908       intf_ErrMsg("Got p_es . p_es->p_pes == null ? %d",p_es->p_pes == NULL);
909 }
910 else
911 {
912     p_es = NULL;
913     b_trash = 1;
914 }
915
916     
917     vlc_mutex_lock( &p_input->stream.control.control_lock );
918     if( p_es == NULL || p_es->p_decoder_fifo == NULL
919          || (p_es->b_audio && p_input->stream.control.b_mute) )
920     {
921         /* Not selected. Just read the adaptation field for a PCR. */
922         b_trash = 1;
923     }
924     vlc_mutex_unlock( &p_input->stream.control.control_lock );
925     vlc_mutex_unlock( &p_input->stream.stream_lock );
926
927 // kludge
928     if (p_es != NULL )
929     {
930     
931     p_es_demux = (es_ts_data_t *)p_es->p_demux_data;
932     p_pgrm_demux = (pgrm_ts_data_t *)p_es->p_pgrm->p_demux_data; 
933     
934     p_pgrm_demux->i_pcr_pid = 0x78;
935
936     if( (p_es->p_decoder_fifo != NULL) || (p_pgrm_demux->i_pcr_pid == i_pid) )
937     {
938 #ifdef STATS
939         p_es->c_packets++;
940 #endif
941
942         /* Extract adaptation field information if any */
943
944         if( !b_adaptation )
945         {
946             /* We don't have any adaptation_field, so payload starts
947              * immediately after the 4 byte TS header */
948             p_data->p_payload_start += 4;
949         }
950         else
951         {
952             /* p[4] is adaptation_field_length minus one */
953             p_data->p_payload_start += 5 + p[4];
954     
955             /* The adaptation field can be limited to the
956              * adaptation_field_length byte, so that there is nothing to do:
957              * skip this possibility */
958             if( p[4] )
959             {
960                 /* If the packet has both adaptation_field and payload,
961                  * adaptation_field cannot be more than 182 bytes long; if
962                  * there is only an adaptation_field, it must fill the next
963                  * 183 bytes. */
964                 if( b_payload ? (p[4] > 182) : (p[4] != 183) )
965                 {
966                     intf_WarnMsg( 2,
967                         "invalid TS adaptation field (%p)",
968                         p_data );
969                     p_data->b_discard_payload = 1;
970 #ifdef STATS
971                     p_es->c_invalid_packets++;
972 #endif
973                 }
974     
975                 /* Now we are sure that the byte containing flags is present:
976                  * read it */
977                 else
978                 {
979                     /* discontinuity_indicator */
980                     if( p[5] & 0x80 )
981                     {
982                         intf_WarnMsg( 2,
983                             "discontinuity_indicator"
984                             " encountered by TS demux (position read: %d,"
985                             " saved: %d)",
986                             p[5] & 0x80, p_es_demux->i_continuity_counter );
987     
988                         /* If the PID carries the PCR, there will be a system
989                          * time-based discontinuity. We let the PCR decoder
990                          * handle that. */
991                         p_es->p_pgrm->i_synchro_state = SYNCHRO_REINIT;
992     
993                         /* There also may be a continuity_counter
994                          * discontinuity: resynchronise our counter with
995                          * the one of the stream. */
996                         p_es_demux->i_continuity_counter = (p[3] & 0x0f) - 1;
997                     }
998     
999                     /* If this is a PCR_PID, and this TS packet contains a
1000                      * PCR, we pass it along to the PCR decoder. */
1001
1002                     if( (p_pgrm_demux->i_pcr_pid == i_pid) && (p[5] & 0x10) )
1003                     {
1004                         /* There should be a PCR field in the packet, check
1005                          * if the adaptation field is long enough to carry
1006                          * it. */
1007                         if( p[4] >= 7 )
1008                         {
1009                             /* Read the PCR. */
1010                             mtime_t     pcr_time;
1011                             pcr_time =
1012                                     ( (mtime_t)U32_AT((u32*)&p[6]) << 1 )
1013                                       | ( p[10] >> 7 );
1014                             /* Call the pace control. */
1015                             input_ClockManageRef( p_input, p_es->p_pgrm,
1016                                                   pcr_time );
1017                         }
1018                     } /* PCR ? */
1019                 } /* valid TS adaptation field ? */
1020             } /* length > 0 */
1021         } /* has adaptation field */
1022         /* Check the continuity of the stream. */
1023         i_dummy = ((p[3] & 0x0f) - p_es_demux->i_continuity_counter) & 0x0f;
1024         if( i_dummy == 1 )
1025         {
1026             /* Everything is ok, just increase our counter */
1027             (p_es_demux->i_continuity_counter)++;
1028         }
1029         else
1030         {
1031             if( !b_payload && i_dummy == 0 )
1032             {
1033                 /* This is a packet without payload, this is allowed by the
1034                  * draft. As there is nothing interesting in this packet
1035                  * (except PCR that have already been handled), we can trash
1036                  * the packet. */
1037                 intf_WarnMsg( 1,
1038                               "Packet without payload received by TS demux" );
1039                 b_trash = 1;
1040             }
1041             else if( i_dummy <= 0 )
1042             {
1043                 /* FIXME: this can never happen, can it ? --Meuuh */
1044                 /* Duplicate packet: mark it as being to be trashed. */
1045                 intf_WarnMsg( 1, "Duplicate packet received by TS demux" );
1046                 b_trash = 1;
1047             }
1048             else if( p_es_demux->i_continuity_counter == 0xFF )
1049             {
1050                 /* This means that the packet is the first one we receive for
1051                  * this ES since the continuity counter ranges between 0 and
1052                  * 0x0F excepts when it has been initialized by the input:
1053                  * init the counter to the correct value. */
1054                 intf_DbgMsg( "First packet for PID %d received by TS demux",
1055                              p_es->i_id );
1056                 p_es_demux->i_continuity_counter = (p[3] & 0x0f);
1057             }
1058             else
1059             {
1060                 /* This can indicate that we missed a packet or that the
1061                  * continuity_counter wrapped and we received a dup packet:
1062                  * as we don't know, do as if we missed a packet to be sure
1063                  * to recover from this situation */
1064                 intf_WarnMsg( 2,
1065                            "Packet lost by TS demux: current %d, packet %d",
1066                            p_es_demux->i_continuity_counter & 0x0f,
1067                            p[3] & 0x0f );
1068                 b_lost = 1;
1069                 p_es_demux->i_continuity_counter = p[3] & 0x0f;
1070             } /* not continuous */
1071         } /* continuity */
1072     } /* if selected or PCR */
1073
1074     }
1075     
1076     /* Trash the packet if it has no payload or if it isn't selected */
1077     if( b_trash )
1078     {
1079         
1080         p_input->pf_delete_packet( p_input->p_method_data, p_data );
1081 #ifdef STATS
1082         p_input->c_packets_trashed++;
1083 #endif
1084     }
1085     else
1086     {
1087         if( p_es_demux->b_psi )
1088         {
1089 //debug
1090 //printf("DemuxTS : Was a PSI\n");
1091             /* The payload contains PSI tables */
1092 #if 0
1093             /* FIXME ! write the PSI decoder :p */
1094             input_DemuxPSI( p_input, p_data, p_es,
1095                             b_unit_start, b_lost );
1096 #endif
1097         }
1098         else
1099         {
1100             /* The payload carries a PES stream */
1101             input_GatherPES( p_input, p_data, p_es, b_unit_start, b_lost ); 
1102         }
1103     }
1104
1105 #undef p
1106
1107 }