]> git.sesse.net Git - vlc/blob - src/input/input.c
petit patch pour faire marcher l'AC3
[vlc] / src / input / input.c
1 /*******************************************************************************
2  * input.c: input thread 
3  * (c)1998 VideoLAN
4  *******************************************************************************
5  * Read an MPEG2 stream, demultiplex and parse it before sending it to
6  * decoders.
7  ******************************************************************************/
8
9 /*******************************************************************************
10  * Preamble
11  *******************************************************************************/
12 #include "vlc.h"
13
14 /*
15 #include <errno.h>
16 #include <sys/uio.h>                                               
17 #include <string.h>
18
19 #include <X11/Xlib.h>
20 #include <X11/extensions/XShm.h>
21 #include <sys/soundcard.h>
22
23 #include <stdlib.h>                            
24 #include <stdio.h>
25 #include <sys/ioctl.h>                                            
26 #include <net/if.h>                                                
27 #include <netinet/in.h>
28
29 #include "common.h"
30 #include "config.h"
31 #include "mtime.h"
32 #include "vlc_thread.h"
33 #include "intf_msg.h"
34 #include "debug.h"
35
36 #include "input.h"
37 #include "input_psi.h"
38 #include "input_pcr.h"
39 #include "input_netlist.h"
40 #include "decoder_fifo.h"
41 #include "input_file.h"
42 #include "input_network.h"
43
44 #include "audio_output.h"
45 #include "audio_decoder.h"
46
47 #include "video.h"
48 #include "video_output.h"
49 #include "video_decoder.h"
50 */
51
52 /******************************************************************************
53  * Local prototypes
54  ******************************************************************************/
55 static void input_Thread( input_thread_t *p_input );
56 static void ErrorThread( input_thread_t *p_input );
57 static void EndThread( input_thread_t *p_input );
58 static __inline__ int input_ReadPacket( input_thread_t *p_input );
59 static __inline__ void input_SortPacket( input_thread_t *p_input,
60                                          ts_packet_t *ts_packet );
61 static __inline__ void input_DemuxTS( input_thread_t *p_input,
62                                       ts_packet_t *ts_packet,
63                                       es_descriptor_t *es_descriptor );
64 static __inline__ void input_DemuxPES( input_thread_t *p_input,
65                                        ts_packet_t *ts_packet,
66                                        es_descriptor_t *p_es_descriptor,
67                                        boolean_t b_unit_start, boolean_t b_packet_lost );
68 static __inline__ void input_DemuxPSI( input_thread_t *p_input,
69                                        ts_packet_t *ts_packet,
70                                        es_descriptor_t *p_es_descriptor,
71                                        boolean_t b_unit_start, boolean_t b_packet_lost );
72
73 /*******************************************************************************
74  * input_CreateThread: initialize and spawn an input thread
75  *******************************************************************************
76  * This function initializes and spawns an input thread. It returns NULL on
77  * failure. If you want a better understanding of the input thread, don't start
78  * by reading this function :-).
79  *******************************************************************************/
80 input_thread_t *input_CreateThread( input_cfg_t *p_cfg )
81 {
82     input_thread_t *    p_input;
83     int i_index;
84     
85     intf_DbgMsg("input debug 1-1: creating thread (cfg : %p)\n", p_cfg );
86
87     /* Allocate input_thread_t structure. */
88     if( !( p_input = (input_thread_t *)malloc(sizeof(input_thread_t)) ) )
89     {
90         intf_ErrMsg("input error: can't allocate input thread structure (%s)\n",
91                     strerror(errno));
92         return( NULL );
93     }
94     /* Init it */
95     bzero( p_input, sizeof(input_thread_t));
96     for( i_index = 0; i_index < INPUT_MAX_ES; i_index++ )
97     {
98         p_input->p_es[i_index].i_id = EMPTY_PID;
99     }
100
101     /* Find out which method we are gonna use and retrieve pointers. */
102     if( !((p_cfg->i_properties) & INPUT_CFG_METHOD) )
103     {
104         /* i_method is not set. */
105         intf_DbgMsg("input debug: using default method (%d)\n",
106                     INPUT_DEFAULT_METHOD);
107         p_cfg->i_method = INPUT_DEFAULT_METHOD;
108         p_cfg->i_properties |= INPUT_CFG_METHOD;
109     }
110     p_input->i_method = p_cfg->i_method;
111     switch( p_cfg->i_method )
112     {
113         /* File methods */
114         case INPUT_METHOD_TS_FILE:
115             p_input->p_open = &input_FileCreateMethod;
116             p_input->p_read = &input_FileRead;
117             p_input->p_clean = &input_FileDestroyMethod;
118             break;
119
120         /* Network methods */
121         case INPUT_METHOD_TS_UCAST:
122         case INPUT_METHOD_TS_MCAST:
123         case INPUT_METHOD_TS_BCAST:
124         case INPUT_METHOD_TS_VLAN_BCAST:
125             p_input->p_open = &input_NetworkCreateMethod;
126             p_input->p_read = &input_NetworkRead;
127             p_input->p_clean = &input_NetworkDestroyMethod;
128             break;
129
130         case INPUT_METHOD_NONE:
131         default:
132 #ifdef DEBUG
133             /* Internal error, which should never happen */
134             intf_DbgMsg("input debug: unknow method type %d\n",
135                             p_cfg->i_method);
136             return( NULL );
137 #endif
138             break;
139     }
140
141     /* Initialize PSI decoder. */
142     intf_DbgMsg("Initializing PSI decoder\n");
143     if( input_PsiInit( p_input ) == -1 )
144     {
145         free( p_input );
146         return( NULL );
147     }
148
149     /* Initialize PCR decoder. */
150     intf_DbgMsg("Initializing PCR decoder\n");
151     if( input_PcrInit( p_input ) == -1 )
152     {
153         input_PsiClean( p_input );
154         free( p_input );
155         return( NULL );
156     }
157
158     /* Initialize netlists. */
159     if( input_NetlistOpen( p_input ) )
160     {
161         input_PsiClean( p_input );
162         input_PcrClean( p_input );
163         free( p_input );
164         return( NULL );
165     }
166
167 #ifdef STATS
168     /* Initialize counters. */
169     p_input->c_bytes = 0;
170     p_input->c_payload_bytes = 0;
171     p_input->c_ts_packets_read = 0;
172     p_input->c_ts_packets_trashed = 0;
173 #ifdef DEBUG
174     p_input->c_loops = 0;
175 #endif
176 #endif
177
178     /* Let the appropriate method open the socket. */
179     if( (*(p_input->p_open))( p_input, p_cfg ) == -1 )
180     {
181         input_NetlistClean( p_input );
182         input_PsiClean( p_input );
183         input_PcrClean( p_input );
184         free( p_input );
185         return( NULL );
186     }
187
188     intf_DbgMsg("input debug: method %d properly initialized the socket\n",
189                 p_input->i_method);
190
191     /* Create thread and set locks. */
192     p_input->b_die = 0;
193     vlc_mutex_init( &p_input->netlist.lock );
194     vlc_mutex_init( &p_input->programs_lock );
195     vlc_mutex_init( &p_input->es_lock );
196 #ifdef NO_THREAD
197     input_Thread( p_input );
198 #else
199     if( vlc_thread_create(&p_input->thread_id, "input", (vlc_thread_func_t)input_Thread, 
200                        (void *) p_input) )
201     {
202         intf_ErrMsg("input error: can't spawn input thread (%s)\n", 
203                     strerror(errno) );
204         (*p_input->p_clean)( p_input );
205         input_NetlistClean( p_input );;
206         input_PsiClean( p_input );
207         input_PcrClean( p_input );
208         free( p_input );
209         return( NULL );
210     }
211 #endif
212
213     /* Default setting for new decoders */
214     p_input->p_aout = p_cfg->p_aout;
215
216     return( p_input );
217 }
218
219 /******************************************************************************
220  * input_DestroyThread: mark an input thread as zombie
221  ******************************************************************************
222  * This function should not return until the thread is effectively cancelled.
223  ******************************************************************************/
224 void input_DestroyThread( input_thread_t *p_input )
225 {
226     intf_DbgMsg("input debug: requesting termination of input thread\n");
227     p_input->b_die = 1;                          /* ask thread to kill itself */
228
229     /* Remove this as soon as the "status" flag is implemented */
230     vlc_thread_join( p_input->thread_id );            /* wait until it's done */
231 }
232
233 #if 0
234 /*******************************************************************************
235  * input_OpenAudioStream: open an audio stream
236  *******************************************************************************
237  * This function spawns an audio decoder and plugs it on the audio output
238  * thread.
239  *******************************************************************************/
240 int input_OpenAudioStream( input_thread_t *p_input, int i_id )
241 {
242     /* ?? */
243 }
244
245 /*******************************************************************************
246  * input_CloseAudioStream: close an audio stream
247  *******************************************************************************
248  * This function destroys an audio decoder.
249  *******************************************************************************/
250 void input_CloseAudioStream( input_thread_t *p_input, int i_id )
251 {
252     /* ?? */
253 }
254
255 /*******************************************************************************
256  * input_OpenVideoStream: open a video stream
257  *******************************************************************************
258  * This function spawns a video decoder and plugs it on a video output thread.
259  *******************************************************************************/
260 int input_OpenVideoStream( input_thread_t *p_input, 
261                            struct vout_thread_s *p_vout, struct video_cfg_s * p_cfg )
262 {
263     /* ?? */
264 }
265
266 /*******************************************************************************
267  * input_CloseVideoStream: close a video stream
268  *******************************************************************************
269  * This function destroys an video decoder.
270  *******************************************************************************/
271 void input_CloseVideoStream( input_thread_t *p_input, int i_id )
272 {
273     /* ?? */
274 }
275 #endif
276
277 /* following functions are local */
278
279 /*******************************************************************************
280  * input_Thread: input thread
281  *******************************************************************************
282  * Thread in charge of processing the network packets and demultiplexing.
283  *******************************************************************************/
284 static void input_Thread( input_thread_t *p_input )
285 {
286     intf_DbgMsg("input debug 11-1: thread %p is active\n", p_input);
287     while( !p_input->b_die && !p_input->b_error )
288     {
289         /* Scatter read the UDP packet from the network or the file. */
290         if( (input_ReadPacket( p_input )) == (-1) )
291         {
292             /* ??? Normally, a thread can't kill itself, but we don't have
293              * any method in case of an error condition ... */
294             p_input->b_error = 1;
295         }
296
297 #ifdef STATS
298         p_input->c_loops++;
299 #endif
300     }
301
302     if( p_input->b_error )
303     {
304         ErrorThread( p_input );
305     }
306
307     /* Ohoh, we have to die as soon as possible. */
308     EndThread( p_input );
309
310     intf_DbgMsg("input debug: thread %p destroyed\n", p_input);
311     vlc_thread_exit();
312 }
313
314
315 /******************************************************************************
316  * ErrorThread: RunThread() error loop
317  ******************************************************************************/
318 static void ErrorThread( input_thread_t *p_input )
319 {
320     while( !p_input->b_die )
321     {
322         msleep( INPUT_IDLE_SLEEP );
323     }
324 }
325
326 /*******************************************************************************
327  * EndThread: end the input thread
328  *******************************************************************************/
329 static void EndThread( input_thread_t * p_input )
330 {
331     int i_es_loop;
332
333     (*p_input->p_clean)( p_input );           /* close input method */
334
335     /* Destroy all decoder threads. */
336     for( i_es_loop = 0; i_es_loop < INPUT_MAX_ES; i_es_loop++ )
337     {
338         if( p_input->pp_selected_es[i_es_loop] )
339         {
340             switch( p_input->pp_selected_es[i_es_loop]->i_type )
341             {
342                 case MPEG1_VIDEO_ES:
343                 case MPEG2_VIDEO_ES:
344                     vdec_DestroyThread( (vdec_thread_t*)(p_input->pp_selected_es[i_es_loop]->p_dec) /*, NULL */ );
345                     break;
346
347                 case MPEG1_AUDIO_ES:
348                 case MPEG2_AUDIO_ES:
349                     adec_DestroyThread( (adec_thread_t*)(p_input->pp_selected_es[i_es_loop]->p_dec) );
350                     break;
351
352                 case AC3_AUDIO_ES:
353                     ac3dec_DestroyThread( (ac3dec_thread_t *)(p_input->pp_selected_es[i_es_loop]->p_dec) );
354                     break;
355
356                 default:
357                     break;
358             }
359         }
360         else
361         {
362             /* pp_selected_es should not contain any hole. */
363             break;
364         }
365     }
366
367     input_NetlistClean( p_input );                           /* clean netlist */
368     input_PsiClean( p_input );                       /* clean PSI information */
369     input_PcrClean( p_input );                       /* clean PCR information */
370     free( p_input );                           /* free input_thread structure */
371
372     intf_DbgMsg("input debug: EndThread(%p)\n", p_input);
373 }
374
375 /*******************************************************************************
376  * input_ReadPacket: reads a packet from the network or the file
377  *******************************************************************************/
378 static __inline__ int input_ReadPacket( input_thread_t *p_input )
379 {
380     int                 i_base_index; /* index of the first free iovec */
381     int                 i_current_index;
382     int                 i_packet_size;
383 #ifdef INPUT_LIFO_TS_NETLIST
384     int                 i_meanwhile_released;
385     int                 i_currently_removed;
386 #endif
387     ts_packet_t *       p_ts_packet;
388
389     /* In this function, we only care about the TS netlist. PES netlist
390      * is for the demultiplexer. */
391 #ifdef INPUT_LIFO_TS_NETLIST
392     i_base_index = p_input->netlist.i_ts_index;
393
394     /* Verify that we still have packets in the TS netlist */
395     if( (INPUT_MAX_TS + INPUT_TS_READ_ONCE - 1 - p_input->netlist.i_ts_index) <= INPUT_TS_READ_ONCE )
396     {
397         intf_ErrMsg("input error: TS netlist is empty !\n");
398         return( -1 );
399     }
400
401 #else /* FIFO netlist */
402     i_base_index = p_input->netlist.i_ts_start;
403     if( p_input->netlist.i_ts_start + INPUT_TS_READ_ONCE -1 > INPUT_MAX_TS )
404     {
405         /* The netlist is splitted in 2 parts. We must gather them to consolidate
406            the FIFO (we make the loop easily in having the same iovec at the far
407            end and in the beginning of netlist_free).
408            That's why the netlist is (INPUT_MAX_TS +1) + (INPUT_TS_READ_ONCE -1)
409            large. */
410         memcpy( p_input->netlist.p_ts_free + INPUT_MAX_TS + 1,
411                 p_input->netlist.p_ts_free,
412                 (p_input->netlist.i_ts_start + INPUT_TS_READ_ONCE - 1 - INPUT_MAX_TS)
413                   * sizeof(struct iovec) );
414     }
415
416     /* Verify that we still have packets in the TS netlist */
417     if( ((p_input->netlist.i_ts_end -1 - p_input->netlist.i_ts_start) & INPUT_MAX_TS) <= INPUT_TS_READ_ONCE )
418     {
419         intf_ErrMsg("input error: TS netlist is empty !\n");
420         return( -1 );
421     }
422 #endif /* FIFO netlist */
423
424     /* Scatter read the buffer. */
425     i_packet_size = (*p_input->p_read)( p_input,
426                            &p_input->netlist.p_ts_free[i_base_index],
427                            INPUT_TS_READ_ONCE );
428     if( i_packet_size == (-1) )
429     {
430 //      intf_DbgMsg("Read packet %d %p %d %d\n", i_base_index,
431 //                      &p_input->netlist.p_ts_free[i_base_index],
432 //                      p_input->netlist.i_ts_start,
433 //                      p_input->netlist.i_ts_end);
434         intf_ErrMsg("input error: readv() failed (%s)\n", strerror(errno));
435         return( -1 );
436     }
437
438     if( i_packet_size == 0 )
439     {
440         /* No packet has been received, so stop here. */
441         return( 0 );
442     }
443      
444     /* Demultiplex the TS packets (1..INPUT_TS_READ_ONCE) received. */
445     for( i_current_index = i_base_index;
446          (i_packet_size -= TS_PACKET_SIZE) >= 0;
447          i_current_index++ )
448     {
449         /* BTW, something REALLY bad could happen if we receive packets with
450            a wrong size. */
451         p_ts_packet = (ts_packet_t*)(p_input->netlist.p_ts_free[i_current_index].iov_base);
452         /* Don't cry :-), we are allowed to do that cast, because initially,
453            our buffer was malloc'ed with sizeof(ts_packet_t) */
454
455         /* Find out if we need this packet and demultiplex. */
456         input_SortPacket( p_input /* for current PIDs and netlist */,
457                           p_ts_packet);
458     }
459
460     if( i_packet_size > 0 )
461     {
462         intf_ErrMsg("input error: wrong size\n");
463         return( -1 );
464     }
465
466     /* Remove the TS packets we have just filled from the netlist */
467 #ifdef INPUT_LIFO_TS_NETLIST
468     /* We need to take a lock here while we're calculating index positions. */
469     vlc_mutex_lock( &p_input->netlist.lock );
470
471     i_meanwhile_released = i_base_index - p_input->netlist.i_ts_index;
472     if( i_meanwhile_released )
473     {
474         /* That's where it becomes funny :-). Since we didn't take locks for
475            efficiency reasons, other threads (including ourselves, with
476            input_DemuxPacket) might have released packets to the netlist.
477            So we have to copy these iovec where they should go.
478            
479            BTW, that explains why the TS netlist is
480            (INPUT_MAX_TS +1) + (TS_READ_ONCE -1) large. */
481
482         i_currently_removed = i_current_index - i_base_index;
483         if( i_meanwhile_released < i_currently_removed )
484         {
485             /* Copy all iovecs in that case */
486             memcpy( &p_input->netlist.p_ts_free[p_input->netlist.i_ts_index]
487                      + i_currently_removed,
488                     &p_input->netlist.p_ts_free[p_input->netlist.i_ts_index],
489                     i_meanwhile_released * sizeof(struct iovec) );
490         }
491         else
492         {
493             /* We have fewer places than items, so we only move
494                i_currently_removed of them. */
495             memcpy( &p_input->netlist.p_ts_free[i_base_index],
496                     &p_input->netlist.p_ts_free[p_input->netlist.i_ts_index],
497                     i_currently_removed * sizeof(struct iovec) );
498         }
499
500         /* Update i_netlist_index with the information gathered above. */
501         p_input->netlist.i_ts_index += i_currently_removed;
502     }
503     else
504     {
505         /* Nothing happened. */
506         p_input->netlist.i_ts_index = i_current_index;
507     }
508
509     vlc_mutex_unlock( &p_input->netlist.lock );
510
511 #else /* FIFO netlist */
512     /* & is modulo ; that's where we make the loop. */
513     p_input->netlist.i_ts_start = i_current_index & INPUT_MAX_TS;
514 #endif
515
516 #ifdef STATS
517     p_input->c_ts_packets_read += i_current_index - i_base_index;
518     p_input->c_bytes += (i_current_index - i_base_index) * TS_PACKET_SIZE;
519 #endif
520         return( 0 );
521 }
522
523 /*******************************************************************************
524  * input_SortPacket: find out whether we need that packet
525  *******************************************************************************/
526 static __inline__ void input_SortPacket( input_thread_t *p_input,
527                                          ts_packet_t *p_ts_packet )
528 {
529     int             i_current_pid;
530     int             i_es_loop;
531
532     /* Verify that sync_byte, error_indicator and scrambling_control are
533        what we expected. */
534     if( !(p_ts_packet->buffer[0] == 0x47) || (p_ts_packet->buffer[1] & 0x80) ||
535         (p_ts_packet->buffer[3] & 0xc0) )
536     {
537         intf_DbgMsg("input debug: invalid TS header (%p)\n", p_ts_packet);
538     }
539     else
540     {
541         /* Get the PID of the packet. Note that ntohs is needed, for endianness
542            purposes (see man page). */
543         i_current_pid = U16_AT(&p_ts_packet->buffer[1]) & 0x1fff;
544
545 //      intf_DbgMsg("input debug: pid %d received (%p)\n",
546 //                    i_current_pid, p_ts_packet);
547
548         /* Lock current ES state. */
549         vlc_mutex_lock( &p_input->es_lock );
550         
551         /* Verify that we actually want this PID. */
552         for( i_es_loop = 0; i_es_loop < INPUT_MAX_SELECTED_ES; i_es_loop++ )
553         {
554             if( p_input->pp_selected_es[i_es_loop] != NULL)
555             {
556                 if( (*p_input->pp_selected_es[i_es_loop]).i_id
557                      == i_current_pid )
558                 {
559                     /* Don't need the lock anymore, since the value pointed
560                        out by p_input->pp_selected_es[i_es_loop] can only be
561                        modified from inside the input_thread (by the PSI
562                        decoder): interface thread is only allowed to modify
563                        the pp_selected_es table */
564                     vlc_mutex_unlock( &p_input->es_lock );
565
566                     /* We're interested. Pass it to the demultiplexer. */
567                     input_DemuxTS( p_input, p_ts_packet,
568                                    p_input->pp_selected_es[i_es_loop] );
569                     return;
570                 }
571             }
572             else
573             {
574                 /* pp_selected_es should not contain any hole. */
575                 break;
576             }
577         }
578         vlc_mutex_unlock( &p_input->es_lock );
579     }
580
581     /* We weren't interested in receiving this packet. Give it back to the
582        netlist. */
583 //    intf_DbgMsg("SortPacket: freeing unwanted TS %p (pid %d)\n", p_ts_packet,
584 //                     U16_AT(&p_ts_packet->buffer[1]) & 0x1fff);
585     input_NetlistFreeTS( p_input, p_ts_packet );
586 #ifdef STATS
587     p_input->c_ts_packets_trashed++;
588 #endif
589 }
590
591 /*******************************************************************************
592  * input_DemuxTS: first step of demultiplexing: the TS header
593  *******************************************************************************
594  * Stream must also only contain PES and PSI, so PID must have been filtered
595  *******************************************************************************/
596 static __inline__ void input_DemuxTS( input_thread_t *p_input,
597                                       ts_packet_t *p_ts_packet,
598                                       es_descriptor_t *p_es_descriptor )
599 {
600     int         i_dummy;
601     boolean_t   b_adaption;                       /* Adaption field is present */
602     boolean_t   b_payload;                           /* Packet carries payload */
603     boolean_t   b_unit_start;            /* A PSI or a PES start in the packet */
604     boolean_t   b_trash = 0;                   /* Must the packet be trashed ? */
605     boolean_t   b_lost = 0;                      /* Was there a packet lost ? */
606
607     ASSERT(p_input);
608     ASSERT(p_ts_packet);
609     ASSERT(p_es_descriptor);
610
611 #define p (p_ts_packet->buffer)
612
613 //    intf_DbgMsg("input debug: TS-demultiplexing packet %p, pid %d, number %d\n",
614 //                p_ts_packet, U16_AT(&p[1]) & 0x1fff, p[3] & 0x0f);
615
616 #ifdef STATS
617     p_es_descriptor->c_packets++;
618     p_es_descriptor->c_bytes += TS_PACKET_SIZE;
619 #endif
620
621     /* Extract flags values from TS common header. */
622     b_unit_start = (p[1] & 0x40);
623     b_adaption = (p[3] & 0x20);
624     b_payload = (p[3] & 0x10);
625     
626     /* Extract adaption field informations if any */
627     if( !b_adaption )
628     {
629         /* We don't have any adaptation_field, so payload start immediately
630          after the 4 byte TS header */
631         p_ts_packet->i_payload_start = 4;
632     }
633     else
634     {
635         /* p[4] is adaptation_field_length minus one */
636         p_ts_packet->i_payload_start = 5 + p[4];
637
638         /* The adaption field can be limited to the adaptation_field_length byte,
639            so that there is nothing to do: skip this possibility */
640         if( p[4] )
641         {
642             /* If the packet has both adaptation_field and payload, adaptation_field
643                cannot be more than 182 bytes long; if there is only an
644                adaptation_field, it must fill the next 183 bytes. */
645             if( b_payload ? (p[4] > 182) : (p[4] != 183) )
646             {
647                 intf_DbgMsg("input debug: invalid TS adaptation field (%p)\n",
648                             p_ts_packet);
649 #ifdef STATS
650                 p_es_descriptor->c_invalid_packets++;
651 #endif
652                 b_trash = 1;
653             }
654
655             /* No we are sure that the byte containing flags is present: read it */
656             else
657             {
658                 /* discontinuity_indicator */
659                 if( p[5] & 0x80 )
660                 {
661                     intf_DbgMsg("discontinuity_indicator encountered by TS demux " \
662                                 "(position read: %d, saved: %d)\n", p[5] & 0x80,
663                                 p_es_descriptor->i_continuity_counter);
664
665                     /* If the PID carries the PCR, there will be a system time-base
666                        discontinuity. We let the PCR decoder handle that. */
667                     p_es_descriptor->b_discontinuity = 1;
668                     
669                     /* There also may be a continuity_counter discontinuity:
670                        resynchronise our counter with the one of the stream */
671                     p_es_descriptor->i_continuity_counter = (p[3] & 0x0f) - 1;
672                 }
673
674                 /* random_access_indicator */
675                 p_es_descriptor->b_random |= p[5] & 0x40;
676
677                 /* If this is a PCR_PID, and this TS packet contains a PCR,
678                    we pass it along to the PCR decoder. */
679                 if( (p_es_descriptor->b_pcr) && (p[5] & 0x10) )
680                 {
681                     /* There should be a PCR field in the packet, check if the
682                        adaption field is long enough to carry it */
683                     if( p[4] >= 7 )
684                     {
685                         /* Call the PCR decoder */
686                         input_PcrDecode( p_input, p_es_descriptor, &p[6] );
687                     }
688                 }
689             }
690         }
691     }
692
693     /* Check the continuity of the stream. */
694     i_dummy = ((p[3] & 0x0f) - p_es_descriptor->i_continuity_counter) & 0x0f;
695     if( i_dummy == 1 )
696     {
697         /* Everything is ok, just increase our counter */
698         p_es_descriptor->i_continuity_counter++;
699     }
700     else
701     {
702         if( !b_payload && i_dummy == 0 )
703         {
704             /* This is a packet without payload, this is allowed by the draft
705                As there is nothing interessant in this packet (except PCR that
706                have already been handled), we can trash the packet. */
707             intf_DbgMsg("Packet without payload received by TS demux\n");
708             b_trash = 1;
709         }
710         else if( i_dummy <= 0 )
711         {
712             /* Duplicate packet: mark it as being to be trashed. */
713             intf_DbgMsg("Duplicate packet received by TS demux\n");
714             b_trash = 1;
715         }
716         else if( p_es_descriptor->i_continuity_counter == 0xFF )
717         {
718             /* This means that the packet is the first one we receive for this
719                ES since the continuity counter ranges between 0 and 0x0F
720                excepts when it has been initialized by the input: Init the 
721                counter to the correct value. */
722             intf_DbgMsg("First packet for PID %d received by TS demux\n",
723                         p_es_descriptor->i_id);
724             p_es_descriptor->i_continuity_counter = (p[3] & 0x0f);
725         }
726         else
727         {
728             /* This can indicate that we missed a packet or that the
729                continuity_counter wrapped and we received a dup packet: as we
730                don't know, do as if we missed a packet to be sure to recover
731                from this situation */
732             intf_DbgMsg("Packet lost by TS demux: current %d, packet %d\n",
733                         p_es_descriptor->i_continuity_counter & 0x0f,
734                         p[3] & 0x0f);
735             b_lost = 1;
736             p_es_descriptor->i_continuity_counter = p[3] & 0x0f;
737         }
738     }
739
740     /* Trash the packet if it has no payload or if it is bad */
741     if( b_trash )
742     {
743         input_NetlistFreeTS( p_input, p_ts_packet );
744 #ifdef STATS
745         p_input->c_ts_packets_trashed++;
746 #endif
747     }
748     else
749     {
750         if( p_es_descriptor->b_psi )
751         {
752             /* The payload contains PSI tables */
753             input_DemuxPSI( p_input, p_ts_packet, p_es_descriptor,
754                             b_unit_start, b_lost );
755         }
756         else
757         {
758             /* The payload carries a PES stream */ 
759             input_DemuxPES( p_input, p_ts_packet, p_es_descriptor,
760                             b_unit_start, b_lost );
761         }
762     }
763
764 #undef p
765 }
766
767
768
769
770 /*******************************************************************************
771  * input_DemuxPES: 
772  *******************************************************************************
773  * Gather a PES packet and analyzes its header.
774  *******************************************************************************/
775 static __inline__ void input_DemuxPES( input_thread_t *p_input,
776                                        ts_packet_t *p_ts_packet,
777                                        es_descriptor_t *p_es_descriptor,
778                                        boolean_t b_unit_start,
779                                        boolean_t b_packet_lost )
780 {
781     decoder_fifo_t *            p_fifo;
782     u8                          i_pes_header_size;
783     int                         i_dummy;
784     pes_packet_t*               p_last_pes;
785     ts_packet_t *               p_ts;
786     int                         i_ts_payload_size;
787     
788
789 #define p_pes (p_es_descriptor->p_pes_packet)
790
791     ASSERT(p_input);
792     ASSERT(p_ts_packet);
793     ASSERT(p_es_descriptor);
794
795 //    intf_DbgMsg("PES-demultiplexing %p (%p)\n", p_ts_packet, p_pes);
796
797     /* If we lost data, discard the PES packet we are trying to reassemble
798        if any and wait for the beginning of a new one in order to synchronise
799        again */
800     if( b_packet_lost && p_pes != NULL )
801     {
802         intf_DbgMsg("PES %p trashed because of packet lost\n", p_pes);
803         input_NetlistFreePES( p_input, p_pes );
804         p_pes = NULL;
805     }
806
807     /* If the TS packet contains the begining of a new PES packet, and if we
808        were reassembling a PES packet, then the PES should be complete now,
809        so parse its header and give it to the decoders */
810     if( b_unit_start && p_pes != NULL )
811     {
812 //        intf_DbgMsg("End of PES packet %p\n", p_pes);
813
814         /* Parse the header. The header has a variable length, but in order 
815            to improve the algorithm, we will read the 14 bytes we may be
816            interested in */
817         p_ts = p_pes->p_first_ts;
818         i_ts_payload_size = p_ts->i_payload_end - p_ts->i_payload_start;
819         i_dummy = 0;
820
821         if(i_ts_payload_size >= PES_HEADER_SIZE)
822         {
823             /* This part of the header entirely fits in the payload of   
824                the first TS packet */
825             p_pes->p_pes_header = &(p_ts->buffer[p_ts->i_payload_start]);
826         }
827         else
828         {
829             /* This part of the header does not fit in the current TS packet:
830                copy the part of the header we are interested in to the
831                p_pes_header_save buffer. The buffer is dynamicly allocated if
832                needed so it's time expensive but this situation almost never
833                occur. */
834             intf_DbgMsg("Code never tested encountered, WARNING ! (benny)\n");
835             if( !p_pes->p_pes_header_save )
836                 p_pes->p_pes_header_save = malloc(PES_HEADER_SIZE); 
837
838             do
839             {
840                 memcpy(p_pes->p_pes_header_save + i_dummy,
841                        &p_ts->buffer[p_ts->i_payload_start], i_ts_payload_size);
842                 i_dummy += i_ts_payload_size;
843             
844                 p_ts = p_ts->p_next_ts;
845                 if(!p_ts)
846                 {
847                   /* The payload of the PES packet is shorter than the 14 bytes
848                      we would read. This means that high packet lost occured
849                      so the PES won't be usefull for any decoder. Moreover,
850                      this should never happen so we can trash the packet and
851                      exit roughly without regrets */
852                   intf_DbgMsg("PES packet too short: trashed\n");
853                   input_NetlistFreePES( p_input, p_pes );
854                   p_pes = NULL;
855                   /* Stats ?? */
856                   return;
857                 }
858                 
859                 i_ts_payload_size = p_ts->i_payload_end - p_ts->i_payload_start;
860             }
861             while(i_ts_payload_size + i_dummy < PES_HEADER_SIZE);
862
863             /* This last TS packet is partly header, partly payload, so just
864                copy the header part */
865             memcpy(p_pes->p_pes_header_save + i_dummy,
866                    &p_ts->buffer[p_ts->i_payload_start],
867                    PES_HEADER_SIZE - i_dummy);
868
869             /* The header must be read in the buffer not in any TS packet */
870            p_pes->p_pes_header = p_pes->p_pes_header_save;
871         }
872         
873         /* Now we have the part of the PES header we were interested in:
874            parse it */
875
876         /* First read the 6 header bytes common to all PES packets:
877            use them to test the PES validity */
878         if( (p_pes->p_pes_header[0] || p_pes->p_pes_header[1] ||
879             (p_pes->p_pes_header[2] != 1)) ||
880                                      /* packet_start_code_prefix != 0x000001 */
881             ((i_dummy = U16_AT(p_pes->p_pes_header + 4)) &&
882              (i_dummy + 6 != p_pes->i_pes_size)) )
883                    /* PES_packet_length is set and != total received payload */
884         {
885           /* Trash the packet and set p_pes to NULL to be sure the next PES
886              packet will have its b_data_lost flag set */
887           intf_DbgMsg("Corrupted PES packet received: trashed\n");
888           input_NetlistFreePES( p_input, p_pes );
889           p_pes = NULL;
890           /* Stats ?? */
891         }
892         else
893         {
894             /* The PES packet is valid. Check its type to test if it may
895                carry additional informations in a header extension */
896             p_pes->i_stream_id =  p_pes->p_pes_header[3];
897
898             switch( p_pes->i_stream_id )
899             {
900             case 0xBE:  /* Padding */
901             case 0xBC:  /* Program stream map */
902             case 0xBF:  /* Private stream 2 */
903             case 0xB0:  /* ECM */
904             case 0xB1:  /* EMM */
905             case 0xFF:  /* Program stream directory */
906             case 0xF2:  /* DSMCC stream */
907             case 0xF8:  /* ITU-T H.222.1 type E stream */
908                 /* The payload begins immediatly after the 6 bytes header, so
909                    we have finished with the parsing */
910                 i_pes_header_size = 6;
911                 break;
912
913             default:
914                 /* The PES header contains at least 3 more bytes: parse them */
915                 p_pes->b_data_alignment = p_pes->p_pes_header[6] & 0x04;
916                 p_pes->b_has_pts = p_pes->p_pes_header[7] & 0x80;
917                 i_pes_header_size = p_pes->p_pes_header[8]
918                         + (p_es_descriptor->i_type == AC3_AUDIO_ES) ? 13 : 9;
919
920                 /* Now parse the optional header extensions (in the limit of
921                    the 14 bytes */
922                 if( p_pes->b_has_pts )
923                 {
924                     pcr_descriptor_t * p_pcr;
925
926                     p_pcr = p_input->p_pcr;
927                     
928                     p_pes->i_pts = 
929                         ( ((mtime_t)(p_pes->p_pes_header[9] & 0x0E) << 29) |
930                           (((mtime_t)U16_AT(p_pes->p_pes_header + 10) << 14) - (1 << 14)) |
931                           ((mtime_t)U16_AT(p_pes->p_pes_header + 12) >> 1) ) * 300;
932                     p_pes->i_pts /= 27;
933                     
934                     if( p_pcr->i_synchro_state )
935                     {
936                         switch( p_pcr->i_synchro_state )
937                         {
938                             case SYNCHRO_NOT_STARTED:
939                                 p_pes->b_has_pts = 0;
940                                 break;
941
942                             case SYNCHRO_START:
943                                 p_pes->i_pts += p_pcr->delta_pcr;
944                                 p_pcr->delta_absolute = mdate() - p_pes->i_pts + 500000;
945                                 p_pes->i_pts += p_pcr->delta_absolute;
946                                 p_pcr->i_synchro_state = 0;
947                                 break;
948
949                             case SYNCHRO_REINIT: /* We skip a PES */
950                                 p_pes->b_has_pts = 0;
951                                 p_pcr->i_synchro_state = SYNCHRO_START;
952                                 break;
953                         }
954                     }
955                     else
956                     {
957                         p_pes->i_pts += p_pcr->delta_pcr + p_pcr->delta_absolute;
958                     }
959                 }
960                 break;
961             }
962
963             /* Now we've parsed the header, we just have to indicate in some
964                specific TS packets where the PES payload begins (renumber
965                i_payload_start), so that the decoders can find the beginning
966                of their data right out of the box. */
967             p_ts = p_pes->p_first_ts;
968             i_ts_payload_size = p_ts->i_payload_end - p_ts->i_payload_start;
969             while( i_pes_header_size > i_ts_payload_size )
970             {
971                 /* These packets are entirely filled by the PES header. */
972                 i_pes_header_size -= i_ts_payload_size;
973                 p_ts->i_payload_start = p_ts->i_payload_end;
974                 /* Go to the next TS packet: here we won't have to test it is
975                    not NULL because we trash the PES packets when packet lost
976                    occurs */
977                 p_ts = p_ts->p_next_ts;
978                 i_ts_payload_size = p_ts->i_payload_end - p_ts->i_payload_start;
979             }
980             /* This last packet is partly header, partly payload. */
981             p_ts->i_payload_start += i_pes_header_size;
982
983             
984             /* Now we can eventually put the PES packet in the decoder's
985                PES fifo */
986             switch( p_es_descriptor->i_type )
987             {
988                 case MPEG1_VIDEO_ES:
989                 case MPEG2_VIDEO_ES:
990                     p_fifo = &(((vdec_thread_t*)(p_es_descriptor->p_dec))->fifo);
991                     break;
992
993                 case MPEG1_AUDIO_ES:
994                 case MPEG2_AUDIO_ES:
995                     p_fifo = &(((adec_thread_t*)(p_es_descriptor->p_dec))->fifo);
996                     break;
997
998                 case AC3_AUDIO_ES:
999                     p_fifo = &(((ac3dec_thread_t *)(p_es_descriptor->p_dec))->fifo);
1000                     break;
1001
1002                 default:
1003                     /* This should never happen */
1004                     intf_DbgMsg("Unknown stream type (%d, %d): PES trashed\n",
1005                         p_es_descriptor->i_id, p_es_descriptor->i_type);
1006                     p_fifo = NULL;
1007                     break;
1008             }
1009
1010             if( p_fifo != NULL )
1011             {
1012                 vlc_mutex_lock( &p_fifo->data_lock );
1013                 if( DECODER_FIFO_ISFULL( *p_fifo ) )
1014                 {
1015                     /* The FIFO is full !!! This should not happen. */
1016 #ifdef STATS
1017                     p_input->c_ts_packets_trashed += p_pes->i_ts_packets;
1018                     p_es_descriptor->c_invalid_packets += p_pes->i_ts_packets;
1019 #endif
1020                     input_NetlistFreePES( p_input, p_pes );
1021                     intf_DbgMsg("PES trashed - fifo full ! (%d, %d)\n",
1022                                p_es_descriptor->i_id, p_es_descriptor->i_type);
1023                 }
1024                 else
1025                 {
1026 //                    intf_DbgMsg("Putting %p into fifo %p/%d\n",
1027 //                                p_pes, p_fifo, p_fifo->i_end);
1028                     p_fifo->buffer[p_fifo->i_end] = p_pes;
1029                     DECODER_FIFO_INCEND( *p_fifo );
1030
1031                     /* Warn the decoder that it's got work to do. */
1032                     vlc_cond_signal( &p_fifo->data_wait );
1033                 }
1034                 vlc_mutex_unlock( &p_fifo->data_lock );
1035             }
1036             else
1037             {
1038                 intf_DbgMsg("No fifo to receive PES %p: trash\n", p_pes);
1039 #ifdef STATS
1040                 p_input->c_ts_packets_trashed += p_pes->i_ts_packets;
1041                 p_es_descriptor->c_invalid_packets += p_pes->i_ts_packets;
1042 #endif
1043                 input_NetlistFreePES( p_input, p_pes );
1044             }
1045         }
1046     }
1047
1048
1049     /* If we are at the beginning of a new PES packet, we must fetch a new
1050        PES buffer to begin with the reassembly of this PES packet. This is
1051        also here that we can synchronise with the stream if we we lost
1052        packets or if the decoder has just started */ 
1053     if( b_unit_start )
1054     {
1055         p_last_pes = p_pes;
1056
1057         /* Get a new one PES from the PES netlist. */
1058         if( (p_pes = input_NetlistGetPES( p_input )) == (NULL) )
1059         {
1060             /* PES netlist is empty ! */
1061             p_input->b_error = 1;
1062         }
1063         else
1064         {
1065 //           intf_DbgMsg("New PES packet %p (first TS: %p)\n", p_pes, p_ts_packet);
1066
1067             /* Init the PES fields so that the first TS packet could be correctly
1068                added to the PES packet (see below) */
1069             p_pes->p_first_ts = p_ts_packet;
1070             p_pes->p_last_ts = NULL;
1071
1072             /* If the last pes packet was null, this means that the synchronisation
1073                was lost and so warn the decoder that he will have to find a way to
1074                recover */
1075             if( !p_last_pes )
1076                 p_pes->b_data_loss = 1;
1077
1078             /* Read the b_random_access flag status and then reinit it */     
1079             p_pes->b_random_access = p_es_descriptor->b_random;
1080             p_es_descriptor->b_random = 0;
1081         }
1082     }
1083
1084
1085     /* If we are synchronised with the stream, and so if we are ready to
1086        receive correctly the data, add the TS packet to the current PES
1087        packet */
1088     if( p_pes != NULL )
1089     {
1090 //      intf_DbgMsg("Adding TS %p to PES %p\n", p_ts_packet, p_pes);
1091
1092         /* Size of the payload carried in the TS packet */
1093         i_ts_payload_size = p_ts_packet->i_payload_end -
1094                             p_ts_packet->i_payload_start;
1095
1096         /* Update the relations between the TS packets */
1097         p_ts_packet->p_prev_ts = p_pes->p_last_ts;
1098         p_ts_packet->p_next_ts = NULL;
1099         if( p_pes->i_ts_packets != 0 )
1100         {
1101             /* Regarder si il serait pas plus efficace de ne creer que les liens
1102                precedent->suivant pour le moment, et les liens suivant->precedent
1103                quand le paquet est termine */
1104             /* Otherwise it is the first TS packet. */
1105             p_pes->p_last_ts->p_next_ts = p_ts_packet;
1106         }
1107         /* Now add the TS to the PES packet */
1108         p_pes->p_last_ts = p_ts_packet;
1109         p_pes->i_ts_packets++;
1110         p_pes->i_pes_size += i_ts_payload_size;
1111
1112         /* Stats */
1113 #ifdef STATS
1114         i_dummy = p_ts_packet->i_payload_end - p_ts_packet->i_payload_start;
1115         p_es_descriptor->c_payload_bytes += i_dummy;
1116 #endif
1117     }
1118     else
1119     {
1120         /* Since we don't use the TS packet to build a PES packet, we don't
1121            need it anymore, so give it back to the netlist */
1122 //        intf_DbgMsg("Trashing TS %p: no PES being build\n", p_ts_packet);
1123         input_NetlistFreeTS( p_input, p_ts_packet );     
1124     }
1125     
1126 #undef p_pes
1127 }
1128
1129
1130
1131
1132 /*******************************************************************************
1133  * input_DemuxPSI:
1134  *******************************************************************************
1135  * Notice that current ES state has been locked by input_SortPacket. (No more true,
1136  * changed by benny - See if it's ok, and definitely change the code ???????? )
1137  *******************************************************************************/
1138 static __inline__ void input_DemuxPSI( input_thread_t *p_input,
1139                                        ts_packet_t *p_ts_packet,
1140                                        es_descriptor_t *p_es_descriptor,
1141                                        boolean_t b_unit_start, boolean_t b_packet_lost )
1142 {
1143     int i_data_offset;      /* Offset of the interesting data in the TS packet */
1144     u16 i_data_length;                                 /* Length of those data */
1145     //boolean_t b_first_section; /* Was there another section in the TS packet ? */
1146     
1147     ASSERT(p_input);
1148     ASSERT(p_ts_packet);
1149     ASSERT(p_es_descriptor);
1150
1151 #define p_psi (p_es_descriptor->p_psi_section)
1152
1153 //    intf_DbgMsg( "input debug: PSI demultiplexing %p (%p)\n", p_ts_packet, p_input);
1154
1155 //    intf_DbgMsg( "Packet: %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x (unit start: %d)\n", p_ts_packet->buffer[p_ts_packet->i_payload_start], p_ts_packet->buffer[p_ts_packet->i_payload_start+1], p_ts_packet->buffer[p_ts_packet->i_payload_start+2], p_ts_packet->buffer[p_ts_packet->i_payload_start+3], p_ts_packet->buffer[p_ts_packet->i_payload_start+4], p_ts_packet->buffer[p_ts_packet->i_payload_start+5], p_ts_packet->buffer[p_ts_packet->i_payload_start+6], p_ts_packet->buffer[p_ts_packet->i_payload_start+7], p_ts_packet->buffer[p_ts_packet->i_payload_start+8], p_ts_packet->buffer[p_ts_packet->i_payload_start+9], p_ts_packet->buffer[p_ts_packet->i_payload_start+10], p_ts_packet->buffer[p_ts_packet->i_payload_start+11], p_ts_packet->buffer[p_ts_packet->i_payload_start+12], p_ts_packet->buffer[p_ts_packet->i_payload_start+13], p_ts_packet->buffer[p_ts_packet->i_payload_start+14], p_ts_packet->buffer[p_ts_packet->i_payload_start+15], p_ts_packet->buffer[p_ts_packet->i_payload_start+16], p_ts_packet->buffer[p_ts_packet->i_payload_start+17], p_ts_packet->buffer[p_ts_packet->i_payload_start+18], p_ts_packet->buffer[p_ts_packet->i_payload_start+19], p_ts_packet->buffer[p_ts_packet->i_payload_start+20], b_unit_start);
1156
1157
1158     /* Try to find the beginning of the payload in the packet to initialise
1159        the do-while loop that follows -> Compute the i_data_offset variable:
1160        by default, the value is set so that we won't enter in the while loop.
1161        It will be set to a correct value if the data are not corrupted */
1162     i_data_offset = TS_PACKET_SIZE;
1163
1164     /* Has the reassembly of a section already began in a previous packet ? */
1165     if( p_psi->b_running_section )
1166     {
1167         /* Was data lost since the last TS packet ? */
1168         if( b_packet_lost )
1169         {
1170             /* Discard the packet and wait for the begining of a new one to resynch */
1171             p_psi->b_running_section = 0;
1172             p_psi->i_current_position = 0;
1173             intf_DbgMsg( "PSI section(s) discarded due to packet loss\n" );
1174         }
1175         else
1176         {
1177             /* The data that complete a previously began section are always at
1178                the beginning of the TS payload... */
1179             i_data_offset = p_ts_packet->i_payload_start;
1180             /* ...Unless there is a pointer field, that we have to bypass */
1181             if( b_unit_start )
1182                 i_data_offset++;
1183 //            intf_DbgMsg( "New part of the section received at offset %d\n", i_data_offset );
1184         }
1185     }
1186     /* We are looking for the beginning of a new section */
1187     else
1188     {
1189         if( b_unit_start )
1190         {
1191             /* Get the offset at which the data for that section can be found
1192                The offset is stored in the pointer_field since we are interested in
1193                the first section of the TS packet. Note that the +1 is to bypass
1194                the pointer field */
1195             i_data_offset = p_ts_packet->i_payload_start +
1196                             p_ts_packet->buffer[p_ts_packet->i_payload_start] + 1;
1197 //            intf_DbgMsg( "New section beginning at offset %d in TS packet\n", i_data_offset );
1198         }
1199         else
1200         {
1201             /* This may either mean that the TS is bad or that the packet contains
1202                the end of a section that had been discarded in a previous loop: 
1203                trash the TS packet since we cannot do anything with those data: */
1204             p_psi->b_running_section = 0;
1205             p_psi->i_current_position = 0;
1206             intf_DbgMsg( "PSI packet discarded due to lack of synchronisation\n" );
1207         }
1208     }
1209
1210     /* The section we will deal with during the first iteration of the following
1211        loop is the first one contained in the TS packet */
1212     //    b_first_section = 1;
1213
1214     /* Reassemble the pieces of sections contained in the TS packet and decode
1215        the sections that could have been completed.
1216        Stop when we reach the end of the packet or stuffing bytes */
1217     while( i_data_offset < TS_PACKET_SIZE && p_ts_packet->buffer[i_data_offset] != 0xFF )
1218     {
1219         /* If the current section is a new one, reinit the data fields of the p_psi
1220            struct to start its decoding */
1221         if( !p_psi->b_running_section )
1222         {
1223             /* Read the length of the new section */
1224             p_psi->i_length = (U16_AT(&p_ts_packet->buffer[i_data_offset+1]) & 0xFFF) + 3;
1225 //            intf_DbgMsg( "Section length %d\n", p_psi->i_length );
1226             if( p_psi->i_length > PSI_SECTION_SIZE )
1227             {
1228                 /* The TS packet is corrupted, stop here to avoid possible a seg fault */
1229                 intf_DbgMsg( "PSI Section size is too big, aborting its reception\n" );
1230                 break;
1231             }
1232
1233             /* Init the reassembly of that section */
1234             p_psi->b_running_section = 1;
1235             p_psi->i_current_position = 0;
1236         }
1237         
1238         /* Compute the length of data related to the section in this TS packet */
1239         if( p_psi->i_length - p_psi->i_current_position > TS_PACKET_SIZE - i_data_offset)
1240             i_data_length = TS_PACKET_SIZE - i_data_offset;
1241         else
1242           i_data_length = p_psi->i_length - p_psi->i_current_position;
1243
1244         /* Copy those data in the section buffer */
1245         memcpy( &p_psi->buffer[p_psi->i_current_position], &p_ts_packet->buffer[i_data_offset],
1246                 i_data_length );
1247
1248         /* Interesting data are now after the ones we copied, since no gap is
1249            allowed between 2 sections in a TS packets */
1250         i_data_offset += i_data_length;
1251
1252         /* Decode the packet if it is now complete */
1253         if (p_psi->i_length == p_psi->i_current_position + i_data_length)
1254         {
1255             /* Packet is complete, decode it */
1256 //            intf_DbgMsg( "SECTION COMPLETE: starting decoding of its data\n" );
1257             input_PsiDecode( p_input, p_psi );
1258
1259             /* Prepare the buffer to receive a new section */
1260             p_psi->i_current_position = 0;
1261             p_psi->b_running_section = 0;
1262         
1263             /* The new section won't be the first anymore */
1264             //b_first_section = 0;
1265         }
1266         else
1267         {
1268             /* Prepare the buffer to receive the next part of the section */
1269           p_psi->i_current_position += i_data_length;
1270 //          intf_DbgMsg( "Section not complete, waiting for the end\n" );
1271         }
1272     
1273 //        intf_DbgMsg( "Must loop ? Next data offset: %d, stuffing: %d\n",
1274 //                     i_data_offset, p_ts_packet->buffer[i_data_offset] );
1275     }
1276
1277     /* Relase the TS packet, we don't need it anymore */
1278     input_NetlistFreeTS( p_input, p_ts_packet );
1279
1280 #undef p_psi  
1281 }