]> git.sesse.net Git - vlc/blob - modules/demux/ts.c
demux: ts: reject unknown probed streams
[vlc] / modules / demux / ts.c
1 /*****************************************************************************
2  * ts.c: Transport Stream input module for VLC.
3  *****************************************************************************
4  * Copyright (C) 2004-2005 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
9  *
10  * This program is free software; you can redistribute it and/or modify it
11  * under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation; either version 2.1 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35
36 #include <assert.h>
37 #include <time.h>
38
39 #include <vlc_access.h>    /* DVB-specific things */
40 #include <vlc_demux.h>
41 #include <vlc_meta.h>
42 #include <vlc_epg.h>
43 #include <vlc_charset.h>   /* FromCharset, for EIT */
44 #include <vlc_bits.h>
45
46 #include "../mux/mpeg/csa.h"
47
48 /* Include dvbpsi headers */
49 # include <dvbpsi/dvbpsi.h>
50 # include <dvbpsi/demux.h>
51 # include <dvbpsi/descriptor.h>
52 # include <dvbpsi/pat.h>
53 # include <dvbpsi/pmt.h>
54 # include <dvbpsi/sdt.h>
55 # include <dvbpsi/dr.h>
56 # include <dvbpsi/psi.h>
57
58 /* EIT support */
59 # include <dvbpsi/eit.h>
60
61 /* TDT support */
62 # include <dvbpsi/tot.h>
63
64 #include "../mux/mpeg/dvbpsi_compat.h"
65 #include "../mux/mpeg/streams.h"
66 #include "../mux/mpeg/tsutil.h"
67 #include "../mux/mpeg/tables.h"
68
69 #include "../codec/opus_header.h"
70
71 #include "opus.h"
72
73 #undef TS_DEBUG
74 VLC_FORMAT(1, 2) static void ts_debug(const char *format, ...)
75 {
76 #ifdef TS_DEBUG
77     va_list ap;
78     va_start(ap, format);
79     vfprintf(stderr, format, ap);
80     va_end(ap);
81 #else
82     (void)format;
83 #endif
84 }
85
86 #ifdef HAVE_ARIBB24
87  #include <aribb24/aribb24.h>
88  #include <aribb24/decoder.h>
89 #endif
90
91 typedef enum arib_modes_e
92 {
93     ARIBMODE_AUTO = -1,
94     ARIBMODE_DISABLED = 0,
95     ARIBMODE_ENABLED = 1
96 } arib_modes_e;
97
98 /*****************************************************************************
99  * Module descriptor
100  *****************************************************************************/
101 static int  Open  ( vlc_object_t * );
102 static void Close ( vlc_object_t * );
103
104 /* TODO
105  * - Rename "extra pmt" to "user pmt"
106  * - Update extra pmt description
107  *      pmt_pid[:pmt_number][=pid_description[,pid_description]]
108  *      where pid_description could take 3 forms:
109  *          1. pid:pcr (to force the pcr pid)
110  *          2. pid:stream_type
111  *          3. pid:type=fourcc where type=(video|audio|spu)
112  */
113 #define PMT_TEXT N_("Extra PMT")
114 #define PMT_LONGTEXT N_( \
115   "Allows a user to specify an extra pmt (pmt_pid=pid:stream_type[,...])." )
116
117 #define PID_TEXT N_("Set id of ES to PID")
118 #define PID_LONGTEXT N_("Set the internal ID of each elementary stream" \
119                        " handled by VLC to the same value as the PID in" \
120                        " the TS stream, instead of 1, 2, 3, etc. Useful to" \
121                        " do \'#duplicate{..., select=\"es=<pid>\"}\'.")
122
123 #define CSA_TEXT N_("CSA Key")
124 #define CSA_LONGTEXT N_("CSA encryption key. This must be a " \
125   "16 char string (8 hexadecimal bytes).")
126
127 #define CSA2_TEXT N_("Second CSA Key")
128 #define CSA2_LONGTEXT N_("The even CSA encryption key. This must be a " \
129   "16 char string (8 hexadecimal bytes).")
130
131
132 #define CPKT_TEXT N_("Packet size in bytes to decrypt")
133 #define CPKT_LONGTEXT N_("Specify the size of the TS packet to decrypt. " \
134     "The decryption routines subtract the TS-header from the value before " \
135     "decrypting. " )
136
137 #define SPLIT_ES_TEXT N_("Separate sub-streams")
138 #define SPLIT_ES_LONGTEXT N_( \
139     "Separate teletex/dvbs pages into independent ES. " \
140     "It can be useful to turn off this option when using stream output." )
141
142 #define SEEK_PERCENT_TEXT N_("Seek based on percent not time")
143 #define SEEK_PERCENT_LONGTEXT N_( \
144     "Seek and position based on a percent byte position, not a PCR generated " \
145     "time position. If seeking doesn't work property, turn on this option." )
146
147 #define PCR_TEXT N_("Trust in-stream PCR")
148 #define PCR_LONGTEXT N_("Use the stream PCR as a reference.")
149
150 static const int const arib_mode_list[] =
151   { ARIBMODE_AUTO, ARIBMODE_ENABLED, ARIBMODE_DISABLED };
152 static const char *const arib_mode_list_text[] =
153   { N_("Auto"), N_("Enabled"), N_("Disabled") };
154
155 #define SUPPORT_ARIB_TEXT N_("ARIB STD-B24 mode")
156 #define SUPPORT_ARIB_LONGTEXT N_( \
157     "Forces ARIB STD-B24 mode for decoding characters." \
158     "This feature affects EPG information and subtitles." )
159
160 vlc_module_begin ()
161     set_description( N_("MPEG Transport Stream demuxer") )
162     set_shortname ( "MPEG-TS" )
163     set_category( CAT_INPUT )
164     set_subcategory( SUBCAT_INPUT_DEMUX )
165
166     add_string( "ts-extra-pmt", NULL, PMT_TEXT, PMT_LONGTEXT, true )
167     add_bool( "ts-trust-pcr", true, PCR_TEXT, PCR_LONGTEXT, true )
168         change_safe()
169     add_bool( "ts-es-id-pid", true, PID_TEXT, PID_LONGTEXT, true )
170         change_safe()
171     add_obsolete_string( "ts-out" ) /* since 2.2.0 */
172     add_obsolete_integer( "ts-out-mtu" ) /* since 2.2.0 */
173     add_string( "ts-csa-ck", NULL, CSA_TEXT, CSA_LONGTEXT, true )
174         change_safe()
175     add_string( "ts-csa2-ck", NULL, CSA2_TEXT, CSA2_LONGTEXT, true )
176         change_safe()
177     add_integer( "ts-csa-pkt", 188, CPKT_TEXT, CPKT_LONGTEXT, true )
178         change_safe()
179
180     add_bool( "ts-split-es", true, SPLIT_ES_TEXT, SPLIT_ES_LONGTEXT, false )
181     add_bool( "ts-seek-percent", false, SEEK_PERCENT_TEXT, SEEK_PERCENT_LONGTEXT, true )
182
183     add_integer( "ts-arib", ARIBMODE_AUTO, SUPPORT_ARIB_TEXT, SUPPORT_ARIB_LONGTEXT, false )
184         change_integer_list( arib_mode_list, arib_mode_list_text )
185
186     add_obsolete_bool( "ts-silent" );
187
188     set_capability( "demux", 10 )
189     set_callbacks( Open, Close )
190     add_shortcut( "ts" )
191 vlc_module_end ()
192
193 /*****************************************************************************
194  * Local prototypes
195  *****************************************************************************/
196 static const char *const ppsz_teletext_type[] = {
197  "",
198  N_("Teletext"),
199  N_("Teletext subtitles"),
200  N_("Teletext: additional information"),
201  N_("Teletext: program schedule"),
202  N_("Teletext subtitles: hearing impaired")
203 };
204
205 typedef struct
206 {
207     uint8_t                 i_objectTypeIndication;
208     uint8_t                 i_streamType;
209
210     int                     i_extra;
211     uint8_t                 *p_extra;
212
213 } decoder_config_descriptor_t;
214
215 typedef struct
216 {
217     bool                    b_ok;
218     uint16_t                i_es_id;
219
220     char                    *psz_url;
221
222     decoder_config_descriptor_t    dec_descr;
223
224 } es_mpeg4_descriptor_t;
225
226 #define ES_DESCRIPTOR_COUNT 255
227 typedef struct
228 {
229     /* IOD */
230     char                    *psz_url;
231
232     es_mpeg4_descriptor_t   es_descr[ES_DESCRIPTOR_COUNT];
233
234 } iod_descriptor_t;
235
236 typedef struct
237 {
238     dvbpsi_handle   handle;
239     int             i_version;
240     int             i_number;
241     int             i_pid_pcr;
242     int             i_pid_pmt;
243     mtime_t         i_pcr_value;
244     /* IOD stuff (mpeg4) */
245     iod_descriptor_t *iod;
246
247 } ts_prg_psi_t;
248
249 typedef struct
250 {
251     /* for special PAT/SDT case */
252     dvbpsi_handle   handle; /* PAT/SDT/EIT */
253     int             i_pat_version;
254     int             i_sdt_version;
255
256     /* For PMT */
257     int             i_prg;
258     ts_prg_psi_t    **prg;
259
260 } ts_psi_t;
261
262 typedef enum
263 {
264     TS_ES_DATA_PES,
265     TS_ES_DATA_TABLE_SECTION
266 } ts_es_data_type_t;
267
268 typedef enum
269 {
270     TS_PMT_REGISTRATION_NONE = 0,
271     TS_PMT_REGISTRATION_HDMV
272 } ts_pmt_registration_type_t;
273
274 typedef struct
275 {
276     es_format_t  fmt;
277     es_out_id_t *id;
278     ts_es_data_type_t data_type;
279     int         i_data_size;
280     int         i_data_gathered;
281     block_t     *p_data;
282     block_t     **pp_last;
283
284     es_mpeg4_descriptor_t *p_mpeg4desc;
285
286 } ts_es_t;
287
288 typedef struct
289 {
290     int         i_pid;
291
292     bool        b_seen;
293     bool        b_valid;
294     int         i_cc;   /* countinuity counter */
295     bool        b_scrambled;
296
297     /* PSI owner (ie PMT -> PAT, ES -> PMT */
298     ts_psi_t   *p_owner;
299     int         i_owner_number;
300
301     /* */
302     ts_psi_t    *psi;
303     ts_es_t     *es;
304
305     /* Some private streams encapsulate several ES (eg. DVB subtitles)*/
306     ts_es_t     **extra_es;
307     int         i_extra_es;
308
309     struct
310     {
311         vlc_fourcc_t i_fourcc;
312         int i_type;
313         bool b_haspcr;
314     } probed;
315 } ts_pid_t;
316
317 typedef struct
318 {
319     int i_service;
320 } vdr_info_t;
321
322 #define MIN_ES_PID 4    /* Should be 32.. broken muxers */
323 #define MAX_ES_PID 8190
324
325 struct demux_sys_t
326 {
327     stream_t   *stream;
328     bool        b_canseek;
329     vlc_mutex_t     csa_lock;
330
331     /* TS packet size (188, 192, 204) */
332     int         i_packet_size;
333
334     /* Additional TS packet header size (BluRay TS packets have 4-byte header before sync byte) */
335     int         i_packet_header_size;
336
337     /* how many TS packet we read at once */
338     int         i_ts_read;
339
340     /* to determine length and time */
341     int         i_pid_ref_pcr;
342     mtime_t     i_first_pcr;
343     mtime_t     i_current_pcr;
344     mtime_t     i_last_pcr;
345     bool        b_force_seek_per_percent;
346     int         i_pcrs_num;
347     mtime_t     *p_pcrs;
348     int64_t     *p_pos;
349
350     struct
351     {
352         arib_modes_e e_mode;
353 #ifdef HAVE_ARIBB24
354         arib_instance_t *p_instance;
355 #endif
356         stream_t     *b25stream;
357     } arib;
358
359     /* All pid */
360     ts_pid_t    pid[8192];
361
362     /* All PMT */
363     bool        b_user_pmt;
364     int         i_pmt;
365     ts_pid_t    **pmt;
366     int         i_pmt_es;
367     bool        b_delay_es_creation;
368
369     /* */
370     bool        b_es_id_pid;
371     csa_t       *csa;
372     int         i_csa_pkt_size;
373     bool        b_split_es;
374
375     bool        b_trust_pcr;
376     bool        b_disable_pcr;
377
378     /* */
379     bool        b_access_control;
380
381     /* */
382     bool        b_dvb_meta;
383     int64_t     i_tdt_delta;
384     int64_t     i_dvb_start;
385     int64_t     i_dvb_length;
386     bool        b_broken_charset; /* True if broken encoding is used in EPG/SDT */
387
388     /* */
389     int         i_current_program;
390     vlc_list_t  programs_list;
391
392     struct
393     {
394         /* broken PCR handling */
395         bool        b_program_pcr_seen;
396         mtime_t     i_first_dts;
397     } pcrfix;
398
399     struct
400     {
401         mtime_t i_first_dts;     /* first dts encountered for the stream */
402         int     i_timesourcepid; /* which pid we saved the dts from */
403         bool    b_pat_deadline;  /* set if we haven't seen PAT within 140ms */
404     } patfix;
405
406     vdr_info_t  vdr;
407
408     /* */
409     bool        b_start_record;
410 };
411
412 static int Demux    ( demux_t *p_demux );
413 static int Control( demux_t *p_demux, int i_query, va_list args );
414
415 static void PIDInit ( ts_pid_t *pid, bool b_psi, ts_psi_t *p_owner );
416 static void PIDClean( demux_t *, ts_pid_t *pid );
417 static void PIDFillFormat( es_format_t *fmt, int i_stream_type );
418
419 static void PATCallBack( void*, dvbpsi_pat_t * );
420 static void PMTCallBack( void *data, dvbpsi_pmt_t *p_pmt );
421 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
422 static void PSINewTableCallBack( dvbpsi_t *handle, uint8_t  i_table_id,
423                                  uint16_t i_extension, demux_t * );
424 #else
425 static void PSINewTableCallBack( demux_t *, dvbpsi_handle,
426                                  uint8_t  i_table_id, uint16_t i_extension );
427 #endif
428
429 static int ChangeKeyCallback( vlc_object_t *, char const *, vlc_value_t, vlc_value_t, void * );
430
431 static inline int PIDGet( block_t *p )
432 {
433     return ( (p->p_buffer[1]&0x1f)<<8 )|p->p_buffer[2];
434 }
435
436 static bool GatherData( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk );
437 static void AddAndCreateES( demux_t *p_demux, ts_pid_t *pid );
438
439 static block_t* ReadTSPacket( demux_t *p_demux );
440 static int Seek( demux_t *p_demux, double f_percent );
441 static void GetFirstPCR( demux_t *p_demux );
442 static void GetLastPCR( demux_t *p_demux );
443 static void CheckPCR( demux_t *p_demux );
444 static void PCRHandle( demux_t *p_demux, ts_pid_t *, block_t * );
445 static void PCRFixHandle( demux_t *, block_t * );
446 static mtime_t AdjustPTSWrapAround( demux_t *, mtime_t );
447
448 static void              IODFree( iod_descriptor_t * );
449
450 #define TS_USER_PMT_NUMBER (0)
451 static int UserPmt( demux_t *p_demux, const char * );
452
453 static int  SetPIDFilter( demux_t *, int i_pid, bool b_selected );
454 static void SetPrgFilter( demux_t *, int i_prg, bool b_selected );
455
456 #define TS_PACKET_SIZE_188 188
457 #define TS_PACKET_SIZE_192 192
458 #define TS_PACKET_SIZE_204 204
459 #define TS_PACKET_SIZE_MAX 204
460
461 static int DetectPacketSize( demux_t *p_demux, int *pi_header_size, int i_offset )
462 {
463     const uint8_t *p_peek;
464
465     if( stream_Peek( p_demux->s,
466                      &p_peek, i_offset + TS_PACKET_SIZE_MAX ) < i_offset + TS_PACKET_SIZE_MAX )
467         return -1;
468
469     for( int i_sync = 0; i_sync < TS_PACKET_SIZE_MAX; i_sync++ )
470     {
471         if( p_peek[i_offset + i_sync] != 0x47 )
472             continue;
473
474         /* Check next 3 sync bytes */
475         int i_peek = i_offset + TS_PACKET_SIZE_MAX * 3 + i_sync + 1;
476         if( ( stream_Peek( p_demux->s, &p_peek, i_peek ) ) < i_peek )
477         {
478             msg_Err( p_demux, "cannot peek" );
479             return -1;
480         }
481         if( p_peek[i_offset + i_sync + 1 * TS_PACKET_SIZE_188] == 0x47 &&
482             p_peek[i_offset + i_sync + 2 * TS_PACKET_SIZE_188] == 0x47 &&
483             p_peek[i_offset + i_sync + 3 * TS_PACKET_SIZE_188] == 0x47 )
484         {
485             return TS_PACKET_SIZE_188;
486         }
487         else if( p_peek[i_offset + i_sync + 1 * TS_PACKET_SIZE_192] == 0x47 &&
488                  p_peek[i_offset + i_sync + 2 * TS_PACKET_SIZE_192] == 0x47 &&
489                  p_peek[i_offset + i_sync + 3 * TS_PACKET_SIZE_192] == 0x47 )
490         {
491             if( i_sync == 4 )
492             {
493                 *pi_header_size = 4; /* BluRay TS packets have 4-byte header */
494             }
495             return TS_PACKET_SIZE_192;
496         }
497         else if( p_peek[i_offset + i_sync + 1 * TS_PACKET_SIZE_204] == 0x47 &&
498                  p_peek[i_offset + i_sync + 2 * TS_PACKET_SIZE_204] == 0x47 &&
499                  p_peek[i_offset + i_sync + 3 * TS_PACKET_SIZE_204] == 0x47 )
500         {
501             return TS_PACKET_SIZE_204;
502         }
503     }
504
505     if( p_demux->b_force )
506     {
507         msg_Warn( p_demux, "this does not look like a TS stream, continuing" );
508         return TS_PACKET_SIZE_188;
509     }
510     msg_Dbg( p_demux, "TS module discarded (lost sync)" );
511     return -1;
512 }
513
514 #define TOPFIELD_HEADER_SIZE 3712
515
516 static int DetectPVRHeadersAndHeaderSize( demux_t *p_demux, int *pi_header_size, vdr_info_t *p_vdr )
517 {
518     const uint8_t *p_peek;
519     *pi_header_size = 0;
520     int i_packet_size = -1;
521
522     if( stream_Peek( p_demux->s,
523                      &p_peek, TS_PACKET_SIZE_MAX ) < TS_PACKET_SIZE_MAX )
524         return -1;
525
526     if( memcmp( p_peek, "TFrc", 4 ) == 0 &&
527         p_peek[6] == 0 && memcmp( &p_peek[53], "\x80\x00\x00", 4 ) == 0 &&
528         stream_Peek( p_demux->s, &p_peek, TOPFIELD_HEADER_SIZE + TS_PACKET_SIZE_MAX )
529             == TOPFIELD_HEADER_SIZE + TS_PACKET_SIZE_MAX )
530     {
531         i_packet_size = DetectPacketSize( p_demux, pi_header_size, TOPFIELD_HEADER_SIZE );
532         if( i_packet_size != -1 )
533         {
534             msg_Dbg( p_demux, "this is a topfield file" );
535 #if 0
536             /* I used the TF5000PVR 2004 Firmware .doc header documentation,
537              * http://www.i-topfield.com/data/product/firmware/Structure%20of%20Recorded%20File%20in%20TF5000PVR%20(Feb%2021%202004).doc
538              * but after the filename the offsets seem to be incorrect.  - DJ */
539             int i_duration, i_name;
540             char *psz_name = xmalloc(25);
541             char *psz_event_name;
542             char *psz_event_text = xmalloc(130);
543             char *psz_ext_text = xmalloc(1025);
544
545             // 2 bytes version Uimsbf (4,5)
546             // 2 bytes reserved (6,7)
547             // 2 bytes duration in minutes Uimsbf (8,9(
548             i_duration = (int) (p_peek[8] << 8) | p_peek[9];
549             msg_Dbg( p_demux, "Topfield recording length: +/- %d minutes", i_duration);
550             // 2 bytes service number in channel list (10, 11)
551             // 2 bytes service type Bslbf 0=TV 1=Radio Bslb (12, 13)
552             // 4 bytes of reserved + tuner info (14,15,16,17)
553             // 2 bytes of Service ID  Bslbf (18,19)
554             // 2 bytes of PMT PID  Uimsbf (20,21)
555             // 2 bytes of PCR PID  Uimsbf (22,23)
556             // 2 bytes of Video PID  Uimsbf (24,25)
557             // 2 bytes of Audio PID  Uimsbf (26,27)
558             // 24 bytes filename Bslbf
559             memcpy( psz_name, &p_peek[28], 24 );
560             psz_name[24] = '\0';
561             msg_Dbg( p_demux, "recordingname=%s", psz_name );
562             // 1 byte of sat index Uimsbf  (52)
563             // 3 bytes (1 bit of polarity Bslbf +23 bits reserved)
564             // 4 bytes of freq. Uimsbf (56,57,58,59)
565             // 2 bytes of symbol rate Uimsbf (60,61)
566             // 2 bytes of TS stream ID Uimsbf (62,63)
567             // 4 bytes reserved
568             // 2 bytes reserved
569             // 2 bytes duration Uimsbf (70,71)
570             //i_duration = (int) (p_peek[70] << 8) | p_peek[71];
571             //msg_Dbg( p_demux, "Topfield 2nd duration field: +/- %d minutes", i_duration);
572             // 4 bytes EventID Uimsbf (72-75)
573             // 8 bytes of Start and End time info (76-83)
574             // 1 byte reserved (84)
575             // 1 byte event name length Uimsbf (89)
576             i_name = (int)(p_peek[89]&~0x81);
577             msg_Dbg( p_demux, "event name length = %d", i_name);
578             psz_event_name = xmalloc( i_name+1 );
579             // 1 byte parental rating (90)
580             // 129 bytes of event text
581             memcpy( psz_event_name, &p_peek[91], i_name );
582             psz_event_name[i_name] = '\0';
583             memcpy( psz_event_text, &p_peek[91+i_name], 129-i_name );
584             psz_event_text[129-i_name] = '\0';
585             msg_Dbg( p_demux, "event name=%s", psz_event_name );
586             msg_Dbg( p_demux, "event text=%s", psz_event_text );
587             // 12 bytes reserved (220)
588             // 6 bytes reserved
589             // 2 bytes Event Text Length Uimsbf
590             // 4 bytes EventID Uimsbf
591             // FIXME We just have 613 bytes. not enough for this entire text
592             // 1024 bytes Extended Event Text Bslbf
593             memcpy( psz_ext_text, p_peek+372, 1024 );
594             psz_ext_text[1024] = '\0';
595             msg_Dbg( p_demux, "extended event text=%s", psz_ext_text );
596             // 52 bytes reserved Bslbf
597 #endif
598             p_vdr->i_service = GetWBE(&p_peek[18]);
599
600             return i_packet_size;
601             //return TS_PACKET_SIZE_188;
602         }
603     }
604
605     return DetectPacketSize( p_demux, pi_header_size, 0 );
606 }
607
608 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
609 static void vlc_dvbpsi_reset( demux_t *p_demux )
610 {
611     demux_sys_t *p_sys = p_demux->p_sys;
612
613     ts_pid_t *pat = &p_sys->pid[0];
614     ts_pid_t *sdt = &p_sys->pid[0x11];
615     ts_pid_t *eit = &p_sys->pid[0x12];
616     ts_pid_t *tdt = &p_sys->pid[0x14];
617
618     if( pat->psi->handle )
619     {
620         if( dvbpsi_decoder_present( pat->psi->handle ) )
621             dvbpsi_pat_detach( pat->psi->handle );
622         dvbpsi_delete( pat->psi->handle );
623         pat->psi->handle = NULL;
624     }
625
626     if( sdt->psi->handle )
627     {
628         if( dvbpsi_decoder_present( sdt->psi->handle ) )
629             dvbpsi_DetachDemux( sdt->psi->handle );
630         dvbpsi_delete( sdt->psi->handle );
631         sdt->psi->handle = NULL;
632     }
633
634     if( eit->psi->handle )
635     {
636         if( dvbpsi_decoder_present( eit->psi->handle ) )
637             dvbpsi_DetachDemux( eit->psi->handle );
638         dvbpsi_delete( eit->psi->handle );
639         eit->psi->handle = NULL;
640     }
641
642     if( tdt->psi->handle )
643     {
644         if( dvbpsi_decoder_present( tdt->psi->handle ) )
645             dvbpsi_DetachDemux( tdt->psi->handle );
646         dvbpsi_delete( tdt->psi->handle );
647         tdt->psi->handle = NULL;
648     }
649 }
650 #endif
651
652 static inline mtime_t ExtractPESTimestamp( const uint8_t *p_data )
653 {
654     return ((mtime_t)(p_data[ 0]&0x0e ) << 29)|
655              (mtime_t)(p_data[1] << 22)|
656             ((mtime_t)(p_data[2]&0xfe) << 14)|
657              (mtime_t)(p_data[3] << 7)|
658              (mtime_t)(p_data[4] >> 1);
659 }
660
661 static void ProbePES( demux_t *p_demux, ts_pid_t *pid, const uint8_t *p_pesstart, bool b_adaptfield )
662 {
663     demux_sys_t *p_sys = p_demux->p_sys;
664     const uint8_t *p_pes = p_pesstart;
665     pid->probed.i_type = -1;
666
667     if( b_adaptfield )
668     {
669         uint8_t len = *p_pes;
670         p_pes++;
671
672         if(len == 0)
673         {
674             p_pes++; /* stuffing */
675         }
676         else
677         {
678             pid->probed.b_haspcr = ( *p_pes >= 7 && (p_pes[1] & 0x10) );
679             p_pes += len;
680         }
681     }
682
683     if( p_pes - p_pesstart >= TS_PACKET_SIZE_188 - 9)
684         return;
685
686     if( p_pes[0] != 0 || p_pes[1] != 0 || p_pes[2] != 1 )
687         return;
688
689     size_t i_pesextoffset = 8;
690     mtime_t i_dts = -1;
691     if( p_pes[7] & 0x80 ) // PTS
692     {
693         i_pesextoffset += 5;
694         i_dts = ExtractPESTimestamp( &p_pes[9] );
695     }
696     if( p_pes[7] & 0x40 ) // DTS
697     {
698         i_pesextoffset += 5;
699         i_dts = ExtractPESTimestamp( &p_pes[14] );
700     }
701     if( p_pes[7] & 0x20 ) // ESCR
702         i_pesextoffset += 6;
703     if( p_pes[7] & 0x10 ) // ESrate
704         i_pesextoffset += 3;
705     if( p_pes[7] & 0x08 ) // DSM
706         i_pesextoffset += 1;
707     if( p_pes[7] & 0x04 ) // CopyInfo
708         i_pesextoffset += 1;
709     if( p_pes[7] & 0x02 ) // PESCRC
710         i_pesextoffset += 2;
711
712      /* HeaderdataLength */
713     const size_t i_payloadoffset = 8 + 1 + p_pes[8];
714     i_pesextoffset += 1;
715
716     if( p_pes[7] & 0x01 ) // PESExt
717     {
718         size_t i_extension2_offset = 1;
719         if ( p_pes[i_pesextoffset] & 0x80 ) // private data
720             i_extension2_offset += 16;
721         if ( p_pes[i_pesextoffset] & 0x40 ) // pack
722             i_extension2_offset += 1;
723         if ( p_pes[i_pesextoffset] & 0x20 ) // seq
724             i_extension2_offset += 2;
725         if ( p_pes[i_pesextoffset] & 0x10 ) // P-STD
726             i_extension2_offset += 2;
727         if ( p_pes[i_pesextoffset] & 0x01 ) // Extension 2
728         {
729             uint8_t i_len = p_pes[i_pesextoffset + i_extension2_offset] & 0x7F;
730             i_extension2_offset += i_len;
731         }
732     }
733     /* (i_payloadoffset - i_pesextoffset) 0xFF stuffing */
734
735     if( &p_pes[i_payloadoffset] - p_pesstart >= TS_PACKET_SIZE_188 - 4)
736         return;
737
738     const uint8_t *p_data = &p_pes[i_payloadoffset];
739     /* AUDIO STREAM */
740     if(p_pes[3] >= 0xC0 && p_pes[3] <= 0xDF)
741     {
742         if( !memcmp( p_data, "\x7F\xFE\x80\x01", 4 ) )
743         {
744             pid->probed.i_type = 0x06;
745             pid->probed.i_fourcc = VLC_CODEC_DTS;
746         }
747         else if( !memcmp( p_data, "\x0B\x77", 2 ) )
748         {
749             pid->probed.i_type = 0x06;
750             pid->probed.i_fourcc = VLC_CODEC_EAC3;
751         }
752         else if( p_data[0] == 0xFF && (p_data[1] & 0xE0) == 0xE0 )
753         {
754             switch(p_data[1] & 18)
755             {
756             /* 10 - MPEG Version 2 (ISO/IEC 13818-3)
757                11 - MPEG Version 1 (ISO/IEC 11172-3) */
758                 case 0x10:
759                     pid->probed.i_type = 0x04;
760                     break;
761                 case 0x18:
762                     pid->probed.i_type = 0x03;
763                 default:
764                     break;
765             }
766
767             switch(p_data[1] & 6)
768             {
769             /* 01 - Layer III
770                10 - Layer II
771                11 - Layer I */
772                 case 0x06:
773                     pid->probed.i_type = 0x04;
774                     pid->probed.i_fourcc = VLC_CODEC_MPGA;
775                     break;
776                 case 0x04:
777                     pid->probed.i_type = 0x04;
778                     pid->probed.i_fourcc = VLC_CODEC_MP2;
779                     break;
780                 case 0x02:
781                     pid->probed.i_type = 0x04;
782                     pid->probed.i_fourcc = VLC_CODEC_MP3;
783                 default:
784                     break;
785             }
786         }
787     }
788     /* VIDEO STREAM */
789     else if( p_pes[3] >= 0xE0 && p_pes[3] <= 0xEF )
790     {
791         if( !memcmp( p_data, "\x00\x00\x00", 4 ) )
792         {
793             pid->probed.i_type = 0x1b;
794             pid->probed.i_fourcc = VLC_CODEC_H264;
795         }
796         else if( !memcmp( p_data, "\x00\x00\x01", 4 ) )
797         {
798             pid->probed.i_type = 0x02;
799             pid->probed.i_fourcc = VLC_CODEC_MPGV;
800         }
801     }
802
803     /* Track timestamps and flag missing PAT */
804     if( !p_sys->patfix.i_timesourcepid && i_dts > -1 )
805     {
806         p_sys->patfix.i_first_dts = i_dts;
807         p_sys->patfix.i_timesourcepid = pid->i_pid;
808     }
809     else if( p_sys->patfix.i_timesourcepid == pid->i_pid && i_dts > -1 &&
810              !p_sys->patfix.b_pat_deadline )
811     {
812         if( i_dts - p_sys->patfix.i_first_dts > 9 * 140000 / 100 )
813             p_sys->patfix.b_pat_deadline = true;
814     }
815
816 }
817
818 static void BuildPATCallback( void *p_opaque, block_t *p_block )
819 {
820     ts_pid_t *pat_pid = (ts_pid_t *) p_opaque;
821     dvbpsi_PushPacket( pat_pid->psi->handle, p_block->p_buffer );
822 }
823
824 static void BuildPMTCallback( void *p_opaque, block_t *p_block )
825 {
826     ts_pid_t *program_pid = (ts_pid_t *) p_opaque;
827     while( p_block )
828     {
829         for( int i_prg = 0; i_prg < program_pid->psi->i_prg; i_prg++ )
830         {
831             dvbpsi_PushPacket( program_pid->psi->prg[i_prg]->handle,
832                                p_block->p_buffer );
833         }
834         p_block = p_block->p_next;
835     }
836 }
837
838 static void MissingPATPMTFixup( demux_t *p_demux )
839 {
840     demux_sys_t *p_sys = p_demux->p_sys;
841     int i_program_number = 1234;
842     int i_program_pid = 1337;
843     int i_pcr_pid = 0x1FFF;
844     int i_num_pes = 0;
845
846     if( p_sys->pid[i_program_pid].b_seen )
847     {
848         /* Find a free one */
849         for( i_program_pid = MIN_ES_PID;
850              i_program_pid < MAX_ES_PID && p_sys->pid[i_program_pid].b_seen;
851              i_program_pid++ );
852     }
853
854     for( int i = MIN_ES_PID; i < MAX_ES_PID; i++ )
855     {
856         if( !p_sys->pid[i].b_seen ||
857             p_sys->pid[i].probed.i_type == -1 )
858             continue;
859
860         if( i_pcr_pid == 0x1FFF && ( p_sys->pid[i].probed.i_type == 0x03 ||
861                                      p_sys->pid[i].probed.b_haspcr ) )
862             i_pcr_pid = p_sys->pid[i].i_pid;
863
864         i_num_pes++;
865     }
866
867     if( i_num_pes == 0 )
868         return;
869
870     ts_stream_t patstream =
871     {
872         .i_pid = 0,
873         .i_continuity_counter = 0x10,
874         .b_discontinuity = false
875     };
876
877     ts_stream_t pmtprogramstream =
878     {
879         .i_pid = i_program_pid,
880         .i_continuity_counter = 0x0,
881         .b_discontinuity = false
882     };
883
884     BuildPAT( DVBPSI_HANDLE_PARAM(p_sys->pid[0].psi->handle)
885             &p_sys->pid[0], BuildPATCallback,
886             0, 1,
887             &patstream,
888             1, &pmtprogramstream, &i_program_number );
889
890     if( !p_sys->pid[i_program_pid].psi )
891     {
892         msg_Err( p_demux, "PAT creation failed" );
893         return;
894     }
895
896     struct esstreams_t
897     {
898         pes_stream_t pes;
899         ts_stream_t ts;
900     };
901     es_format_t esfmt = {0};
902     struct esstreams_t *esstreams = calloc( i_num_pes, sizeof(struct esstreams_t) );
903     pes_mapped_stream_t *mapped = calloc( i_num_pes, sizeof(pes_mapped_stream_t) );
904     if( esstreams && mapped )
905     {
906         int j=0;
907         for( int i = MIN_ES_PID; i < MAX_ES_PID; i++ )
908         {
909             if( !p_sys->pid[i].b_seen ||
910                 p_sys->pid[i].probed.i_type == -1 )
911                 continue;
912
913             esstreams[j].pes.i_stream_type = p_sys->pid[i].probed.i_type;
914             esstreams[j].pes.i_stream_type = p_sys->pid[i].probed.i_type;
915             esstreams[j].ts.i_pid = p_sys->pid[i].i_pid;
916             mapped[j].pes = &esstreams[j].pes;
917             mapped[j].ts = &esstreams[j].ts;
918             mapped[j].fmt = &esfmt;
919             j++;
920         }
921
922         BuildPMT( DVBPSI_HANDLE_PARAM(p_sys->pid[0].psi->handle) VLC_OBJECT(p_demux),
923                 &p_sys->pid[i_program_pid], BuildPMTCallback,
924                 0, 1,
925                 i_pcr_pid,
926                 NULL,
927                 1, &pmtprogramstream, &i_program_number,
928                 i_num_pes, mapped );
929     }
930     free(esstreams);
931     free(mapped);
932 }
933
934 /*****************************************************************************
935  * Open
936  *****************************************************************************/
937 static int Open( vlc_object_t *p_this )
938 {
939     demux_t     *p_demux = (demux_t*)p_this;
940     demux_sys_t *p_sys;
941
942     int          i_packet_size, i_packet_header_size = 0;
943
944     ts_pid_t    *pat;
945     vdr_info_t   vdr = {0};
946
947     /* Search first sync byte */
948     i_packet_size = DetectPVRHeadersAndHeaderSize( p_demux, &i_packet_header_size, &vdr );
949     if( i_packet_size < 0 )
950         return VLC_EGENERIC;
951
952     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
953     if( !p_sys )
954         return VLC_ENOMEM;
955     memset( p_sys, 0, sizeof( demux_sys_t ) );
956     vlc_mutex_init( &p_sys->csa_lock );
957
958     p_demux->pf_demux = Demux;
959     p_demux->pf_control = Control;
960
961     /* Init p_sys field */
962     p_sys->b_dvb_meta = true;
963     p_sys->b_access_control = true;
964     p_sys->i_current_program = 0;
965     p_sys->programs_list.i_count = 0;
966     p_sys->programs_list.p_values = NULL;
967     p_sys->i_tdt_delta = 0;
968     p_sys->i_dvb_start = 0;
969     p_sys->i_dvb_length = 0;
970
971     p_sys->vdr = vdr;
972
973     p_sys->arib.b25stream = NULL;
974     p_sys->stream = p_demux->s;
975
976     p_sys->b_broken_charset = false;
977
978     for( int i = 0; i < 8192; i++ )
979     {
980         ts_pid_t *pid = &p_sys->pid[i];
981         pid->i_pid      = i;
982         pid->b_seen     = false;
983         pid->b_valid    = false;
984         pid->probed.i_fourcc = 0;
985         pid->probed.i_type = 0;
986     }
987     /* PID 8191 is padding */
988     p_sys->pid[8191].b_seen = true;
989     p_sys->i_packet_size = i_packet_size;
990     p_sys->i_packet_header_size = i_packet_header_size;
991     p_sys->i_ts_read = 50;
992     p_sys->csa = NULL;
993     p_sys->b_start_record = false;
994
995 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
996 # define VLC_DVBPSI_DEMUX_TABLE_INIT(table,obj) \
997     do { \
998         (table)->psi->handle = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG ); \
999         if( ! (table)->psi->handle ) \
1000         { \
1001             vlc_mutex_destroy( &p_sys->csa_lock ); \
1002             free( p_sys ); \
1003             return VLC_ENOMEM; \
1004         } \
1005         (table)->psi->handle->p_sys = (void *) VLC_OBJECT(obj); \
1006         if( !dvbpsi_AttachDemux( (table)->psi->handle, (dvbpsi_demux_new_cb_t)PSINewTableCallBack, (obj) ) ) \
1007         { \
1008             vlc_dvbpsi_reset( obj ); \
1009             vlc_mutex_destroy( &p_sys->csa_lock ); \
1010             free( p_sys ); \
1011             return VLC_EGENERIC; \
1012         } \
1013     } while (0);
1014 #endif
1015
1016     /* Init PAT handler */
1017     pat = &p_sys->pid[0];
1018     PIDInit( pat, true, NULL );
1019 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1020     pat->psi->handle = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG );
1021     if( !pat->psi->handle )
1022     {
1023         vlc_mutex_destroy( &p_sys->csa_lock );
1024         free( p_sys );
1025         return VLC_ENOMEM;
1026     }
1027     pat->psi->handle->p_sys = (void *) p_demux;
1028     if( !dvbpsi_pat_attach( pat->psi->handle, PATCallBack, p_demux ) )
1029     {
1030         vlc_dvbpsi_reset( p_demux );
1031         vlc_mutex_destroy( &p_sys->csa_lock );
1032         free( p_sys );
1033         return VLC_EGENERIC;
1034     }
1035 #else
1036     pat->psi->handle = dvbpsi_AttachPAT( PATCallBack, p_demux );
1037 #endif
1038     if( p_sys->b_dvb_meta )
1039     {
1040         ts_pid_t *sdt = &p_sys->pid[0x11];
1041         ts_pid_t *eit = &p_sys->pid[0x12];
1042
1043         PIDInit( sdt, true, NULL );
1044 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1045         VLC_DVBPSI_DEMUX_TABLE_INIT( sdt, p_demux )
1046 #else
1047         sdt->psi->handle =
1048             dvbpsi_AttachDemux( (dvbpsi_demux_new_cb_t)PSINewTableCallBack,
1049                                 p_demux );
1050 #endif
1051         PIDInit( eit, true, NULL );
1052 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1053         VLC_DVBPSI_DEMUX_TABLE_INIT( eit, p_demux )
1054 #else
1055         eit->psi->handle =
1056             dvbpsi_AttachDemux( (dvbpsi_demux_new_cb_t)PSINewTableCallBack,
1057                                 p_demux );
1058 #endif
1059         ts_pid_t *tdt = &p_sys->pid[0x14];
1060         PIDInit( tdt, true, NULL );
1061 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1062         VLC_DVBPSI_DEMUX_TABLE_INIT( tdt, p_demux )
1063 #else
1064         tdt->psi->handle =
1065             dvbpsi_AttachDemux( (dvbpsi_demux_new_cb_t)PSINewTableCallBack,
1066                                 p_demux );
1067 #endif
1068
1069         if( p_sys->b_access_control )
1070         {
1071             if( SetPIDFilter( p_demux, 0x11, true ) ||
1072                 SetPIDFilter( p_demux, 0x14, true ) ||
1073                 SetPIDFilter( p_demux, 0x12, true ) )
1074                 p_sys->b_access_control = false;
1075         }
1076     }
1077
1078 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1079 # undef VLC_DVBPSI_DEMUX_TABLE_INIT
1080 #endif
1081
1082     /* Init PMT array */
1083     TAB_INIT( p_sys->i_pmt, p_sys->pmt );
1084     p_sys->i_pmt_es = 0;
1085     p_sys->b_delay_es_creation = true;
1086
1087     /* Read config */
1088     p_sys->b_es_id_pid = var_CreateGetBool( p_demux, "ts-es-id-pid" );
1089
1090     p_sys->b_trust_pcr = var_CreateGetBool( p_demux, "ts-trust-pcr" );
1091
1092     /* We handle description of an extra PMT */
1093     char* psz_string = var_CreateGetString( p_demux, "ts-extra-pmt" );
1094     p_sys->b_user_pmt = false;
1095     if( psz_string && *psz_string )
1096         UserPmt( p_demux, psz_string );
1097     free( psz_string );
1098
1099     psz_string = var_CreateGetStringCommand( p_demux, "ts-csa-ck" );
1100     if( psz_string && *psz_string )
1101     {
1102         int i_res;
1103         char* psz_csa2;
1104
1105         p_sys->csa = csa_New();
1106
1107         psz_csa2 = var_CreateGetStringCommand( p_demux, "ts-csa2-ck" );
1108         i_res = csa_SetCW( (vlc_object_t*)p_demux, p_sys->csa, psz_string, true );
1109         if( i_res == VLC_SUCCESS && psz_csa2 && *psz_csa2 )
1110         {
1111             if( csa_SetCW( (vlc_object_t*)p_demux, p_sys->csa, psz_csa2, false ) != VLC_SUCCESS )
1112             {
1113                 csa_SetCW( (vlc_object_t*)p_demux, p_sys->csa, psz_string, false );
1114             }
1115         }
1116         else if ( i_res == VLC_SUCCESS )
1117         {
1118             csa_SetCW( (vlc_object_t*)p_demux, p_sys->csa, psz_string, false );
1119         }
1120         else
1121         {
1122             csa_Delete( p_sys->csa );
1123             p_sys->csa = NULL;
1124         }
1125
1126         if( p_sys->csa )
1127         {
1128             var_AddCallback( p_demux, "ts-csa-ck", ChangeKeyCallback, (void *)1 );
1129             var_AddCallback( p_demux, "ts-csa2-ck", ChangeKeyCallback, NULL );
1130
1131             int i_pkt = var_CreateGetInteger( p_demux, "ts-csa-pkt" );
1132             if( i_pkt < 4 || i_pkt > 188 )
1133             {
1134                 msg_Err( p_demux, "wrong packet size %d specified.", i_pkt );
1135                 msg_Warn( p_demux, "using default packet size of 188 bytes" );
1136                 p_sys->i_csa_pkt_size = 188;
1137             }
1138             else
1139                 p_sys->i_csa_pkt_size = i_pkt;
1140             msg_Dbg( p_demux, "decrypting %d bytes of packet", p_sys->i_csa_pkt_size );
1141         }
1142         free( psz_csa2 );
1143     }
1144     free( psz_string );
1145
1146     p_sys->b_split_es = var_InheritBool( p_demux, "ts-split-es" );
1147
1148     p_sys->b_canseek = false;
1149     p_sys->i_pid_ref_pcr = -1;
1150     p_sys->i_first_pcr = -1;
1151     p_sys->i_current_pcr = -1;
1152     p_sys->i_last_pcr = -1;
1153     p_sys->b_force_seek_per_percent = var_InheritBool( p_demux, "ts-seek-percent" );
1154     p_sys->i_pcrs_num = 10;
1155     p_sys->p_pcrs = (mtime_t *)calloc( p_sys->i_pcrs_num, sizeof( mtime_t ) );
1156     p_sys->p_pos = (int64_t *)calloc( p_sys->i_pcrs_num, sizeof( int64_t ) );
1157
1158     p_sys->arib.e_mode = var_InheritInteger( p_demux, "ts-arib" );
1159
1160     if( !p_sys->p_pcrs || !p_sys->p_pos )
1161     {
1162         Close( p_this );
1163         return VLC_ENOMEM;
1164     }
1165
1166     bool b_can_fastseek = false;
1167     stream_Control( p_sys->stream, STREAM_CAN_SEEK, &p_sys->b_canseek );
1168     stream_Control( p_sys->stream, STREAM_CAN_FASTSEEK, &b_can_fastseek );
1169     if ( p_sys->b_canseek )
1170     {
1171         if( b_can_fastseek )
1172         {
1173             GetFirstPCR( p_demux );
1174             CheckPCR( p_demux );
1175             GetLastPCR( p_demux );
1176         }
1177
1178         if( p_sys->i_first_pcr < 0 || p_sys->i_last_pcr < 0 )
1179         {
1180             msg_Dbg( p_demux, "Force Seek Per Percent: PCR's not found,");
1181             p_sys->b_force_seek_per_percent = true;
1182         }
1183     }
1184
1185     while( p_sys->i_pmt_es <= 0
1186            && (!p_sys->pid[0].b_seen && !p_sys->patfix.b_pat_deadline) )
1187     {
1188         if( Demux( p_demux ) != 1 )
1189             break;
1190     }
1191
1192     /* If we had no PAT within 140ms, create PAT/PMT from probed streams */
1193     if( p_sys->i_pmt_es == 0 && !p_sys->pid[0].b_seen )
1194         MissingPATPMTFixup( p_demux );
1195
1196     return VLC_SUCCESS;
1197 }
1198
1199 /*****************************************************************************
1200  * Close
1201  *****************************************************************************/
1202 static void Close( vlc_object_t *p_this )
1203 {
1204     demux_t     *p_demux = (demux_t*)p_this;
1205     demux_sys_t *p_sys = p_demux->p_sys;
1206
1207     msg_Dbg( p_demux, "pid list:" );
1208     for( int i = 0; i < 8192; i++ )
1209     {
1210         ts_pid_t *pid = &p_sys->pid[i];
1211
1212         if( pid->b_valid && pid->psi )
1213         {
1214             switch( pid->i_pid )
1215             {
1216             case 0: /* PAT */
1217 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1218                 if( dvbpsi_decoder_present( pid->psi->handle ) )
1219                     dvbpsi_pat_detach( pid->psi->handle );
1220                 dvbpsi_delete( pid->psi->handle );
1221                 pid->psi->handle = NULL;
1222 #else
1223                 dvbpsi_DetachPAT( pid->psi->handle );
1224 #endif
1225                 free( pid->psi );
1226                 break;
1227             case 1: /* CAT */
1228                 free( pid->psi );
1229                 break;
1230             default:
1231                 if( p_sys->b_dvb_meta && ( pid->i_pid == 0x11 || pid->i_pid == 0x12 || pid->i_pid == 0x14 ) )
1232                 {
1233                     /* SDT or EIT or TDT */
1234                     dvbpsi_DetachDemux( pid->psi->handle );
1235 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1236                     dvbpsi_delete( pid->psi->handle );
1237                     pid->psi->handle = NULL;
1238 #endif
1239                     free( pid->psi );
1240                 }
1241                 else
1242                 {
1243                     PIDClean( p_demux, pid );
1244                 }
1245                 break;
1246             }
1247         }
1248         else if( pid->b_valid && pid->es )
1249         {
1250             PIDClean( p_demux, pid );
1251         }
1252
1253         if( pid->b_seen )
1254         {
1255             msg_Dbg( p_demux, "  - pid[%d] seen", pid->i_pid );
1256         }
1257
1258         /* too much */
1259         if( pid->i_pid > 0 )
1260             SetPIDFilter( p_demux, pid->i_pid, false );
1261     }
1262
1263     vlc_mutex_lock( &p_sys->csa_lock );
1264     if( p_sys->csa )
1265     {
1266         var_DelCallback( p_demux, "ts-csa-ck", ChangeKeyCallback, NULL );
1267         var_DelCallback( p_demux, "ts-csa2-ck", ChangeKeyCallback, NULL );
1268         csa_Delete( p_sys->csa );
1269     }
1270     vlc_mutex_unlock( &p_sys->csa_lock );
1271
1272     TAB_CLEAN( p_sys->i_pmt, p_sys->pmt );
1273
1274     free( p_sys->programs_list.p_values );
1275
1276     free( p_sys->p_pcrs );
1277     free( p_sys->p_pos );
1278
1279 #ifdef HAVE_ARIBB24
1280     if ( p_sys->arib.p_instance )
1281         arib_instance_destroy( p_sys->arib.p_instance );
1282 #endif
1283
1284     if ( p_sys->arib.b25stream )
1285     {
1286         p_sys->arib.b25stream->p_source = NULL; /* don't chain kill demuxer's source */
1287         stream_Delete( p_sys->arib.b25stream );
1288     }
1289
1290     vlc_mutex_destroy( &p_sys->csa_lock );
1291     free( p_sys );
1292 }
1293
1294 /*****************************************************************************
1295  * ChangeKeyCallback: called when changing the odd encryption key on the fly.
1296  *****************************************************************************/
1297 static int ChangeKeyCallback( vlc_object_t *p_this, char const *psz_cmd,
1298                            vlc_value_t oldval, vlc_value_t newval,
1299                            void *p_data )
1300 {
1301     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
1302     demux_t     *p_demux = (demux_t*)p_this;
1303     demux_sys_t *p_sys = p_demux->p_sys;
1304     int         i_tmp = (intptr_t)p_data;
1305
1306     vlc_mutex_lock( &p_sys->csa_lock );
1307     if ( i_tmp )
1308         i_tmp = csa_SetCW( p_this, p_sys->csa, newval.psz_string, true );
1309     else
1310         i_tmp = csa_SetCW( p_this, p_sys->csa, newval.psz_string, false );
1311
1312     vlc_mutex_unlock( &p_sys->csa_lock );
1313     return i_tmp;
1314 }
1315
1316 /*****************************************************************************
1317  * Demux:
1318  *****************************************************************************/
1319 static int Demux( demux_t *p_demux )
1320 {
1321     demux_sys_t *p_sys = p_demux->p_sys;
1322     bool b_wait_es = p_sys->i_pmt_es <= 0;
1323
1324     /* We read at most 100 TS packet or until a frame is completed */
1325     for( int i_pkt = 0; i_pkt < p_sys->i_ts_read; i_pkt++ )
1326     {
1327         bool         b_frame = false;
1328         block_t     *p_pkt;
1329         if( !(p_pkt = ReadTSPacket( p_demux )) )
1330         {
1331             return 0;
1332         }
1333
1334         if( p_sys->b_start_record )
1335         {
1336             /* Enable recording once synchronized */
1337             stream_Control( p_sys->stream, STREAM_SET_RECORD_STATE, true, "ts" );
1338             p_sys->b_start_record = false;
1339         }
1340
1341         /* Parse the TS packet */
1342         ts_pid_t *p_pid = &p_sys->pid[PIDGet( p_pkt )];
1343
1344         /* Probe streams to build PAT/PMT after 140ms in case we don't see any PAT */
1345         if( !p_sys->pid[0].b_seen &&
1346             (p_pid->probed.i_type == 0 || p_pid->i_pid == p_sys->patfix.i_timesourcepid) &&
1347             (p_pkt->p_buffer[1] & 0xC0) == 0x40 && /* Payload start but not corrupt */
1348             (p_pkt->p_buffer[3] & 0xD0) == 0x10 )  /* Has payload but is not encrypted */
1349         {
1350             ProbePES( p_demux, p_pid, p_pkt->p_buffer + 4, p_pkt->p_buffer[3] & 0x20 /* Adaptation field */);
1351         }
1352
1353         if( p_pid->b_valid )
1354         {
1355             if( p_pid->psi )
1356             {
1357                 if( p_pid->i_pid == 0 || ( p_sys->b_dvb_meta && ( p_pid->i_pid == 0x11 || p_pid->i_pid == 0x12 || p_pid->i_pid == 0x14 ) ) )
1358                 {
1359                     dvbpsi_PushPacket( p_pid->psi->handle, p_pkt->p_buffer );
1360                 }
1361                 else
1362                 {
1363                     for( int i_prg = 0; i_prg < p_pid->psi->i_prg; i_prg++ )
1364                     {
1365                         dvbpsi_PushPacket( p_pid->psi->prg[i_prg]->handle,
1366                                            p_pkt->p_buffer );
1367                     }
1368                 }
1369                 block_Release( p_pkt );
1370             }
1371             else
1372             {
1373                 if(p_sys->b_delay_es_creation) /* No longer delay ES since that pid's program sends data */
1374                     AddAndCreateES( p_demux, NULL );
1375                 b_frame = GatherData( p_demux, p_pid, p_pkt );
1376             }
1377         }
1378         else
1379         {
1380             if( !p_pid->b_seen )
1381             {
1382                 msg_Dbg( p_demux, "pid[%d] unknown", p_pid->i_pid );
1383             }
1384             /* We have to handle PCR if present */
1385             PCRHandle( p_demux, p_pid, p_pkt );
1386             block_Release( p_pkt );
1387         }
1388         p_pid->b_seen = true;
1389
1390         if( b_frame || ( b_wait_es && p_sys->i_pmt_es > 0 ) )
1391             break;
1392     }
1393
1394     demux_UpdateTitleFromStream( p_demux );
1395     return 1;
1396 }
1397
1398 /*****************************************************************************
1399  * Control:
1400  *****************************************************************************/
1401 static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_length )
1402 {
1403     demux_sys_t *p_sys = p_demux->p_sys;
1404     if( pi_length )
1405         *pi_length = 0;
1406     if( pi_time )
1407         *pi_time = 0;
1408
1409     if( p_sys->i_dvb_length > 0 )
1410     {
1411         const int64_t t = mdate() + p_sys->i_tdt_delta;
1412
1413         if( p_sys->i_dvb_start <= t && t < p_sys->i_dvb_start + p_sys->i_dvb_length )
1414         {
1415             if( pi_length )
1416                 *pi_length = p_sys->i_dvb_length;
1417             if( pi_time )
1418                 *pi_time   = t - p_sys->i_dvb_start;
1419             return VLC_SUCCESS;
1420         }
1421     }
1422     return VLC_EGENERIC;
1423 }
1424
1425 static int Control( demux_t *p_demux, int i_query, va_list args )
1426 {
1427     demux_sys_t *p_sys = p_demux->p_sys;
1428     double f, *pf;
1429     bool b_bool, *pb_bool;
1430     int64_t i64;
1431     int64_t *pi64;
1432     int i_int;
1433
1434     switch( i_query )
1435     {
1436     case DEMUX_GET_POSITION:
1437         pf = (double*) va_arg( args, double* );
1438
1439         if( p_sys->b_force_seek_per_percent ||
1440             (p_sys->b_dvb_meta && p_sys->b_access_control) ||
1441             p_sys->i_current_pcr - p_sys->i_first_pcr < 0 ||
1442             p_sys->i_last_pcr - p_sys->i_first_pcr <= 0 )
1443         {
1444             int64_t i_time, i_length;
1445             if( !DVBEventInformation( p_demux, &i_time, &i_length ) && i_length > 0 )
1446                 *pf = (double)i_time/(double)i_length;
1447             else if( (i64 = stream_Size( p_sys->stream) ) > 0 )
1448             {
1449                 int64_t offset = stream_Tell( p_sys->stream );
1450
1451                 *pf = (double)offset / (double)i64;
1452             }
1453             else
1454                 *pf = 0.0;
1455         }
1456         else
1457         {
1458             *pf = (double)(p_sys->i_current_pcr - p_sys->i_first_pcr) / (double)(p_sys->i_last_pcr - p_sys->i_first_pcr);
1459         }
1460         return VLC_SUCCESS;
1461
1462     case DEMUX_SET_POSITION:
1463         f = (double) va_arg( args, double );
1464
1465         if(!p_sys->b_canseek)
1466             return VLC_EGENERIC;
1467
1468         if( p_sys->b_force_seek_per_percent ||
1469             (p_sys->b_dvb_meta && p_sys->b_access_control) ||
1470             p_sys->i_last_pcr - p_sys->i_first_pcr <= 0 )
1471         {
1472             i64 = stream_Size( p_sys->stream );
1473             if( stream_Seek( p_sys->stream, (int64_t)(i64 * f) ) )
1474                 return VLC_EGENERIC;
1475         }
1476         else
1477         {
1478             if( Seek( p_demux, f ) )
1479             {
1480                 p_sys->b_force_seek_per_percent = true;
1481                 return VLC_EGENERIC;
1482             }
1483         }
1484         return VLC_SUCCESS;
1485
1486     case DEMUX_GET_TIME:
1487         pi64 = (int64_t*)va_arg( args, int64_t * );
1488         if( (p_sys->b_dvb_meta && p_sys->b_access_control) ||
1489             p_sys->b_force_seek_per_percent ||
1490             p_sys->i_current_pcr - p_sys->i_first_pcr < 0 )
1491         {
1492             if( DVBEventInformation( p_demux, pi64, NULL ) )
1493             {
1494                 *pi64 = 0;
1495             }
1496         }
1497         else
1498         {
1499             *pi64 = (p_sys->i_current_pcr - p_sys->i_first_pcr) * 100 / 9;
1500         }
1501         return VLC_SUCCESS;
1502
1503     case DEMUX_GET_LENGTH:
1504         pi64 = (int64_t*)va_arg( args, int64_t * );
1505         if( (p_sys->b_dvb_meta && p_sys->b_access_control) ||
1506             p_sys->b_force_seek_per_percent ||
1507             p_sys->i_last_pcr - p_sys->i_first_pcr <= 0 )
1508         {
1509             if( DVBEventInformation( p_demux, NULL, pi64 ) )
1510             {
1511                 *pi64 = 0;
1512             }
1513         }
1514         else
1515         {
1516             *pi64 = (p_sys->i_last_pcr - p_sys->i_first_pcr) * 100 / 9;
1517         }
1518         return VLC_SUCCESS;
1519
1520     case DEMUX_SET_GROUP:
1521     {
1522         vlc_list_t *p_list;
1523
1524         i_int = (int)va_arg( args, int );
1525         p_list = (vlc_list_t *)va_arg( args, vlc_list_t * );
1526         msg_Dbg( p_demux, "DEMUX_SET_GROUP %d %p", i_int, p_list );
1527
1528         if( i_int == 0 && p_sys->i_current_program > 0 )
1529             i_int = p_sys->i_current_program;
1530
1531         if( p_sys->i_current_program > 0 )
1532         {
1533             if( p_sys->i_current_program != i_int )
1534                 SetPrgFilter( p_demux, p_sys->i_current_program, false );
1535         }
1536         else if( p_sys->i_current_program < 0 )
1537         {
1538             for( int i = 0; i < p_sys->programs_list.i_count; i++ )
1539                 SetPrgFilter( p_demux, p_sys->programs_list.p_values[i].i_int, false );
1540         }
1541
1542         if( i_int > 0 )
1543         {
1544             p_sys->i_current_program = i_int;
1545             SetPrgFilter( p_demux, p_sys->i_current_program, true );
1546         }
1547         else if( i_int < 0 )
1548         {
1549             p_sys->i_current_program = -1;
1550             p_sys->programs_list.i_count = 0;
1551             if( p_list )
1552             {
1553                 vlc_list_t *p_dst = &p_sys->programs_list;
1554                 free( p_dst->p_values );
1555
1556                 p_dst->p_values = calloc( p_list->i_count,
1557                                           sizeof(*p_dst->p_values) );
1558                 if( p_dst->p_values )
1559                 {
1560                     p_dst->i_count = p_list->i_count;
1561                     for( int i = 0; i < p_list->i_count; i++ )
1562                     {
1563                         p_dst->p_values[i] = p_list->p_values[i];
1564                         SetPrgFilter( p_demux, p_dst->p_values[i].i_int, true );
1565                     }
1566                 }
1567             }
1568         }
1569         return VLC_SUCCESS;
1570     }
1571
1572     case DEMUX_GET_TITLE_INFO:
1573     {
1574         struct input_title_t ***v = va_arg( args, struct input_title_t*** );
1575         int *c = va_arg( args, int * );
1576
1577         *va_arg( args, int* ) = 0; /* Title offset */
1578         *va_arg( args, int* ) = 0; /* Chapter offset */
1579         return stream_Control( p_sys->stream, STREAM_GET_TITLE_INFO, v, c );
1580     }
1581
1582     case DEMUX_SET_TITLE:
1583         return stream_vaControl( p_sys->stream, STREAM_SET_TITLE, args );
1584
1585     case DEMUX_SET_SEEKPOINT:
1586         return stream_vaControl( p_sys->stream, STREAM_SET_SEEKPOINT, args );
1587
1588     case DEMUX_GET_META:
1589         return stream_vaControl( p_sys->stream, STREAM_GET_META, args );
1590
1591     case DEMUX_CAN_RECORD:
1592         pb_bool = (bool*)va_arg( args, bool * );
1593         *pb_bool = true;
1594         return VLC_SUCCESS;
1595
1596     case DEMUX_SET_RECORD_STATE:
1597         b_bool = (bool)va_arg( args, int );
1598
1599         if( !b_bool )
1600             stream_Control( p_sys->stream, STREAM_SET_RECORD_STATE, false );
1601         p_sys->b_start_record = b_bool;
1602         return VLC_SUCCESS;
1603
1604     case DEMUX_GET_SIGNAL:
1605         return stream_vaControl( p_sys->stream, STREAM_GET_SIGNAL, args );
1606
1607     default:
1608         return VLC_EGENERIC;
1609     }
1610 }
1611
1612 /*****************************************************************************
1613  *
1614  *****************************************************************************/
1615 static int UserPmt( demux_t *p_demux, const char *psz_fmt )
1616 {
1617     demux_sys_t *p_sys = p_demux->p_sys;
1618     char *psz_dup = strdup( psz_fmt );
1619     char *psz = psz_dup;
1620     int  i_pid;
1621     int  i_number;
1622     ts_prg_psi_t *prg = NULL;
1623
1624     if( !psz_dup )
1625         return VLC_ENOMEM;
1626
1627     /* Parse PID */
1628     i_pid = strtol( psz, &psz, 0 );
1629     if( i_pid < 2 || i_pid >= 8192 )
1630         goto error;
1631
1632     /* Parse optional program number */
1633     i_number = 0;
1634     if( *psz == ':' )
1635         i_number = strtol( &psz[1], &psz, 0 );
1636
1637     /* */
1638     ts_pid_t *pmt = &p_sys->pid[i_pid];
1639
1640     msg_Dbg( p_demux, "user pmt specified (pid=%d,number=%d)", i_pid, i_number );
1641     PIDInit( pmt, true, NULL );
1642
1643     /* Dummy PMT */
1644     prg = calloc( 1, sizeof( ts_prg_psi_t ) );
1645     if( !prg )
1646         goto error;
1647
1648     prg->i_pid_pcr  = -1;
1649     prg->i_pid_pmt  = -1;
1650     prg->i_version  = -1;
1651     prg->i_number   = i_number != 0 ? i_number : TS_USER_PMT_NUMBER;
1652 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1653     prg->handle = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG );
1654     if( !prg->handle )
1655         goto error;
1656     prg->handle->p_sys = (void *) VLC_OBJECT(p_demux);
1657     if( !dvbpsi_pmt_attach( prg->handle,
1658                             ((i_number != TS_USER_PMT_NUMBER ? i_number : 1)),
1659                             PMTCallBack, p_demux ) )
1660     {
1661         dvbpsi_delete( prg->handle );
1662         prg->handle = NULL;
1663         goto error;
1664     }
1665 #else
1666     prg->handle     = dvbpsi_AttachPMT(
1667         ((i_number != TS_USER_PMT_NUMBER) ? i_number : 1),
1668         PMTCallBack, p_demux );
1669 #endif
1670     TAB_APPEND( pmt->psi->i_prg, pmt->psi->prg, prg );
1671
1672     psz = strchr( psz, '=' );
1673     if( psz )
1674         psz++;
1675     while( psz && *psz )
1676     {
1677         char *psz_next = strchr( psz, ',' );
1678         int i_pid;
1679
1680         if( psz_next )
1681             *psz_next++ = '\0';
1682
1683         i_pid = strtol( psz, &psz, 0 );
1684         if( *psz != ':' || i_pid < 2 || i_pid >= 8192 )
1685             goto next;
1686
1687         char *psz_opt = &psz[1];
1688         if( !strcmp( psz_opt, "pcr" ) )
1689         {
1690             prg->i_pid_pcr = i_pid;
1691         }
1692         else if( !p_sys->pid[i_pid].b_valid )
1693         {
1694             ts_pid_t *pid = &p_sys->pid[i_pid];
1695
1696             char *psz_arg = strchr( psz_opt, '=' );
1697             if( psz_arg )
1698                 *psz_arg++ = '\0';
1699
1700             PIDInit( pid, false, pmt->psi);
1701             if( prg->i_pid_pcr <= 0 )
1702                 prg->i_pid_pcr = i_pid;
1703
1704             if( psz_arg && strlen( psz_arg ) == 4 )
1705             {
1706                 const vlc_fourcc_t i_codec = VLC_FOURCC( psz_arg[0], psz_arg[1],
1707                                                          psz_arg[2], psz_arg[3] );
1708                 int i_cat = UNKNOWN_ES;
1709                 es_format_t *fmt = &pid->es->fmt;
1710
1711                 if( !strcmp( psz_opt, "video" ) )
1712                     i_cat = VIDEO_ES;
1713                 else if( !strcmp( psz_opt, "audio" ) )
1714                     i_cat = AUDIO_ES;
1715                 else if( !strcmp( psz_opt, "spu" ) )
1716                     i_cat = SPU_ES;
1717
1718                 es_format_Init( fmt, i_cat, i_codec );
1719                 fmt->b_packetized = false;
1720             }
1721             else
1722             {
1723                 const int i_stream_type = strtol( psz_opt, NULL, 0 );
1724                 PIDFillFormat( &pid->es->fmt, i_stream_type );
1725             }
1726             pid->es->fmt.i_group = i_number;
1727             if( p_sys->b_es_id_pid )
1728                 pid->es->fmt.i_id = i_pid;
1729
1730             if( pid->es->fmt.i_cat != UNKNOWN_ES )
1731             {
1732                 msg_Dbg( p_demux, "  * es pid=%d fcc=%4.4s", i_pid,
1733                          (char*)&pid->es->fmt.i_codec );
1734                 pid->es->id = es_out_Add( p_demux->out,
1735                                           &pid->es->fmt );
1736                 p_sys->i_pmt_es++;
1737             }
1738         }
1739
1740     next:
1741         psz = psz_next;
1742     }
1743
1744     p_sys->b_user_pmt = true;
1745     TAB_APPEND( p_sys->i_pmt, p_sys->pmt, pmt );
1746     free( psz_dup );
1747     return VLC_SUCCESS;
1748
1749 error:
1750     free( prg );
1751     free( psz_dup );
1752     return VLC_EGENERIC;
1753 }
1754
1755 static int SetPIDFilter( demux_t *p_demux, int i_pid, bool b_selected )
1756 {
1757     demux_sys_t *p_sys = p_demux->p_sys;
1758
1759     if( !p_sys->b_access_control )
1760         return VLC_EGENERIC;
1761
1762     return stream_Control( p_sys->stream, STREAM_SET_PRIVATE_ID_STATE,
1763                            i_pid, b_selected );
1764 }
1765
1766 static void SetPrgFilter( demux_t *p_demux, int i_prg_id, bool b_selected )
1767 {
1768     demux_sys_t *p_sys = p_demux->p_sys;
1769     ts_prg_psi_t *p_prg = NULL;
1770     int i_pmt_pid = -1;
1771
1772     p_sys->b_disable_pcr = !p_sys->b_trust_pcr;
1773
1774     /* Search pmt to be unselected */
1775     for( int i = 0; i < p_sys->i_pmt; i++ )
1776     {
1777         ts_pid_t *pmt = p_sys->pmt[i];
1778
1779         for( int i_prg = 0; i_prg < pmt->psi->i_prg; i_prg++ )
1780         {
1781             if( pmt->psi->prg[i_prg]->i_number == i_prg_id )
1782             {
1783                 i_pmt_pid = p_sys->pmt[i]->i_pid;
1784                 p_prg = p_sys->pmt[i]->psi->prg[i_prg];
1785                 break;
1786             }
1787         }
1788         if( i_pmt_pid > 0 )
1789             break;
1790     }
1791     if( i_pmt_pid <= 0 )
1792         return;
1793     assert( p_prg );
1794
1795     SetPIDFilter( p_demux, i_pmt_pid, b_selected );
1796     if( p_prg->i_pid_pcr > 0 )
1797         SetPIDFilter( p_demux, p_prg->i_pid_pcr, b_selected );
1798
1799     /* All ES */
1800     for( int i = 2; i < 8192; i++ )
1801     {
1802         ts_pid_t *pid = &p_sys->pid[i];
1803
1804         if( !pid->b_valid || pid->psi )
1805             continue;
1806
1807         for( int i_prg = 0; i_prg < pid->p_owner->i_prg; i_prg++ )
1808         {
1809             if( pid->p_owner->prg[i_prg]->i_pid_pmt == i_pmt_pid && pid->es->id )
1810             {
1811                 /* We only remove/select es that aren't defined by extra pmt */
1812                 SetPIDFilter( p_demux, i, b_selected );
1813                 break;
1814             }
1815         }
1816     }
1817 }
1818
1819 static void PIDInit( ts_pid_t *pid, bool b_psi, ts_psi_t *p_owner )
1820 {
1821     bool b_old_valid = pid->b_valid;
1822
1823     pid->b_valid    = true;
1824     pid->i_cc       = 0xff;
1825     pid->b_scrambled = false;
1826     pid->p_owner    = p_owner;
1827     pid->i_owner_number = 0;
1828
1829     TAB_INIT( pid->i_extra_es, pid->extra_es );
1830
1831     if( b_psi )
1832     {
1833         pid->es  = NULL;
1834
1835         if( !b_old_valid )
1836         {
1837             pid->psi = xmalloc( sizeof( ts_psi_t ) );
1838             pid->psi->handle = NULL;
1839             TAB_INIT( pid->psi->i_prg, pid->psi->prg );
1840         }
1841         assert( pid->psi );
1842
1843         pid->psi->i_pat_version  = -1;
1844         pid->psi->i_sdt_version  = -1;
1845         if( p_owner )
1846         {
1847             ts_prg_psi_t *prg = malloc( sizeof( ts_prg_psi_t ) );
1848             if( !prg )
1849                 return;
1850             /* PMT */
1851             prg->i_version  = -1;
1852             prg->i_number   = -1;
1853             prg->i_pid_pcr  = -1;
1854             prg->i_pid_pmt  = -1;
1855             prg->i_pcr_value= -1;
1856             prg->iod        = NULL;
1857             prg->handle     = NULL;
1858
1859             TAB_APPEND( pid->psi->i_prg, pid->psi->prg, prg );
1860         }
1861     }
1862     else
1863     {
1864         pid->psi = NULL;
1865         pid->es  = calloc( 1, sizeof( ts_es_t ) );
1866         if( !pid->es )
1867             return;
1868
1869         es_format_Init( &pid->es->fmt, UNKNOWN_ES, 0 );
1870         pid->es->data_type = TS_ES_DATA_PES;
1871         pid->es->pp_last = &pid->es->p_data;
1872     }
1873 }
1874
1875 static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
1876 {
1877     demux_sys_t *p_sys = p_demux->p_sys;
1878     es_out_t *out = p_demux->out;
1879
1880     if( pid->psi )
1881     {
1882         if( pid->psi->handle )
1883         {
1884 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1885             if( dvbpsi_decoder_present( pid->psi->handle ) )
1886                 dvbpsi_pmt_detach( pid->psi->handle );
1887             dvbpsi_delete( pid->psi->handle );
1888             pid->psi->handle = NULL;
1889 #else
1890             dvbpsi_DetachPMT( pid->psi->handle );
1891 #endif
1892         }
1893         for( int i = 0; i < pid->psi->i_prg; i++ )
1894         {
1895             if( pid->psi->prg[i]->iod )
1896                 IODFree( pid->psi->prg[i]->iod );
1897             if( pid->psi->prg[i]->handle )
1898             {
1899 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
1900                 if( dvbpsi_decoder_present( pid->psi->prg[i]->handle ) )
1901                     dvbpsi_pmt_detach( pid->psi->prg[i]->handle );
1902                 dvbpsi_delete( pid->psi->prg[i]->handle );
1903 #else
1904                 dvbpsi_DetachPMT( pid->psi->prg[i]->handle );
1905 #endif
1906             }
1907             free( pid->psi->prg[i] );
1908         }
1909         free( pid->psi->prg );
1910         free( pid->psi );
1911     }
1912     else
1913     {
1914         if( pid->es->id )
1915         {
1916             es_out_Del( out, pid->es->id );
1917             p_sys->i_pmt_es--;
1918         }
1919
1920         if( pid->es->p_data )
1921             block_ChainRelease( pid->es->p_data );
1922
1923         es_format_Clean( &pid->es->fmt );
1924
1925         free( pid->es );
1926
1927         for( int i = 0; i < pid->i_extra_es; i++ )
1928         {
1929             if( pid->extra_es[i]->id )
1930             {
1931                 es_out_Del( out, pid->extra_es[i]->id );
1932                 p_sys->i_pmt_es--;
1933             }
1934
1935             if( pid->extra_es[i]->p_data )
1936                 block_ChainRelease( pid->extra_es[i]->p_data );
1937
1938             es_format_Clean( &pid->extra_es[i]->fmt );
1939
1940             free( pid->extra_es[i] );
1941         }
1942         if( pid->i_extra_es )
1943             free( pid->extra_es );
1944     }
1945
1946     pid->b_valid = false;
1947 }
1948
1949 static int16_t read_opus_flag(uint8_t **buf, size_t *len)
1950 {
1951     if (*len < 2)
1952         return -1;
1953
1954     int16_t ret = ((*buf)[0] << 8) | (*buf)[1];
1955
1956     *len -= 2;
1957     *buf += 2;
1958
1959     if (ret & (3<<13))
1960         ret = -1;
1961
1962     return ret;
1963 }
1964
1965 static block_t *Opus_Parse(demux_t *demux, block_t *block)
1966 {
1967     block_t *out = NULL;
1968     block_t **last = NULL;
1969
1970     uint8_t *buf = block->p_buffer;
1971     size_t len = block->i_buffer;
1972
1973     while (len > 3 && ((buf[0] << 3) | (buf[1] >> 5)) == 0x3ff) {
1974         int16_t start_trim = 0, end_trim = 0;
1975         int start_trim_flag        = (buf[1] >> 4) & 1;
1976         int end_trim_flag          = (buf[1] >> 3) & 1;
1977         int control_extension_flag = (buf[1] >> 2) & 1;
1978
1979         len -= 2;
1980         buf += 2;
1981
1982         unsigned au_size = 0;
1983         while (len--) {
1984             int c = *buf++;
1985             au_size += c;
1986             if (c != 0xff)
1987                 break;
1988         }
1989
1990         if (start_trim_flag) {
1991             start_trim = read_opus_flag(&buf, &len);
1992             if (start_trim < 0) {
1993                 msg_Err(demux, "Invalid start trimming flag");
1994             }
1995         }
1996         if (end_trim_flag) {
1997             end_trim = read_opus_flag(&buf, &len);
1998             if (end_trim < 0) {
1999                 msg_Err(demux, "Invalid end trimming flag");
2000             }
2001         }
2002         if (control_extension_flag && len) {
2003             unsigned l = *buf++; len--;
2004             if (l > len) {
2005                 msg_Err(demux, "Invalid control extension length %d > %zu", l, len);
2006                 break;
2007             }
2008             buf += l;
2009             len -= l;
2010         }
2011
2012         if (!au_size || au_size > len) {
2013             msg_Err(demux, "Invalid Opus AU size %d (PES %zu)", au_size, len);
2014             break;
2015         }
2016
2017         block_t *au = block_Alloc(au_size);
2018         if (!au)
2019             break;
2020         memcpy(au->p_buffer, buf, au_size);
2021         block_CopyProperties(au, block);
2022         au->p_next = NULL;
2023
2024         if (!out)
2025             out = au;
2026         else
2027             *last = au;
2028         last = &au->p_next;
2029
2030         au->i_nb_samples = opus_frame_duration(buf, au_size);
2031         if (end_trim && end_trim <= au->i_nb_samples)
2032             au->i_length = end_trim; /* Blatant abuse of the i_length field. */
2033         else
2034             au->i_length = 0;
2035
2036         if (start_trim && start_trim < (au->i_nb_samples - au->i_length)) {
2037             au->i_nb_samples -= start_trim;
2038             if (au->i_nb_samples == 0)
2039                 au->i_flags |= BLOCK_FLAG_PREROLL;
2040         }
2041
2042         buf += au_size;
2043         len -= au_size;
2044     }
2045
2046     block_Release(block);
2047     return out;
2048 }
2049
2050 /****************************************************************************
2051  * gathering stuff
2052  ****************************************************************************/
2053 static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
2054 {
2055     demux_sys_t *p_sys = p_demux->p_sys;
2056     uint8_t header[34];
2057     unsigned i_pes_size = 0;
2058     unsigned i_skip = 0;
2059     mtime_t i_dts = -1;
2060     mtime_t i_pts = -1;
2061     mtime_t i_length = 0;
2062
2063     /* FIXME find real max size */
2064     /* const int i_max = */ block_ChainExtract( p_pes, header, 34 );
2065
2066     if( pid->b_scrambled || header[0] != 0 || header[1] != 0 || header[2] != 1 )
2067     {
2068         if ( !pid->b_scrambled )
2069             msg_Warn( p_demux, "invalid header [0x%02x:%02x:%02x:%02x] (pid: %d)",
2070                         header[0], header[1],header[2],header[3], pid->i_pid );
2071         block_ChainRelease( p_pes );
2072         return;
2073     }
2074
2075     /* TODO check size */
2076     switch( header[3] )
2077     {
2078     case 0xBC:  /* Program stream map */
2079     case 0xBE:  /* Padding */
2080     case 0xBF:  /* Private stream 2 */
2081     case 0xF0:  /* ECM */
2082     case 0xF1:  /* EMM */
2083     case 0xFF:  /* Program stream directory */
2084     case 0xF2:  /* DSMCC stream */
2085     case 0xF8:  /* ITU-T H.222.1 type E stream */
2086         i_skip = 6;
2087         break;
2088     default:
2089         if( ( header[6]&0xC0 ) == 0x80 )
2090         {
2091             /* mpeg2 PES */
2092             i_skip = header[8] + 9;
2093
2094             if( header[7]&0x80 )    /* has pts */
2095             {
2096                 i_pts = ExtractPESTimestamp( &header[9] );
2097                 i_pts = AdjustPTSWrapAround( p_demux, i_pts );
2098
2099                 if( header[7]&0x40 )    /* has dts */
2100                 {
2101                     i_dts = ExtractPESTimestamp( &header[14] );
2102                     i_dts = AdjustPTSWrapAround( p_demux, i_dts );
2103                 }
2104             }
2105         }
2106         else
2107         {
2108             i_skip = 6;
2109             while( i_skip < 23 && header[i_skip] == 0xff )
2110             {
2111                 i_skip++;
2112             }
2113             if( i_skip == 23 )
2114             {
2115                 msg_Err( p_demux, "too much MPEG-1 stuffing" );
2116                 block_ChainRelease( p_pes );
2117                 return;
2118             }
2119             if( ( header[i_skip] & 0xC0 ) == 0x40 )
2120             {
2121                 i_skip += 2;
2122             }
2123
2124             if(  header[i_skip]&0x20 )
2125             {
2126                 i_pts = ExtractPESTimestamp( &header[i_skip] );
2127
2128                 if( header[i_skip]&0x10 )    /* has dts */
2129                 {
2130                     i_dts = ExtractPESTimestamp( &header[i_skip+5] );
2131                     i_skip += 10;
2132                 }
2133                 else
2134                 {
2135                     i_skip += 5;
2136                 }
2137             }
2138             else
2139             {
2140                 i_skip += 1;
2141             }
2142         }
2143         break;
2144     }
2145
2146     if( pid->es->fmt.i_codec == VLC_FOURCC( 'a', '5', '2', 'b' ) ||
2147         pid->es->fmt.i_codec == VLC_FOURCC( 'd', 't', 's', 'b' ) )
2148     {
2149         i_skip += 4;
2150     }
2151     else if( pid->es->fmt.i_codec == VLC_FOURCC( 'l', 'p', 'c', 'b' ) ||
2152              pid->es->fmt.i_codec == VLC_FOURCC( 's', 'p', 'u', 'b' ) ||
2153              pid->es->fmt.i_codec == VLC_FOURCC( 's', 'd', 'd', 'b' ) )
2154     {
2155         i_skip += 1;
2156     }
2157     else if( pid->es->fmt.i_codec == VLC_CODEC_SUBT &&
2158              pid->es->p_mpeg4desc )
2159     {
2160         decoder_config_descriptor_t *dcd = &pid->es->p_mpeg4desc->dec_descr;
2161
2162         if( dcd->i_extra > 2 &&
2163             dcd->p_extra[0] == 0x10 &&
2164             ( dcd->p_extra[1]&0x10 ) )
2165         {
2166             /* display length */
2167             if( p_pes->i_buffer + 2 <= i_skip )
2168                 i_length = GetWBE( &p_pes->p_buffer[i_skip] );
2169
2170             i_skip += 2;
2171         }
2172         if( p_pes->i_buffer + 2 <= i_skip )
2173             i_pes_size = GetWBE( &p_pes->p_buffer[i_skip] );
2174         /* */
2175         i_skip += 2;
2176     }
2177
2178     /* skip header */
2179     while( p_pes && i_skip > 0 )
2180     {
2181         if( p_pes->i_buffer <= i_skip )
2182         {
2183             block_t *p_next = p_pes->p_next;
2184
2185             i_skip -= p_pes->i_buffer;
2186             block_Release( p_pes );
2187             p_pes = p_next;
2188         }
2189         else
2190         {
2191             p_pes->i_buffer -= i_skip;
2192             p_pes->p_buffer += i_skip;
2193             break;
2194         }
2195     }
2196
2197     /* ISO/IEC 13818-1 2.7.5: if no pts and no dts, then dts == pts */
2198     if( i_pts >= 0 && i_dts < 0 )
2199         i_dts = i_pts;
2200
2201     if( p_pes )
2202     {
2203         block_t *p_block;
2204
2205         if( i_dts >= 0 )
2206             p_pes->i_dts = VLC_TS_0 + i_dts * 100 / 9;
2207
2208         if( i_pts >= 0 )
2209             p_pes->i_pts = VLC_TS_0 + i_pts * 100 / 9;
2210
2211         p_pes->i_length = i_length * 100 / 9;
2212
2213         p_block = block_ChainGather( p_pes );
2214         if( pid->es->fmt.i_codec == VLC_CODEC_SUBT )
2215         {
2216             if( i_pes_size > 0 && p_block->i_buffer > i_pes_size )
2217             {
2218                 p_block->i_buffer = i_pes_size;
2219             }
2220             /* Append a \0 */
2221             p_block = block_Realloc( p_block, 0, p_block->i_buffer + 1 );
2222             if( !p_block )
2223                 return;
2224             p_block->p_buffer[p_block->i_buffer -1] = '\0';
2225         }
2226         else if( pid->es->fmt.i_codec == VLC_CODEC_TELETEXT )
2227         {
2228             if( p_block->i_pts <= VLC_TS_INVALID )
2229             {
2230                 /* Teletext may have missing PTS (ETSI EN 300 472 Annexe A)
2231                  * In this case use the last PCR + 40ms */
2232                 for( int i = 0; pid->p_owner && i < pid->p_owner->i_prg; i++ )
2233                 {
2234                     if( pid->i_owner_number == pid->p_owner->prg[i]->i_number )
2235                     {
2236                         mtime_t i_pcr = pid->p_owner->prg[i]->i_pcr_value;
2237                         if( i_pcr > VLC_TS_INVALID )
2238                             p_block->i_pts = VLC_TS_0 + i_pcr * 100 / 9 + 40000;
2239                         break;
2240                     }
2241                 }
2242             }
2243         }
2244         else if( pid->es->fmt.i_codec == VLC_CODEC_ARIB_A ||
2245                  pid->es->fmt.i_codec == VLC_CODEC_ARIB_C )
2246         {
2247             if( p_block->i_pts <= VLC_TS_INVALID )
2248             {
2249                 if( i_pes_size > 0 && p_block->i_buffer > i_pes_size )
2250                 {
2251                     p_block->i_buffer = i_pes_size;
2252                 }
2253                 /* Append a \0 */
2254                 p_block = block_Realloc( p_block, 0, p_block->i_buffer + 1 );
2255                 if( !p_block )
2256                     return;
2257                 p_block->p_buffer[p_block->i_buffer -1] = '\0';
2258             }
2259         }
2260         else if( pid->es->fmt.i_codec == VLC_CODEC_OPUS)
2261         {
2262             p_block = Opus_Parse(p_demux, p_block);
2263         }
2264
2265         while (p_block) {
2266             block_t *p_next = p_block->p_next;
2267             p_block->p_next = NULL;
2268             for( int i = 0; i < pid->i_extra_es; i++ )
2269             {
2270                 es_out_Send( p_demux->out, pid->extra_es[i]->id,
2271                         block_Duplicate( p_block ) );
2272             }
2273
2274             PCRFixHandle( p_demux, p_block );
2275
2276             if ( p_sys->b_disable_pcr && p_block->i_dts > VLC_TS_INVALID )
2277                 es_out_Control( p_demux->out, ES_OUT_SET_GROUP_PCR,
2278                         pid->i_owner_number, p_block->i_dts);
2279
2280             if( !p_sys->b_disable_pcr && p_block->i_dts > VLC_TS_INVALID &&
2281                  p_block->i_dts < (VLC_TS_0 + p_sys->i_current_pcr * 100 / 9) )
2282                 msg_Warn( p_demux, "Broken stream: pid %d sends packets with dts %"PRId64"us later than pcr",
2283                           pid->i_pid, (p_sys->i_current_pcr * 100 / 9) - p_block->i_dts + VLC_TS_0  );
2284
2285             es_out_Send( p_demux->out, pid->es->id, p_block );
2286
2287             p_block = p_next;
2288         }
2289     }
2290     else
2291     {
2292         msg_Warn( p_demux, "empty pes" );
2293     }
2294 }
2295
2296 static void ParseTableSection( demux_t *p_demux, ts_pid_t *pid, block_t *p_data )
2297 {
2298     block_t *p_content = block_ChainGather( p_data );
2299     mtime_t i_date = -1;
2300     for( int i = 0; pid->p_owner && i < pid->p_owner->i_prg; i++ )
2301     {
2302         if( pid->i_owner_number == pid->p_owner->prg[i]->i_number )
2303         {
2304             i_date = pid->p_owner->prg[i]->i_pcr_value;
2305             if( i_date >= 0 )
2306                 break;
2307         }
2308     }
2309     if( i_date >= 0 )
2310     {
2311         if( pid->es->fmt.i_codec == VLC_CODEC_SCTE_27 )
2312         {
2313             /* We need to extract the truncated pts stored inside the payload */
2314             if( p_content->i_buffer > 9 && p_content->p_buffer[0] == 0xc6 )
2315             {
2316                 int i_index = 0;
2317                 size_t i_offset = 4;
2318                 if( p_content->p_buffer[3] & 0x40 )
2319                 {
2320                     i_index = ((p_content->p_buffer[7] & 0x0f) << 8) |
2321                               p_content->p_buffer[8];
2322                     i_offset = 9;
2323                 }
2324                 if( i_index == 0 && p_content->i_buffer > i_offset + 8 )
2325                 {
2326                     bool is_immediate = p_content->p_buffer[i_offset + 3] & 0x40;
2327                     if( !is_immediate )
2328                     {
2329                         mtime_t i_display_in = GetDWBE( &p_content->p_buffer[i_offset + 4] );
2330                         if( i_display_in < i_date )
2331                             i_date = i_display_in + (1ll << 32);
2332                         else
2333                             i_date = i_display_in;
2334                     }
2335
2336                 }
2337             }
2338         }
2339         p_content->i_dts =
2340         p_content->i_pts = VLC_TS_0 + i_date * 100 / 9;
2341     }
2342     es_out_Send( p_demux->out, pid->es->id, p_content );
2343
2344     PCRFixHandle( p_demux, p_content );
2345 }
2346 static void ParseData( demux_t *p_demux, ts_pid_t *pid )
2347 {
2348     block_t *p_data = pid->es->p_data;
2349
2350     /* remove the pes from pid */
2351     pid->es->p_data = NULL;
2352     pid->es->i_data_size = 0;
2353     pid->es->i_data_gathered = 0;
2354     pid->es->pp_last = &pid->es->p_data;
2355
2356     if( pid->es->data_type == TS_ES_DATA_PES )
2357     {
2358         ParsePES( p_demux, pid, p_data );
2359     }
2360     else if( pid->es->data_type == TS_ES_DATA_TABLE_SECTION )
2361     {
2362         ParseTableSection( p_demux, pid, p_data );
2363     }
2364     else
2365     {
2366         block_ChainRelease( p_data );
2367     }
2368 }
2369
2370 static block_t* ReadTSPacket( demux_t *p_demux )
2371 {
2372     demux_sys_t *p_sys = p_demux->p_sys;
2373
2374     block_t     *p_pkt;
2375
2376     /* Get a new TS packet */
2377     if( !( p_pkt = stream_Block( p_sys->stream, p_sys->i_packet_size ) ) )
2378     {
2379         msg_Dbg( p_demux, "eof ?" );
2380         return NULL;
2381     }
2382
2383     /* Skip header (BluRay streams).
2384      * re-sync logic would do this (by adjusting packet start), but this would result in losing first and last ts packets.
2385      * First packet is usually PAT, and losing it means losing whole first GOP. This is fatal with still-image based menus.
2386      */
2387     p_pkt->p_buffer += p_sys->i_packet_header_size;
2388     p_pkt->i_buffer -= p_sys->i_packet_header_size;
2389
2390     /* Check sync byte and re-sync if needed */
2391     if( p_pkt->p_buffer[0] != 0x47 )
2392     {
2393         msg_Warn( p_demux, "lost synchro" );
2394         block_Release( p_pkt );
2395         for( ;; )
2396         {
2397             const uint8_t *p_peek;
2398             int i_peek, i_skip = 0;
2399
2400             i_peek = stream_Peek( p_sys->stream, &p_peek,
2401                     p_sys->i_packet_size * 10 );
2402             if( i_peek < p_sys->i_packet_size + 1 )
2403             {
2404                 msg_Dbg( p_demux, "eof ?" );
2405                 return NULL;
2406             }
2407
2408             while( i_skip < i_peek - p_sys->i_packet_size )
2409             {
2410                 if( p_peek[i_skip + p_sys->i_packet_header_size] == 0x47 &&
2411                         p_peek[i_skip + p_sys->i_packet_header_size + p_sys->i_packet_size] == 0x47 )
2412                 {
2413                     break;
2414                 }
2415                 i_skip++;
2416             }
2417             msg_Dbg( p_demux, "skipping %d bytes of garbage", i_skip );
2418             stream_Read( p_sys->stream, NULL, i_skip );
2419
2420             if( i_skip < i_peek - p_sys->i_packet_size )
2421             {
2422                 break;
2423             }
2424         }
2425         if( !( p_pkt = stream_Block( p_sys->stream, p_sys->i_packet_size ) ) )
2426         {
2427             msg_Dbg( p_demux, "eof ?" );
2428             return NULL;
2429         }
2430     }
2431     return p_pkt;
2432 }
2433
2434 static mtime_t AdjustPCRWrapAround( demux_t *p_demux, mtime_t i_pcr )
2435 {
2436     demux_sys_t   *p_sys = p_demux->p_sys;
2437     /*
2438      * PCR is 33bit. If PCR reaches to 0x1FFFFFFFF (26:30:43.717), ressets from 0.
2439      * So, need to add 0x1FFFFFFFF, for calculating duration or current position.
2440      */
2441     mtime_t i_adjust = 0;
2442     int64_t i_pos = stream_Tell( p_sys->stream );
2443     int i;
2444     for( i = 1; i < p_sys->i_pcrs_num && p_sys->p_pos[i] <= i_pos; ++i )
2445     {
2446         if( p_sys->p_pcrs[i-1] > p_sys->p_pcrs[i] )
2447             i_adjust += 0x1FFFFFFFF;
2448     }
2449     if( p_sys->p_pcrs[i-1] > i_pcr )
2450         i_adjust += 0x1FFFFFFFF;
2451
2452     return i_pcr + i_adjust;
2453 }
2454
2455 static mtime_t AdjustPTSWrapAround( demux_t *p_demux, mtime_t i_pts )
2456 {
2457     demux_sys_t *p_sys = p_demux->p_sys;
2458     mtime_t i_pcr = p_sys->i_current_pcr;
2459
2460     mtime_t i_adjustremain = i_pcr % 0x1FFFFFFFF;
2461     mtime_t i_adjustbase = i_pcr - i_adjustremain;
2462
2463     mtime_t i_pts_adjust = i_adjustbase;
2464
2465     /* PTS has rolled first */
2466     if( i_adjustremain >= 0xFFFFFFFF && i_pts < 0xFFFFFFFF )
2467     {
2468         i_pts_adjust += 0x1FFFFFFFF;
2469     }
2470     /* PCR has rolled first (PTS is late!) */
2471     else if( i_adjustremain < 0xFFFFFFFF && i_pts >= 0xFFFFFFFF )
2472     {
2473         if( i_adjustbase >= 0x1FFFFFFFF ) /* we need to remove current roll */
2474             i_pts_adjust -= 0x1FFFFFFFF;
2475     }
2476
2477     i_pts += i_pts_adjust;
2478     return i_pts;
2479 }
2480
2481 static mtime_t GetPCR( block_t *p_pkt )
2482 {
2483     const uint8_t *p = p_pkt->p_buffer;
2484
2485     mtime_t i_pcr = -1;
2486
2487     if( ( p[3]&0x20 ) && /* adaptation */
2488         ( p[5]&0x10 ) &&
2489         ( p[4] >= 7 ) )
2490     {
2491         /* PCR is 33 bits */
2492         i_pcr = ( (mtime_t)p[6] << 25 ) |
2493                 ( (mtime_t)p[7] << 17 ) |
2494                 ( (mtime_t)p[8] << 9 ) |
2495                 ( (mtime_t)p[9] << 1 ) |
2496                 ( (mtime_t)p[10] >> 7 );
2497     }
2498     return i_pcr;
2499 }
2500
2501 static int SeekToPCR( demux_t *p_demux, int64_t i_pos )
2502 {
2503     demux_sys_t *p_sys = p_demux->p_sys;
2504
2505     mtime_t i_pcr = -1;
2506     const int64_t i_initial_pos = stream_Tell( p_sys->stream );
2507
2508     if( i_pos < 0 )
2509         return VLC_EGENERIC;
2510
2511     int64_t i_last_pos = stream_Size( p_sys->stream ) - p_sys->i_packet_size;
2512     if( i_pos > i_last_pos )
2513         i_pos = i_last_pos;
2514
2515     if( stream_Seek( p_sys->stream, i_pos ) )
2516         return VLC_EGENERIC;
2517
2518     for( ;; )
2519     {
2520         block_t *p_pkt;
2521
2522         if( !( p_pkt = ReadTSPacket( p_demux ) ) )
2523         {
2524             break;
2525         }
2526         if( PIDGet( p_pkt ) == p_sys->i_pid_ref_pcr )
2527         {
2528             i_pcr = GetPCR( p_pkt );
2529         }
2530         block_Release( p_pkt );
2531         if( i_pcr >= 0 )
2532             break;
2533         if( stream_Tell( p_sys->stream ) >= i_last_pos )
2534             break;
2535     }
2536     if( i_pcr < 0 )
2537     {
2538         stream_Seek( p_sys->stream, i_initial_pos );
2539         assert( i_initial_pos == stream_Tell( p_sys->stream ) );
2540         return VLC_EGENERIC;
2541     }
2542
2543     p_sys->i_current_pcr = i_pcr;
2544     return VLC_SUCCESS;
2545 }
2546
2547 static int Seek( demux_t *p_demux, double f_percent )
2548 {
2549     demux_sys_t *p_sys = p_demux->p_sys;
2550
2551     int64_t i_initial_pos = stream_Tell( p_sys->stream );
2552     mtime_t i_initial_pcr = p_sys->i_current_pcr;
2553
2554     /*
2555      * Find the time position by using binary search algorithm.
2556      */
2557     mtime_t i_target_pcr = (p_sys->i_last_pcr - p_sys->i_first_pcr) * f_percent + p_sys->i_first_pcr;
2558
2559     int64_t i_head_pos = 0;
2560     int64_t i_tail_pos;
2561     {
2562         mtime_t i_adjust = 0;
2563         int i;
2564         for( i = 1; i < p_sys->i_pcrs_num; ++i )
2565         {
2566             if( p_sys->p_pcrs[i-1] > p_sys->p_pcrs[i] )
2567                 i_adjust += 0x1FFFFFFFF;
2568             if( p_sys->p_pcrs[i] + i_adjust > i_target_pcr )
2569                 break;
2570         }
2571         i_head_pos = p_sys->p_pos[i-1];
2572         i_tail_pos = ( i < p_sys->i_pcrs_num ) ?  p_sys->p_pos[i] : stream_Size( p_sys->stream );
2573     }
2574     msg_Dbg( p_demux, "Seek():i_head_pos:%"PRId64", i_tail_pos:%"PRId64, i_head_pos, i_tail_pos);
2575
2576     bool b_found = false;
2577     int i_cnt = 0;
2578     while( i_head_pos <= i_tail_pos )
2579     {
2580         /* Round i_pos to a multiple of p_sys->i_packet_size */
2581         int64_t i_pos = i_head_pos + (i_tail_pos - i_head_pos) / 2;
2582         int64_t i_div = i_pos % p_sys->i_packet_size;
2583         i_pos -= i_div;
2584         if( SeekToPCR( p_demux, i_pos ) )
2585             break;
2586         p_sys->i_current_pcr = AdjustPCRWrapAround( p_demux, p_sys->i_current_pcr );
2587         int64_t i_diff_msec = (p_sys->i_current_pcr - i_target_pcr) * 100 / 9 / 1000;
2588         if( i_diff_msec > 500 )
2589         {
2590             i_tail_pos = i_pos - p_sys->i_packet_size;
2591         }
2592         else if( i_diff_msec < -500 )
2593         {
2594             i_head_pos = i_pos + p_sys->i_packet_size;
2595         }
2596         else
2597         {
2598             // diff time <= 500msec
2599             b_found = true;
2600             break;
2601         }
2602         ++i_cnt;
2603     }
2604     if( !b_found )
2605     {
2606         msg_Dbg( p_demux, "Seek():cannot find a time position. i_cnt:%d", i_cnt );
2607         stream_Seek( p_sys->stream, i_initial_pos );
2608         p_sys->i_current_pcr = i_initial_pcr;
2609         return VLC_EGENERIC;
2610     }
2611     else
2612     {
2613         msg_Dbg( p_demux, "Seek():can find a time position. i_cnt:%d", i_cnt );
2614         p_demux->p_sys->pcrfix.i_first_dts = 0;
2615         return VLC_SUCCESS;
2616     }
2617 }
2618
2619 static void GetFirstPCR( demux_t *p_demux )
2620 {
2621     demux_sys_t *p_sys = p_demux->p_sys;
2622
2623     int64_t i_initial_pos = stream_Tell( p_sys->stream );
2624
2625     if( stream_Seek( p_sys->stream, 0 ) )
2626         return;
2627
2628     for( ;; )
2629     {
2630         block_t     *p_pkt;
2631
2632         if( !( p_pkt = ReadTSPacket( p_demux ) ) )
2633         {
2634             break;
2635         }
2636         mtime_t i_pcr = GetPCR( p_pkt );
2637         if( i_pcr >= 0 )
2638         {
2639             p_sys->i_pid_ref_pcr = PIDGet( p_pkt );
2640             p_sys->i_first_pcr = i_pcr;
2641             p_sys->i_current_pcr = i_pcr;
2642         }
2643         block_Release( p_pkt );
2644         if( p_sys->i_first_pcr >= 0 )
2645             break;
2646     }
2647     stream_Seek( p_sys->stream, i_initial_pos );
2648 }
2649
2650 static void GetLastPCR( demux_t *p_demux )
2651 {
2652     demux_sys_t *p_sys = p_demux->p_sys;
2653
2654     const int64_t i_initial_pos = stream_Tell( p_sys->stream );
2655     mtime_t i_initial_pcr = p_sys->i_current_pcr;
2656
2657     int64_t i_stream_size = stream_Size( p_sys->stream );
2658     int64_t i_last_pos = i_stream_size - p_sys->i_packet_size;
2659     /* Round i_pos to a multiple of p_sys->i_packet_size */
2660     int64_t i_pos = i_last_pos - p_sys->i_packet_size * 4500; /* FIXME if the value is not reasonable, please change it. */
2661     int64_t i_div = i_pos % p_sys->i_packet_size;
2662     i_pos -= i_div;
2663
2664     if( i_pos <= i_initial_pos && i_pos >= i_stream_size )
2665         i_pos = i_initial_pos + p_sys->i_packet_size;
2666     if( i_pos < 0 && i_pos >= i_stream_size )
2667         return;
2668
2669     for( ;; )
2670     {
2671         if( SeekToPCR( p_demux, i_pos ) )
2672             break;
2673         p_sys->i_last_pcr = AdjustPCRWrapAround( p_demux, p_sys->i_current_pcr );
2674         if( ( i_pos = stream_Tell( p_sys->stream ) ) >= i_last_pos )
2675             break;
2676     }
2677
2678     stream_Seek( p_sys->stream, i_initial_pos );
2679     assert( i_initial_pos == stream_Tell( p_sys->stream ) );
2680     p_sys->i_current_pcr = i_initial_pcr;
2681 }
2682
2683 static void CheckPCR( demux_t *p_demux )
2684 {
2685     demux_sys_t   *p_sys = p_demux->p_sys;
2686
2687     int64_t i_initial_pos = stream_Tell( p_sys->stream );
2688     mtime_t i_initial_pcr = p_sys->i_current_pcr;
2689
2690     int64_t i_size = stream_Size( p_sys->stream );
2691
2692     int i = 0;
2693     p_sys->p_pcrs[0] = p_sys->i_first_pcr;
2694     p_sys->p_pos[0] = i_initial_pos;
2695
2696     for( i = 1; i < p_sys->i_pcrs_num; ++i )
2697     {
2698         /* Round i_pos to a multiple of p_sys->i_packet_size */
2699         int64_t i_pos = i_size / p_sys->i_pcrs_num * i;
2700         int64_t i_div = i_pos % p_sys->i_packet_size;
2701         i_pos -= i_div;
2702         if( SeekToPCR( p_demux, i_pos ) )
2703             break;
2704         p_sys->p_pcrs[i] = p_sys->i_current_pcr;
2705         p_sys->p_pos[i] = stream_Tell( p_sys->stream );
2706         if( p_sys->p_pcrs[i-1] > p_sys->p_pcrs[i] )
2707         {
2708             msg_Dbg( p_demux, "PCR Wrap Around found between %d%% and %d%% (pcr:%"PRId64"(0x%09"PRIx64") pcr:%"PRId64"(0x%09"PRIx64"))",
2709                     (int)((i-1)*100/p_sys->i_pcrs_num), (int)(i*100/p_sys->i_pcrs_num), p_sys->p_pcrs[i-1], p_sys->p_pcrs[i-1], p_sys->p_pcrs[i], p_sys->p_pcrs[i] );
2710         }
2711     }
2712     if( i < p_sys->i_pcrs_num )
2713     {
2714         msg_Dbg( p_demux, "Force Seek Per Percent: Seeking failed at %d%%.", (int)(i*100/p_sys->i_pcrs_num) );
2715         p_sys->b_force_seek_per_percent = true;
2716     }
2717
2718     stream_Seek( p_sys->stream, i_initial_pos );
2719     p_sys->i_current_pcr = i_initial_pcr;
2720 }
2721
2722 static void PCRHandle( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
2723 {
2724     demux_sys_t   *p_sys = p_demux->p_sys;
2725
2726     if( p_sys->i_pmt_es <= 0 )
2727         return;
2728
2729     mtime_t i_pcr = GetPCR( p_bk );
2730     if( i_pcr < 0 )
2731         return;
2732
2733     i_pcr = AdjustPCRWrapAround( p_demux, i_pcr );
2734
2735     if( p_sys->i_pid_ref_pcr == pid->i_pid )
2736         p_sys->i_current_pcr = i_pcr;
2737
2738     /* Search program and set the PCR */
2739     for( int i = 0; i < p_sys->i_pmt; i++ )
2740     {
2741         int i_group = -1;
2742         for( int i_prg = 0; i_prg < p_sys->pmt[i]->psi->i_prg; i_prg++ )
2743         {
2744             ts_prg_psi_t *p_prg = p_sys->pmt[i]->psi->prg[i_prg];
2745
2746             if( p_prg->i_pid_pcr == 0x1FFF ) /* That program has no dedicated PCR pid ISO/IEC 13818-1 2.4.4.9 */
2747             {
2748                 if( pid->p_owner ) /* PCR shall be on pid itself */
2749                 {
2750                     p_prg->i_pcr_value = i_pcr; /* ? update PCR for the whole group program */
2751                     i_group = p_prg->i_number;
2752                     p_sys->pcrfix.b_program_pcr_seen = true;
2753                     p_sys->pcrfix.i_first_dts = 0;
2754                     p_sys->b_disable_pcr = !p_sys->b_trust_pcr;
2755                 }
2756                 else
2757                 {
2758                     msg_Warn(p_demux, "discarding PCR update from pid %d which has no owner", pid->i_pid);
2759                 }
2760                 break;
2761             }
2762             else /* set PCR provided by current pid to program(s) referencing it */
2763             {
2764                 /* Can be dedicated PCR pid (no owned then) or another pid (owner == pmt) */
2765                 if( p_prg->i_pid_pcr == pid->i_pid ) /* If that program references current pid as PCR */
2766                 {
2767                     p_prg->i_pcr_value = i_pcr;
2768                     i_group = p_prg->i_number; /* We've found a target group for update */
2769                     p_sys->pcrfix.b_program_pcr_seen = true;
2770                     p_sys->pcrfix.i_first_dts = 0;
2771                     p_sys->b_disable_pcr = !p_sys->b_trust_pcr;
2772                 }
2773             }
2774         }
2775         if ( !p_sys->b_disable_pcr && i_group > 0 && p_sys->i_pmt_es )
2776         {
2777             es_out_Control( p_demux->out, ES_OUT_SET_GROUP_PCR,
2778               i_group, VLC_TS_0 + i_pcr * 100 / 9 );
2779         }
2780     }
2781 }
2782
2783 static void PCRFixHandle( demux_t *p_demux, block_t *p_block )
2784 {
2785     demux_sys_t *p_sys = p_demux->p_sys;
2786     /* Record the first data packet timestamp in case there wont be any PCR */
2787     if( !p_sys->pcrfix.b_program_pcr_seen && !p_sys->b_disable_pcr )
2788     {
2789         if( !p_sys->pcrfix.i_first_dts )
2790         {
2791             p_sys->pcrfix.i_first_dts = p_block->i_dts;
2792         }
2793         else if( p_block->i_dts - p_sys->pcrfix.i_first_dts > CLOCK_FREQ / 10 ) /* "shall not exceed 100ms" */
2794         {
2795             p_sys->b_disable_pcr = true;
2796             msg_Warn( p_demux, "No PCR received for program %d, set up workaround",
2797                       p_sys->i_current_program );
2798         }
2799     }
2800 }
2801
2802 static bool GatherData( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
2803 {
2804     const uint8_t *p = p_bk->p_buffer;
2805     const bool b_unit_start = p[1]&0x40;
2806     const bool b_scrambled  = p[3]&0x80;
2807     const bool b_adaptation = p[3]&0x20;
2808     const bool b_payload    = p[3]&0x10;
2809     const int  i_cc         = p[3]&0x0f; /* continuity counter */
2810     bool       b_discontinuity = false;  /* discontinuity */
2811
2812     /* transport_scrambling_control is ignored */
2813     int         i_skip = 0;
2814     bool        i_ret  = false;
2815
2816 #if 0
2817     msg_Dbg( p_demux, "pid=%d unit_start=%d adaptation=%d payload=%d "
2818              "cc=0x%x", pid->i_pid, b_unit_start, b_adaptation,
2819              b_payload, i_cc );
2820 #endif
2821
2822     /* For now, ignore additional error correction
2823      * TODO: handle Reed-Solomon 204,188 error correction */
2824     p_bk->i_buffer = TS_PACKET_SIZE_188;
2825
2826     if( p[1]&0x80 )
2827     {
2828         msg_Dbg( p_demux, "transport_error_indicator set (pid=%d)",
2829                  pid->i_pid );
2830         if( pid->es->p_data ) //&& pid->es->fmt.i_cat == VIDEO_ES )
2831             pid->es->p_data->i_flags |= BLOCK_FLAG_CORRUPTED;
2832     }
2833
2834     if( p_demux->p_sys->csa )
2835     {
2836         vlc_mutex_lock( &p_demux->p_sys->csa_lock );
2837         csa_Decrypt( p_demux->p_sys->csa, p_bk->p_buffer, p_demux->p_sys->i_csa_pkt_size );
2838         vlc_mutex_unlock( &p_demux->p_sys->csa_lock );
2839     }
2840
2841     if( !b_adaptation )
2842     {
2843         /* We don't have any adaptation_field, so payload starts
2844          * immediately after the 4 byte TS header */
2845         i_skip = 4;
2846     }
2847     else
2848     {
2849         /* p[4] is adaptation_field_length minus one */
2850         i_skip = 5 + p[4];
2851         if( p[4] > 0 )
2852         {
2853             /* discontinuity indicator found in stream */
2854             b_discontinuity = (p[5]&0x80) ? true : false;
2855             if( b_discontinuity && pid->es->p_data )
2856             {
2857                 msg_Warn( p_demux, "discontinuity indicator (pid=%d) ",
2858                             pid->i_pid );
2859                 /* pid->es->p_data->i_flags |= BLOCK_FLAG_DISCONTINUITY; */
2860             }
2861 #if 0
2862             if( p[5]&0x40 )
2863                 msg_Dbg( p_demux, "random access indicator (pid=%d) ", pid->i_pid );
2864 #endif
2865         }
2866     }
2867
2868     /* Test continuity counter */
2869     /* continuous when (one of this):
2870         * diff == 1
2871         * diff == 0 and payload == 0
2872         * diff == 0 and duplicate packet (playload != 0) <- should we
2873         *   test the content ?
2874      */
2875     const int i_diff = ( i_cc - pid->i_cc )&0x0f;
2876     if( b_payload && i_diff == 1 )
2877     {
2878         pid->i_cc = ( pid->i_cc + 1 ) & 0xf;
2879     }
2880     else
2881     {
2882         if( pid->i_cc == 0xff )
2883         {
2884             msg_Warn( p_demux, "first packet for pid=%d cc=0x%x",
2885                       pid->i_pid, i_cc );
2886             pid->i_cc = i_cc;
2887         }
2888         else if( i_diff != 0 && !b_discontinuity )
2889         {
2890             msg_Warn( p_demux, "discontinuity received 0x%x instead of 0x%x (pid=%d)",
2891                       i_cc, ( pid->i_cc + 1 )&0x0f, pid->i_pid );
2892
2893             pid->i_cc = i_cc;
2894             if( pid->es->p_data && pid->es->fmt.i_cat != VIDEO_ES &&
2895                 pid->es->fmt.i_cat != AUDIO_ES )
2896             {
2897                 /* Small audio/video artifacts are usually better than
2898                  * dropping full frames */
2899                 pid->es->p_data->i_flags |= BLOCK_FLAG_CORRUPTED;
2900             }
2901         }
2902     }
2903
2904     PCRHandle( p_demux, pid, p_bk );
2905
2906     if( i_skip >= 188 || pid->es->id == NULL )
2907     {
2908         block_Release( p_bk );
2909         return i_ret;
2910     }
2911
2912     /* */
2913     if( !pid->b_scrambled != !b_scrambled )
2914     {
2915         msg_Warn( p_demux, "scrambled state changed on pid %d (%d->%d)",
2916                   pid->i_pid, pid->b_scrambled, b_scrambled );
2917
2918         pid->b_scrambled = b_scrambled;
2919
2920         for( int i = 0; i < pid->i_extra_es; i++ )
2921         {
2922             es_out_Control( p_demux->out, ES_OUT_SET_ES_SCRAMBLED_STATE,
2923                             pid->extra_es[i]->id, b_scrambled );
2924         }
2925         es_out_Control( p_demux->out, ES_OUT_SET_ES_SCRAMBLED_STATE,
2926                         pid->es->id, b_scrambled );
2927     }
2928
2929     /* We have to gather it */
2930     p_bk->p_buffer += i_skip;
2931     p_bk->i_buffer -= i_skip;
2932
2933     if( b_unit_start )
2934     {
2935         if( pid->es->data_type == TS_ES_DATA_TABLE_SECTION && p_bk->i_buffer > 0 )
2936         {
2937             int i_pointer_field = __MIN( p_bk->p_buffer[0], p_bk->i_buffer - 1 );
2938             block_t *p = block_Duplicate( p_bk );
2939             if( p )
2940             {
2941                 p->i_buffer = i_pointer_field;
2942                 p->p_buffer++;
2943                 block_ChainLastAppend( &pid->es->pp_last, p );
2944             }
2945             p_bk->i_buffer -= 1 + i_pointer_field;
2946             p_bk->p_buffer += 1 + i_pointer_field;
2947         }
2948         if( pid->es->p_data )
2949         {
2950             ParseData( p_demux, pid );
2951             i_ret = true;
2952         }
2953
2954         block_ChainLastAppend( &pid->es->pp_last, p_bk );
2955         if( pid->es->data_type == TS_ES_DATA_PES )
2956         {
2957             if( p_bk->i_buffer > 6 )
2958             {
2959                 pid->es->i_data_size = GetWBE( &p_bk->p_buffer[4] );
2960                 if( pid->es->i_data_size > 0 )
2961                 {
2962                     pid->es->i_data_size += 6;
2963                 }
2964             }
2965         }
2966         else if( pid->es->data_type == TS_ES_DATA_TABLE_SECTION )
2967         {
2968             if( p_bk->i_buffer > 3 && p_bk->p_buffer[0] != 0xff )
2969             {
2970                 pid->es->i_data_size = 3 + (((p_bk->p_buffer[1] & 0xf) << 8) | p_bk->p_buffer[2]);
2971             }
2972         }
2973         pid->es->i_data_gathered += p_bk->i_buffer;
2974         if( pid->es->i_data_size > 0 &&
2975             pid->es->i_data_gathered >= pid->es->i_data_size )
2976         {
2977             ParseData( p_demux, pid );
2978             i_ret = true;
2979         }
2980     }
2981     else
2982     {
2983         if( pid->es->p_data == NULL )
2984         {
2985             /* msg_Dbg( p_demux, "broken packet" ); */
2986             block_Release( p_bk );
2987         }
2988         else
2989         {
2990             block_ChainLastAppend( &pid->es->pp_last, p_bk );
2991             pid->es->i_data_gathered += p_bk->i_buffer;
2992
2993             if( pid->es->i_data_size > 0 &&
2994                 pid->es->i_data_gathered >= pid->es->i_data_size )
2995             {
2996                 ParseData( p_demux, pid );
2997                 i_ret = true;
2998             }
2999         }
3000     }
3001
3002     return i_ret;
3003 }
3004
3005 static void PIDFillFormat( es_format_t *fmt, int i_stream_type )
3006 {
3007     switch( i_stream_type )
3008     {
3009     case 0x01:  /* MPEG-1 video */
3010     case 0x02:  /* MPEG-2 video */
3011     case 0x80:  /* MPEG-2 MOTO video */
3012         es_format_Init( fmt, VIDEO_ES, VLC_CODEC_MPGV );
3013         break;
3014     case 0x03:  /* MPEG-1 audio */
3015     case 0x04:  /* MPEG-2 audio */
3016         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_MPGA );
3017         break;
3018     case 0x11:  /* MPEG4 (audio) LATM */
3019     case 0x0f:  /* ISO/IEC 13818-7 Audio with ADTS transport syntax */
3020     case 0x1c:  /* ISO/IEC 14496-3 Audio, without using any additional
3021                    transport syntax, such as DST, ALS and SLS */
3022         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_MP4A );
3023         break;
3024     case 0x10:  /* MPEG4 (video) */
3025         es_format_Init( fmt, VIDEO_ES, VLC_CODEC_MP4V );
3026         break;
3027     case 0x1B:  /* H264 <- check transport syntax/needed descriptor */
3028         es_format_Init( fmt, VIDEO_ES, VLC_CODEC_H264 );
3029         break;
3030     case 0x24:  /* HEVC */
3031         es_format_Init( fmt, VIDEO_ES, VLC_CODEC_HEVC );
3032         break;
3033     case 0x42:  /* CAVS (Chinese AVS) */
3034         es_format_Init( fmt, VIDEO_ES, VLC_CODEC_CAVS );
3035         break;
3036
3037     case 0x81:  /* A52 (audio) */
3038         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_A52 );
3039         break;
3040     case 0x82:  /* SCTE-27 (sub) */
3041         es_format_Init( fmt, SPU_ES, VLC_CODEC_SCTE_27 );
3042         break;
3043     case 0x84:  /* SDDS (audio) */
3044         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_SDDS );
3045         break;
3046     case 0x85:  /* DTS (audio) */
3047         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_DTS );
3048         break;
3049     case 0x87: /* E-AC3 */
3050         es_format_Init( fmt, AUDIO_ES, VLC_CODEC_EAC3 );
3051         break;
3052
3053     case 0x91:  /* A52 vls (audio) */
3054         es_format_Init( fmt, AUDIO_ES, VLC_FOURCC( 'a', '5', '2', 'b' ) );
3055         break;
3056     case 0x92:  /* DVD_SPU vls (sub) */
3057         es_format_Init( fmt, SPU_ES, VLC_FOURCC( 's', 'p', 'u', 'b' ) );
3058         break;
3059
3060     case 0x94:  /* SDDS (audio) */
3061         es_format_Init( fmt, AUDIO_ES, VLC_FOURCC( 's', 'd', 'd', 'b' ) );
3062         break;
3063
3064     case 0xa0:  /* MSCODEC vlc (video) (fixed later) */
3065         es_format_Init( fmt, UNKNOWN_ES, 0 );
3066         break;
3067
3068     case 0x06:  /* PES_PRIVATE  (fixed later) */
3069     case 0x12:  /* MPEG-4 generic (sub/scene/...) (fixed later) */
3070     case 0xEA:  /* Privately managed ES (VC-1) (fixed later */
3071     default:
3072         es_format_Init( fmt, UNKNOWN_ES, 0 );
3073         break;
3074     }
3075
3076     /* PES packets usually contain truncated frames */
3077     fmt->b_packetized = false;
3078 }
3079
3080 /*****************************************************************************
3081  * MP4 specific functions (IOD parser)
3082  *****************************************************************************/
3083 static int  IODDescriptorLength( int *pi_data, uint8_t **pp_data )
3084 {
3085     unsigned int i_b;
3086     unsigned int i_len = 0;
3087     do
3088     {
3089         i_b = **pp_data;
3090         (*pp_data)++;
3091         (*pi_data)--;
3092         i_len = ( i_len << 7 ) + ( i_b&0x7f );
3093
3094     } while( i_b&0x80 && *pi_data > 0 );
3095
3096     if (i_len > *pi_data)
3097         i_len = *pi_data;
3098
3099     return i_len;
3100 }
3101
3102 static int IODGetBytes( int *pi_data, uint8_t **pp_data, size_t bytes )
3103 {
3104     uint32_t res = 0;
3105     while( *pi_data > 0 && bytes-- )
3106     {
3107         res <<= 8;
3108         res |= **pp_data;
3109         (*pp_data)++;
3110         (*pi_data)--;
3111     }
3112
3113     return res;
3114 }
3115
3116 static char* IODGetURL( int *pi_data, uint8_t **pp_data )
3117 {
3118     int len = IODGetBytes( pi_data, pp_data, 1 );
3119     if (len > *pi_data)
3120         len = *pi_data;
3121     char *url = strndup( (char*)*pp_data, len );
3122     *pp_data += len;
3123     *pi_data -= len;
3124     return url;
3125 }
3126
3127 static iod_descriptor_t *IODNew( int i_data, uint8_t *p_data )
3128 {
3129     uint8_t i_iod_tag, i_iod_label, byte1, byte2, byte3;
3130
3131     iod_descriptor_t *p_iod = calloc( 1, sizeof( iod_descriptor_t ) );
3132     if( !p_iod )
3133         return NULL;
3134
3135     if( i_data < 3 )
3136     {
3137         return p_iod;
3138     }
3139
3140     byte1 = IODGetBytes( &i_data, &p_data, 1 );
3141     byte2 = IODGetBytes( &i_data, &p_data, 1 );
3142     byte3 = IODGetBytes( &i_data, &p_data, 1 );
3143     if( byte2 == 0x02 ) //old vlc's buggy implementation of the IOD_descriptor
3144     {
3145         i_iod_label = byte1;
3146         i_iod_tag = byte2;
3147     }
3148     else  //correct implementation of the IOD_descriptor
3149     {
3150         i_iod_label = byte2;
3151         i_iod_tag = byte3;
3152     }
3153
3154     ts_debug( "\n* iod label:%d tag:0x%x", i_iod_label, i_iod_tag );
3155
3156     if( i_iod_tag != 0x02 )
3157     {
3158         ts_debug( "\n ERR: tag %02x != 0x02", i_iod_tag );
3159         return p_iod;
3160     }
3161
3162     IODDescriptorLength( &i_data, &p_data );
3163
3164     uint16_t i_od_id = ( IODGetBytes( &i_data, &p_data, 1 ) << 2 );
3165     uint8_t i_flags = IODGetBytes( &i_data, &p_data, 1 );
3166     i_od_id |= i_flags >> 6;
3167     ts_debug( "\n* od_id:%d", i_od_id );
3168     ts_debug( "\n* includeInlineProfileLevel flag:%d", ( i_flags >> 4 )&0x01 );
3169     if ((i_flags >> 5) & 0x01)
3170     {
3171         p_iod->psz_url = IODGetURL( &i_data, &p_data );
3172         ts_debug( "\n* url string:%s", p_iod->psz_url );
3173         ts_debug( "\n*****************************\n" );
3174         return p_iod;
3175     }
3176     else
3177     {
3178         p_iod->psz_url = NULL;
3179     }
3180
3181     /* Profile Level Indication */
3182     IODGetBytes( &i_data, &p_data, 1 ); /* OD */
3183     IODGetBytes( &i_data, &p_data, 1 ); /* scene */
3184     IODGetBytes( &i_data, &p_data, 1 ); /* audio */
3185     IODGetBytes( &i_data, &p_data, 1 ); /* visual */
3186     IODGetBytes( &i_data, &p_data, 1 ); /* graphics */
3187
3188     int i_length = 0;
3189     int i_data_sav = i_data;
3190     uint8_t *p_data_sav = p_data;
3191     for (int i = 0; i_data > 0 && i < ES_DESCRIPTOR_COUNT; i++)
3192     {
3193         es_mpeg4_descriptor_t *es_descr = &p_iod->es_descr[i];
3194
3195         p_data = p_data_sav + i_length;
3196         i_data = i_data_sav - i_length;
3197
3198         int i_tag = IODGetBytes( &i_data, &p_data, 1 );
3199         i_length = IODDescriptorLength( &i_data, &p_data );
3200
3201         i_data_sav = i_data;
3202         p_data_sav = p_data;
3203
3204         i_data = i_length;
3205
3206         if ( i_tag != 0x03 )
3207         {
3208             ts_debug( "\n* - OD tag:0x%x Unsupported", i_tag );
3209             continue;
3210         }
3211
3212         es_descr->i_es_id = IODGetBytes( &i_data, &p_data, 2 );
3213         int i_flags = IODGetBytes( &i_data, &p_data, 1 );
3214         bool b_streamDependenceFlag = ( i_flags >> 7 )&0x01;
3215         if( b_streamDependenceFlag )
3216             IODGetBytes( &i_data, &p_data, 2 ); /* dependOn_es_id */
3217
3218         if( (i_flags >> 6) & 0x01 )
3219             es_descr->psz_url = IODGetURL( &i_data, &p_data );
3220
3221         bool b_OCRStreamFlag = ( i_flags >> 5 )&0x01;
3222         if( b_OCRStreamFlag )
3223             IODGetBytes( &i_data, &p_data, 2 ); /* OCR_es_id */
3224
3225         if( IODGetBytes( &i_data, &p_data, 1 ) != 0x04 )
3226         {
3227             ts_debug( "\n* ERR missing DecoderConfigDescr" );
3228             continue;
3229         }
3230         int i_config_desc_length = IODDescriptorLength( &i_data, &p_data ); /* DecoderConfigDescr_length */
3231         decoder_config_descriptor_t *dec_descr = &es_descr->dec_descr;
3232         dec_descr->i_objectTypeIndication = IODGetBytes( &i_data, &p_data, 1 );
3233         i_flags = IODGetBytes( &i_data, &p_data, 1 );
3234         dec_descr->i_streamType = i_flags >> 2;
3235
3236         IODGetBytes( &i_data, &p_data, 3); /* bufferSizeDB */
3237         IODGetBytes( &i_data, &p_data, 4); /* maxBitrate */
3238         IODGetBytes( &i_data, &p_data, 4 ); /* avgBitrate */
3239
3240         if( i_config_desc_length > 13 && IODGetBytes( &i_data, &p_data, 1 ) == 0x05 )
3241         {
3242             dec_descr->i_extra = IODDescriptorLength( &i_data, &p_data );
3243             if( dec_descr->i_extra > 0 )
3244             {
3245                 dec_descr->p_extra = xmalloc( dec_descr->i_extra );
3246                 memcpy(dec_descr->p_extra, p_data, dec_descr->i_extra);
3247                 p_data += dec_descr->i_extra;
3248                 i_data -= dec_descr->i_extra;
3249             }
3250         }
3251         else
3252         {
3253             dec_descr->i_extra = 0;
3254             dec_descr->p_extra = NULL;
3255         }
3256
3257         if( IODGetBytes( &i_data, &p_data, 1 ) != 0x06 )
3258         {
3259             ts_debug( "\n* ERR missing SLConfigDescr" );
3260             continue;
3261         }
3262         IODDescriptorLength( &i_data, &p_data ); /* SLConfigDescr_length */
3263         switch( IODGetBytes( &i_data, &p_data, 1 ) /* predefined */ )
3264         {
3265         default:
3266             ts_debug( "\n* ERR unsupported SLConfigDescr predefined" );
3267         case 0x01:
3268             // FIXME
3269             break;
3270         }
3271         es_descr->b_ok = true;
3272     }
3273
3274     return p_iod;
3275 }
3276
3277 static void IODFree( iod_descriptor_t *p_iod )
3278 {
3279     if( p_iod->psz_url )
3280     {
3281         free( p_iod->psz_url );
3282         free( p_iod );
3283         return;
3284     }
3285
3286     for( int i = 0; i < 255; i++ )
3287     {
3288 #define es_descr p_iod->es_descr[i]
3289         if( es_descr.b_ok )
3290         {
3291             if( es_descr.psz_url )
3292                 free( es_descr.psz_url );
3293             else
3294                 free( es_descr.dec_descr.p_extra );
3295         }
3296 #undef  es_descr
3297     }
3298     free( p_iod );
3299 }
3300
3301 /****************************************************************************
3302  ****************************************************************************
3303  ** libdvbpsi callbacks
3304  ****************************************************************************
3305  ****************************************************************************/
3306 static bool ProgramIsSelected( demux_t *p_demux, uint16_t i_pgrm )
3307 {
3308     demux_sys_t          *p_sys = p_demux->p_sys;
3309
3310     if( ( p_sys->i_current_program == -1 && p_sys->programs_list.i_count == 0 ) ||
3311         p_sys->i_current_program == 0 )
3312         return true;
3313     if( p_sys->i_current_program == i_pgrm )
3314         return true;
3315
3316     if( p_sys->programs_list.i_count != 0 )
3317     {
3318         for( int i = 0; i < p_sys->programs_list.i_count; i++ )
3319         {
3320             if( i_pgrm == p_sys->programs_list.p_values[i].i_int )
3321                 return true;
3322         }
3323     }
3324     return false;
3325 }
3326
3327 static void ValidateDVBMeta( demux_t *p_demux, int i_pid )
3328 {
3329     demux_sys_t *p_sys = p_demux->p_sys;
3330
3331     if( !p_sys->b_dvb_meta || ( i_pid != 0x11 && i_pid != 0x12 && i_pid != 0x14 ) )
3332         return;
3333
3334     msg_Warn( p_demux, "Switching to non DVB mode" );
3335
3336     /* This doesn't look like a DVB stream so don't try
3337      * parsing the SDT/EDT/TDT */
3338
3339     for( int i = 0x11; i <= 0x14; i++ )
3340     {
3341         if( i == 0x13 ) continue;
3342         ts_pid_t *p_pid = &p_sys->pid[i];
3343         if( p_pid->psi )
3344         {
3345
3346 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3347             if( dvbpsi_decoder_present( p_pid->psi->handle ))
3348                 dvbpsi_DetachDemux( p_pid->psi->handle );
3349             dvbpsi_delete( p_pid->psi->handle );
3350 #else
3351             dvbpsi_DetachDemux( p_pid->psi->handle );
3352 #endif
3353             free( p_pid->psi );
3354             p_pid->psi = NULL;
3355             p_pid->b_valid = false;
3356         }
3357         SetPIDFilter( p_demux, i, false );
3358     }
3359     p_sys->b_dvb_meta = false;
3360 }
3361
3362 #include "dvb-text.h"
3363
3364 static char *EITConvertToUTF8( demux_t *p_demux,
3365                                const unsigned char *psz_instring,
3366                                size_t i_length,
3367                                bool b_broken )
3368 {
3369     demux_sys_t *p_sys = p_demux->p_sys;
3370 #ifdef HAVE_ARIBB24
3371     if( p_sys->arib.e_mode == ARIBMODE_ENABLED )
3372     {
3373         if ( !p_sys->arib.p_instance )
3374             p_sys->arib.p_instance = arib_instance_new( p_demux );
3375         if ( !p_sys->arib.p_instance )
3376             return NULL;
3377         arib_decoder_t *p_decoder = arib_get_decoder( p_sys->arib.p_instance );
3378         if ( !p_decoder )
3379             return NULL;
3380
3381         char *psz_outstring = NULL;
3382         size_t i_out;
3383
3384         i_out = i_length * 4;
3385         psz_outstring = (char*) calloc( i_out + 1, sizeof(char) );
3386         if( !psz_outstring )
3387             return NULL;
3388
3389         arib_initialize_decoder( p_decoder );
3390         i_out = arib_decode_buffer( p_decoder, psz_instring, i_length,
3391                                     psz_outstring, i_out );
3392         arib_finalize_decoder( p_decoder );
3393
3394         return psz_outstring;
3395     }
3396 #else
3397     VLC_UNUSED(p_sys);
3398 #endif
3399     /* Deal with no longer broken providers (no switch byte
3400       but sending ISO_8859-1 instead of ISO_6937) without
3401       removing them from the broken providers table
3402       (keep the entry for correctly handling recorded TS).
3403     */
3404     b_broken = b_broken && i_length && *psz_instring > 0x20;
3405
3406     if( b_broken )
3407         return FromCharset( "ISO_8859-1", psz_instring, i_length );
3408     return vlc_from_EIT( psz_instring, i_length );
3409 }
3410
3411 static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt )
3412 {
3413     demux_sys_t          *p_sys = p_demux->p_sys;
3414     ts_pid_t             *sdt = &p_sys->pid[0x11];
3415     dvbpsi_sdt_service_t *p_srv;
3416
3417     msg_Dbg( p_demux, "SDTCallBack called" );
3418
3419     if( p_sys->b_delay_es_creation ||
3420        !p_sdt->b_current_next ||
3421         p_sdt->i_version == sdt->psi->i_sdt_version )
3422     {
3423         dvbpsi_DeleteSDT( p_sdt );
3424         return;
3425     }
3426
3427     msg_Dbg( p_demux, "new SDT ts_id=%d version=%d current_next=%d "
3428              "network_id=%d",
3429 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3430              p_sdt->i_extension,
3431 #else
3432              p_sdt->i_ts_id,
3433 #endif
3434              p_sdt->i_version, p_sdt->b_current_next,
3435              p_sdt->i_network_id );
3436
3437     p_sys->b_broken_charset = false;
3438
3439     for( p_srv = p_sdt->p_first_service; p_srv; p_srv = p_srv->p_next )
3440     {
3441         vlc_meta_t          *p_meta;
3442         dvbpsi_descriptor_t *p_dr;
3443
3444         const char *psz_type = NULL;
3445         const char *psz_status = NULL;
3446
3447         msg_Dbg( p_demux, "  * service id=%d eit schedule=%d present=%d "
3448                  "running=%d free_ca=%d",
3449                  p_srv->i_service_id, p_srv->b_eit_schedule,
3450                  p_srv->b_eit_present, p_srv->i_running_status,
3451                  p_srv->b_free_ca );
3452
3453         if( p_sys->vdr.i_service && p_srv->i_service_id != p_sys->vdr.i_service )
3454         {
3455             msg_Dbg( p_demux, "  * service id=%d skipped (not declared in vdr header)",
3456                      p_sys->vdr.i_service );
3457             continue;
3458         }
3459
3460         p_meta = vlc_meta_New();
3461         for( p_dr = p_srv->p_first_descriptor; p_dr; p_dr = p_dr->p_next )
3462         {
3463             if( p_dr->i_tag == 0x48 )
3464             {
3465                 static const char *ppsz_type[17] = {
3466                     "Reserved",
3467                     "Digital television service",
3468                     "Digital radio sound service",
3469                     "Teletext service",
3470                     "NVOD reference service",
3471                     "NVOD time-shifted service",
3472                     "Mosaic service",
3473                     "PAL coded signal",
3474                     "SECAM coded signal",
3475                     "D/D2-MAC",
3476                     "FM Radio",
3477                     "NTSC coded signal",
3478                     "Data broadcast service",
3479                     "Reserved for Common Interface Usage",
3480                     "RCS Map (see EN 301 790 [35])",
3481                     "RCS FLS (see EN 301 790 [35])",
3482                     "DVB MHP service"
3483                 };
3484                 dvbpsi_service_dr_t *pD = dvbpsi_DecodeServiceDr( p_dr );
3485                 char *str1 = NULL;
3486                 char *str2 = NULL;
3487
3488                 /* Workarounds for broadcasters with broken EPG */
3489
3490                 if( p_sdt->i_network_id == 133 )
3491                     p_sys->b_broken_charset = true;  /* SKY DE & BetaDigital use ISO8859-1 */
3492
3493                 /* List of providers using ISO8859-1 */
3494                 static const char ppsz_broken_providers[][8] = {
3495                     "CSAT",     /* CanalSat FR */
3496                     "GR1",      /* France televisions */
3497                     "MULTI4",   /* NT1 */
3498                     "MR5",      /* France 2/M6 HD */
3499                     ""
3500                 };
3501                 for( int i = 0; *ppsz_broken_providers[i]; i++ )
3502                 {
3503                     const size_t i_length = strlen(ppsz_broken_providers[i]);
3504                     if( pD->i_service_provider_name_length == i_length &&
3505                         !strncmp( (char *)pD->i_service_provider_name, ppsz_broken_providers[i], i_length ) )
3506                         p_sys->b_broken_charset = true;
3507                 }
3508
3509                 /* FIXME: Digital+ ES also uses ISO8859-1 */
3510
3511                 str1 = EITConvertToUTF8(p_demux,
3512                                         pD->i_service_provider_name,
3513                                         pD->i_service_provider_name_length,
3514                                         p_sys->b_broken_charset );
3515                 str2 = EITConvertToUTF8(p_demux,
3516                                         pD->i_service_name,
3517                                         pD->i_service_name_length,
3518                                         p_sys->b_broken_charset );
3519
3520                 msg_Dbg( p_demux, "    - type=%d provider=%s name=%s",
3521                          pD->i_service_type, str1, str2 );
3522
3523                 vlc_meta_SetTitle( p_meta, str2 );
3524                 vlc_meta_SetPublisher( p_meta, str1 );
3525                 if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 )
3526                     psz_type = ppsz_type[pD->i_service_type];
3527                 free( str1 );
3528                 free( str2 );
3529             }
3530         }
3531
3532         if( p_srv->i_running_status >= 0x01 && p_srv->i_running_status <= 0x04 )
3533         {
3534             static const char *ppsz_status[5] = {
3535                 "Unknown",
3536                 "Not running",
3537                 "Starts in a few seconds",
3538                 "Pausing",
3539                 "Running"
3540             };
3541             psz_status = ppsz_status[p_srv->i_running_status];
3542         }
3543
3544         if( psz_type )
3545             vlc_meta_AddExtra( p_meta, "Type", psz_type );
3546         if( psz_status )
3547             vlc_meta_AddExtra( p_meta, "Status", psz_status );
3548
3549         es_out_Control( p_demux->out, ES_OUT_SET_GROUP_META,
3550                         p_srv->i_service_id, p_meta );
3551         vlc_meta_Delete( p_meta );
3552     }
3553
3554     sdt->psi->i_sdt_version = p_sdt->i_version;
3555     dvbpsi_DeleteSDT( p_sdt );
3556 }
3557
3558 /* i_year: year - 1900  i_month: 0-11  i_mday: 1-31 i_hour: 0-23 i_minute: 0-59 i_second: 0-59 */
3559 static int64_t vlc_timegm( int i_year, int i_month, int i_mday, int i_hour, int i_minute, int i_second )
3560 {
3561     static const int pn_day[12+1] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
3562     int64_t i_day;
3563
3564     if( i_year < 70 ||
3565         i_month < 0 || i_month > 11 || i_mday < 1 || i_mday > 31 ||
3566         i_hour < 0 || i_hour > 23 || i_minute < 0 || i_minute > 59 || i_second < 0 || i_second > 59 )
3567         return -1;
3568
3569     /* Count the number of days */
3570     i_day = 365 * (i_year-70) + pn_day[i_month] + i_mday - 1;
3571 #define LEAP(y) ( ((y)%4) == 0 && (((y)%100) != 0 || ((y)%400) == 0) ? 1 : 0)
3572     for( int i = 70; i < i_year; i++ )
3573         i_day += LEAP(1900+i);
3574     if( i_month > 1 )
3575         i_day += LEAP(1900+i_year);
3576 #undef LEAP
3577     /**/
3578     return ((24*i_day + i_hour)*60 + i_minute)*60 + i_second;
3579 }
3580
3581 static void EITDecodeMjd( int i_mjd, int *p_y, int *p_m, int *p_d )
3582 {
3583     const int yp = (int)( ( (double)i_mjd - 15078.2)/365.25 );
3584     const int mp = (int)( ((double)i_mjd - 14956.1 - (int)(yp * 365.25)) / 30.6001 );
3585     const int c = ( mp == 14 || mp == 15 ) ? 1 : 0;
3586
3587     *p_y = 1900 + yp + c*1;
3588     *p_m = mp - 1 - c*12;
3589     *p_d = i_mjd - 14956 - (int)(yp*365.25) - (int)(mp*30.6001);
3590 }
3591 #define CVT_FROM_BCD(v) ((((v) >> 4)&0xf)*10 + ((v)&0xf))
3592 static int64_t EITConvertStartTime( uint64_t i_date )
3593 {
3594     const int i_mjd = i_date >> 24;
3595     const int i_hour   = CVT_FROM_BCD(i_date >> 16);
3596     const int i_minute = CVT_FROM_BCD(i_date >>  8);
3597     const int i_second = CVT_FROM_BCD(i_date      );
3598     int i_year;
3599     int i_month;
3600     int i_day;
3601
3602     /* if all 40 bits are 1, the start is unknown */
3603     if( i_date == UINT64_C(0xffffffffff) )
3604         return -1;
3605
3606     EITDecodeMjd( i_mjd, &i_year, &i_month, &i_day );
3607     return vlc_timegm( i_year - 1900, i_month - 1, i_day, i_hour, i_minute, i_second );
3608 }
3609 static int EITConvertDuration( uint32_t i_duration )
3610 {
3611     return CVT_FROM_BCD(i_duration >> 16) * 3600 +
3612            CVT_FROM_BCD(i_duration >> 8 ) * 60 +
3613            CVT_FROM_BCD(i_duration      );
3614 }
3615 #undef CVT_FROM_BCD
3616
3617 static void TDTCallBack( demux_t *p_demux, dvbpsi_tot_t *p_tdt )
3618 {
3619     demux_sys_t        *p_sys = p_demux->p_sys;
3620
3621     p_sys->i_tdt_delta = CLOCK_FREQ * EITConvertStartTime( p_tdt->i_utc_time )
3622                          - mdate();
3623     dvbpsi_DeleteTOT(p_tdt);
3624 }
3625
3626
3627 static void EITCallBack( demux_t *p_demux,
3628                          dvbpsi_eit_t *p_eit, bool b_current_following )
3629 {
3630     demux_sys_t        *p_sys = p_demux->p_sys;
3631     dvbpsi_eit_event_t *p_evt;
3632     vlc_epg_t *p_epg;
3633
3634     msg_Dbg( p_demux, "EITCallBack called" );
3635     if( !p_eit->b_current_next )
3636     {
3637         dvbpsi_DeleteEIT( p_eit );
3638         return;
3639     }
3640
3641     msg_Dbg( p_demux, "new EIT service_id=%d version=%d current_next=%d "
3642              "ts_id=%d network_id=%d segment_last_section_number=%d "
3643              "last_table_id=%d",
3644 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3645              p_eit->i_extension,
3646 #else
3647              p_eit->i_service_id,
3648 #endif
3649              p_eit->i_version, p_eit->b_current_next,
3650              p_eit->i_ts_id, p_eit->i_network_id,
3651              p_eit->i_segment_last_section_number, p_eit->i_last_table_id );
3652
3653     p_epg = vlc_epg_New( NULL );
3654     for( p_evt = p_eit->p_first_event; p_evt; p_evt = p_evt->p_next )
3655     {
3656         dvbpsi_descriptor_t *p_dr;
3657         char                *psz_name = NULL;
3658         char                *psz_text = NULL;
3659         char                *psz_extra = strdup("");
3660         int64_t i_start;
3661         int i_duration;
3662         int i_min_age = 0;
3663         int64_t i_tot_time = 0;
3664
3665         i_start = EITConvertStartTime( p_evt->i_start_time );
3666         i_duration = EITConvertDuration( p_evt->i_duration );
3667
3668         if( p_sys->arib.e_mode == ARIBMODE_ENABLED )
3669         {
3670             if( p_sys->i_tdt_delta == 0 )
3671                 p_sys->i_tdt_delta = CLOCK_FREQ * (i_start + i_duration - 5) - mdate();
3672
3673             i_tot_time = (mdate() + p_sys->i_tdt_delta) / CLOCK_FREQ;
3674
3675             tzset(); // JST -> UTC
3676             i_start += timezone; // FIXME: what about DST?
3677             i_tot_time += timezone;
3678
3679             if( p_evt->i_running_status == 0x00 &&
3680                 (i_start - 5 < i_tot_time &&
3681                  i_tot_time < i_start + i_duration + 5) )
3682             {
3683                 p_evt->i_running_status = 0x04;
3684                 msg_Dbg( p_demux, "  EIT running status 0x00 -> 0x04" );
3685             }
3686         }
3687
3688         msg_Dbg( p_demux, "  * event id=%d start_time:%d duration=%d "
3689                           "running=%d free_ca=%d",
3690                  p_evt->i_event_id, (int)i_start, (int)i_duration,
3691                  p_evt->i_running_status, p_evt->b_free_ca );
3692
3693         for( p_dr = p_evt->p_first_descriptor; p_dr; p_dr = p_dr->p_next )
3694         {
3695             switch(p_dr->i_tag)
3696             {
3697             case 0x4d:
3698             {
3699                 dvbpsi_short_event_dr_t *pE = dvbpsi_DecodeShortEventDr( p_dr );
3700
3701                 /* Only take first description, as we don't handle language-info
3702                    for epg atm*/
3703                 if( pE && psz_name == NULL )
3704                 {
3705                     psz_name = EITConvertToUTF8( p_demux,
3706                                                  pE->i_event_name, pE->i_event_name_length,
3707                                                  p_sys->b_broken_charset );
3708                     free( psz_text );
3709                     psz_text = EITConvertToUTF8( p_demux,
3710                                                  pE->i_text, pE->i_text_length,
3711                                                  p_sys->b_broken_charset );
3712                     msg_Dbg( p_demux, "    - short event lang=%3.3s '%s' : '%s'",
3713                              pE->i_iso_639_code, psz_name, psz_text );
3714                 }
3715             }
3716                 break;
3717
3718             case 0x4e:
3719             {
3720                 dvbpsi_extended_event_dr_t *pE = dvbpsi_DecodeExtendedEventDr( p_dr );
3721                 if( pE )
3722                 {
3723                     msg_Dbg( p_demux, "    - extended event lang=%3.3s [%d/%d]",
3724                              pE->i_iso_639_code,
3725                              pE->i_descriptor_number, pE->i_last_descriptor_number );
3726
3727                     if( pE->i_text_length > 0 )
3728                     {
3729                         char *psz_text = EITConvertToUTF8( p_demux,
3730                                                            pE->i_text, pE->i_text_length,
3731                                                            p_sys->b_broken_charset );
3732                         if( psz_text )
3733                         {
3734                             msg_Dbg( p_demux, "       - text='%s'", psz_text );
3735
3736                             psz_extra = xrealloc( psz_extra,
3737                                    strlen(psz_extra) + strlen(psz_text) + 1 );
3738                             strcat( psz_extra, psz_text );
3739                             free( psz_text );
3740                         }
3741                     }
3742
3743                     for( int i = 0; i < pE->i_entry_count; i++ )
3744                     {
3745                         char *psz_dsc = EITConvertToUTF8( p_demux,
3746                                                           pE->i_item_description[i],
3747                                                           pE->i_item_description_length[i],
3748                                                           p_sys->b_broken_charset );
3749                         char *psz_itm = EITConvertToUTF8( p_demux,
3750                                                           pE->i_item[i], pE->i_item_length[i],
3751                                                           p_sys->b_broken_charset );
3752
3753                         if( psz_dsc && psz_itm )
3754                         {
3755                             msg_Dbg( p_demux, "       - desc='%s' item='%s'", psz_dsc, psz_itm );
3756 #if 0
3757                             psz_extra = xrealloc( psz_extra,
3758                                          strlen(psz_extra) + strlen(psz_dsc) +
3759                                          strlen(psz_itm) + 3 + 1 );
3760                             strcat( psz_extra, "(" );
3761                             strcat( psz_extra, psz_dsc );
3762                             strcat( psz_extra, " " );
3763                             strcat( psz_extra, psz_itm );
3764                             strcat( psz_extra, ")" );
3765 #endif
3766                         }
3767                         free( psz_dsc );
3768                         free( psz_itm );
3769                     }
3770                 }
3771             }
3772                 break;
3773
3774             case 0x55:
3775             {
3776                 dvbpsi_parental_rating_dr_t *pR = dvbpsi_DecodeParentalRatingDr( p_dr );
3777                 if ( pR )
3778                 {
3779                     for ( int i = 0; i < pR->i_ratings_number; i++ )
3780                     {
3781                         const dvbpsi_parental_rating_t *p_rating = & pR->p_parental_rating[ i ];
3782                         if ( p_rating->i_rating > 0x00 && p_rating->i_rating <= 0x0F )
3783                         {
3784                             if ( p_rating->i_rating + 3 > i_min_age )
3785                                 i_min_age = p_rating->i_rating + 3;
3786                             msg_Dbg( p_demux, "    - parental control set to %d years",
3787                                      i_min_age );
3788                         }
3789                     }
3790                 }
3791             }
3792                 break;
3793
3794             default:
3795                 msg_Dbg( p_demux, "    - event unknown dr 0x%x(%d)", p_dr->i_tag, p_dr->i_tag );
3796                 break;
3797             }
3798         }
3799
3800         /* */
3801         if( i_start > 0 && psz_name && psz_text)
3802             vlc_epg_AddEvent( p_epg, i_start, i_duration, psz_name, psz_text,
3803                               *psz_extra ? psz_extra : NULL, i_min_age );
3804
3805         /* Update "now playing" field */
3806         if( p_evt->i_running_status == 0x04 && i_start > 0  && psz_name && psz_text )
3807             vlc_epg_SetCurrent( p_epg, i_start );
3808
3809         free( psz_name );
3810         free( psz_text );
3811
3812         free( psz_extra );
3813     }
3814     if( p_epg->i_event > 0 )
3815     {
3816         if( b_current_following &&
3817             (  p_sys->i_current_program == -1 ||
3818                p_sys->i_current_program ==
3819 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3820                     p_eit->i_extension
3821 #else
3822                     p_eit->i_service_id
3823 #endif
3824                 ) )
3825         {
3826             p_sys->i_dvb_length = 0;
3827             p_sys->i_dvb_start = 0;
3828
3829             if( p_epg->p_current )
3830             {
3831                 p_sys->i_dvb_start = CLOCK_FREQ * p_epg->p_current->i_start;
3832                 p_sys->i_dvb_length = CLOCK_FREQ * p_epg->p_current->i_duration;
3833             }
3834         }
3835         es_out_Control( p_demux->out, ES_OUT_SET_GROUP_EPG,
3836 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3837                         p_eit->i_extension,
3838 #else
3839                         p_eit->i_service_id,
3840 #endif
3841                         p_epg );
3842     }
3843     vlc_epg_Delete( p_epg );
3844
3845     dvbpsi_DeleteEIT( p_eit );
3846 }
3847 static void EITCallBackCurrentFollowing( demux_t *p_demux, dvbpsi_eit_t *p_eit )
3848 {
3849     EITCallBack( p_demux, p_eit, true );
3850 }
3851 static void EITCallBackSchedule( demux_t *p_demux, dvbpsi_eit_t *p_eit )
3852 {
3853     EITCallBack( p_demux, p_eit, false );
3854 }
3855
3856 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3857 static void PSINewTableCallBack( dvbpsi_t *h, uint8_t i_table_id,
3858                                  uint16_t i_extension, demux_t *p_demux )
3859 #else
3860 static void PSINewTableCallBack( demux_t *p_demux, dvbpsi_handle h,
3861                                  uint8_t  i_table_id, uint16_t i_extension )
3862 #endif
3863 {
3864     assert( h );
3865 #if 0
3866     msg_Dbg( p_demux, "PSINewTableCallBack: table 0x%x(%d) ext=0x%x(%d)",
3867              i_table_id, i_table_id, i_extension, i_extension );
3868 #endif
3869     if( p_demux->p_sys->pid[0].psi->i_pat_version != -1 && i_table_id == 0x42 )
3870     {
3871         msg_Dbg( p_demux, "PSINewTableCallBack: table 0x%x(%d) ext=0x%x(%d)",
3872                  i_table_id, i_table_id, i_extension, i_extension );
3873 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3874         if( !dvbpsi_sdt_attach( h, i_table_id, i_extension, (dvbpsi_sdt_callback)SDTCallBack, p_demux ) )
3875             msg_Err( p_demux, "PSINewTableCallback: failed attaching SDTCallback" );
3876 #else
3877         dvbpsi_AttachSDT( h, i_table_id, i_extension,
3878                           (dvbpsi_sdt_callback)SDTCallBack, p_demux );
3879 #endif
3880     }
3881     else if( p_demux->p_sys->pid[0x11].psi->i_sdt_version != -1 &&
3882              ( i_table_id == 0x4e || /* Current/Following */
3883                (i_table_id >= 0x50 && i_table_id <= 0x5f) ) ) /* Schedule */
3884     {
3885         msg_Dbg( p_demux, "PSINewTableCallBack: table 0x%x(%d) ext=0x%x(%d)",
3886                  i_table_id, i_table_id, i_extension, i_extension );
3887
3888         dvbpsi_eit_callback cb = i_table_id == 0x4e ?
3889                                     (dvbpsi_eit_callback)EITCallBackCurrentFollowing :
3890                                     (dvbpsi_eit_callback)EITCallBackSchedule;
3891 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3892         if( !dvbpsi_eit_attach( h, i_table_id, i_extension, cb, p_demux ) )
3893             msg_Err( p_demux, "PSINewTableCallback: failed attaching EITCallback" );
3894 #else
3895         dvbpsi_AttachEIT( h, i_table_id, i_extension, cb, p_demux );
3896 #endif
3897     }
3898     else if( p_demux->p_sys->pid[0x11].psi->i_sdt_version != -1 &&
3899             (i_table_id == 0x70 /* TDT */ || i_table_id == 0x73 /* TOT */) )
3900     {
3901          msg_Dbg( p_demux, "PSINewTableCallBack: table 0x%x(%d) ext=0x%x(%d)",
3902                  i_table_id, i_table_id, i_extension, i_extension );
3903 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
3904         if( !dvbpsi_tot_attach( h, i_table_id, i_extension, (dvbpsi_tot_callback)TDTCallBack, p_demux ) )
3905             msg_Err( p_demux, "PSINewTableCallback: failed attaching TDTCallback" );
3906 #else
3907          dvbpsi_AttachTOT( h, i_table_id, i_extension,
3908                            (dvbpsi_tot_callback)TDTCallBack, p_demux);
3909 #endif
3910     }
3911 }
3912
3913 /*****************************************************************************
3914  * PMT callback and helpers
3915  *****************************************************************************/
3916 static dvbpsi_descriptor_t *PMTEsFindDescriptor( const dvbpsi_pmt_es_t *p_es,
3917                                                  int i_tag )
3918 {
3919     dvbpsi_descriptor_t *p_dr = p_es->p_first_descriptor;;
3920     while( p_dr && ( p_dr->i_tag != i_tag ) )
3921         p_dr = p_dr->p_next;
3922     return p_dr;
3923 }
3924 static bool PMTEsHasRegistration( demux_t *p_demux,
3925                                   const dvbpsi_pmt_es_t *p_es,
3926                                   const char *psz_tag )
3927 {
3928     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x05 );
3929     if( !p_dr )
3930         return false;
3931
3932     if( p_dr->i_length < 4 )
3933     {
3934         msg_Warn( p_demux, "invalid Registration Descriptor" );
3935         return false;
3936     }
3937
3938     assert( strlen(psz_tag) == 4 );
3939     return !memcmp( p_dr->p_data, psz_tag, 4 );
3940 }
3941
3942 static bool PMTEsHasComponentTag( const dvbpsi_pmt_es_t *p_es,
3943                                   int i_component_tag )
3944 {
3945     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x52 );
3946     if( !p_dr )
3947         return false;
3948     dvbpsi_stream_identifier_dr_t *p_si = dvbpsi_DecodeStreamIdentifierDr( p_dr );
3949     if( !p_si )
3950         return false;
3951
3952     return p_si->i_component_tag == i_component_tag;
3953 }
3954
3955 static void PMTSetupEsISO14496( demux_t *p_demux, ts_pid_t *pid,
3956                                 const ts_prg_psi_t *prg, const dvbpsi_pmt_es_t *p_es )
3957 {
3958     es_format_t *p_fmt = &pid->es->fmt;
3959
3960     /* MPEG-4 stream: search FMC_DESCRIPTOR (SL Packetized stream) */
3961     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x1f );
3962
3963     if( p_dr && p_dr->i_length == 2 )
3964     {
3965         const int i_es_id = ( p_dr->p_data[0] << 8 ) | p_dr->p_data[1];
3966
3967         msg_Dbg( p_demux, "found FMC_descriptor declaring sl packetization on es_id=%d", i_es_id );
3968
3969         pid->es->p_mpeg4desc = NULL;
3970
3971         for( int i = 0; i < ES_DESCRIPTOR_COUNT; i++ )
3972         {
3973             iod_descriptor_t *iod = prg->iod;
3974             if( iod->es_descr[i].i_es_id == i_es_id )
3975             {
3976                 if ( iod->es_descr[i].b_ok )
3977                     pid->es->p_mpeg4desc = &iod->es_descr[i];
3978                 else
3979                     msg_Dbg( p_demux, "MPEG-4 descriptor not yet available on es_id=%d", i_es_id );
3980                 break;
3981             }
3982         }
3983     }
3984     if( !pid->es->p_mpeg4desc )
3985     {
3986         switch( p_es->i_type )
3987         {
3988         /* non fatal, set by packetizer */
3989         case 0x0f: /* ADTS */
3990         case 0x11: /* LOAS */
3991             msg_Info( p_demux, "MPEG-4 descriptor not found for pid 0x%x type 0x%x",
3992                       pid->i_pid, p_es->i_type );
3993             break;
3994         default:
3995             msg_Err( p_demux, "MPEG-4 descriptor not found for pid 0x%x type 0x%x",
3996                      pid->i_pid, p_es->i_type );
3997             break;
3998         }
3999         return;
4000     }
4001
4002     const decoder_config_descriptor_t *dcd = &pid->es->p_mpeg4desc->dec_descr;
4003     if( dcd->i_streamType == 0x04 )    /* VisualStream */
4004     {
4005         p_fmt->i_cat = VIDEO_ES;
4006         switch( dcd->i_objectTypeIndication )
4007         {
4008         case 0x0B: /* mpeg4 sub */
4009             p_fmt->i_cat = SPU_ES;
4010             p_fmt->i_codec = VLC_CODEC_SUBT;
4011             break;
4012
4013         case 0x20: /* mpeg4 */
4014             p_fmt->i_codec = VLC_CODEC_MP4V;
4015             break;
4016         case 0x21: /* h264 */
4017             p_fmt->i_codec = VLC_CODEC_H264;
4018             break;
4019         case 0x60:
4020         case 0x61:
4021         case 0x62:
4022         case 0x63:
4023         case 0x64:
4024         case 0x65: /* mpeg2 */
4025             p_fmt->i_codec = VLC_CODEC_MPGV;
4026             break;
4027         case 0x6a: /* mpeg1 */
4028             p_fmt->i_codec = VLC_CODEC_MPGV;
4029             break;
4030         case 0x6c: /* mpeg1 */
4031             p_fmt->i_codec = VLC_CODEC_JPEG;
4032             break;
4033         default:
4034             p_fmt->i_cat = UNKNOWN_ES;
4035             break;
4036         }
4037     }
4038     else if( dcd->i_streamType == 0x05 )    /* AudioStream */
4039     {
4040         p_fmt->i_cat = AUDIO_ES;
4041         switch( dcd->i_objectTypeIndication )
4042         {
4043         case 0x40: /* mpeg4 */
4044             p_fmt->i_codec = VLC_CODEC_MP4A;
4045             break;
4046         case 0x66:
4047         case 0x67:
4048         case 0x68: /* mpeg2 aac */
4049             p_fmt->i_codec = VLC_CODEC_MP4A;
4050             break;
4051         case 0x69: /* mpeg2 */
4052             p_fmt->i_codec = VLC_CODEC_MPGA;
4053             break;
4054         case 0x6b: /* mpeg1 */
4055             p_fmt->i_codec = VLC_CODEC_MPGA;
4056             break;
4057         default:
4058             p_fmt->i_cat = UNKNOWN_ES;
4059             break;
4060         }
4061     }
4062     else
4063     {
4064         p_fmt->i_cat = UNKNOWN_ES;
4065     }
4066
4067     if( p_fmt->i_cat != UNKNOWN_ES )
4068     {
4069         p_fmt->i_extra = dcd->i_extra;
4070         if( p_fmt->i_extra > 0 )
4071         {
4072             p_fmt->p_extra = malloc( p_fmt->i_extra );
4073             if( p_fmt->p_extra )
4074                 memcpy( p_fmt->p_extra, dcd->p_extra, p_fmt->i_extra );
4075             else
4076                 p_fmt->i_extra = 0;
4077         }
4078     }
4079 }
4080
4081 typedef struct
4082 {
4083     int  i_type;
4084     int  i_magazine;
4085     int  i_page;
4086     char p_iso639[3];
4087 } ts_teletext_page_t;
4088
4089 static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
4090                                 const dvbpsi_pmt_es_t *p_es )
4091 {
4092     es_format_t *p_fmt = &pid->es->fmt;
4093
4094     ts_teletext_page_t p_page[2 * 64 + 20];
4095     unsigned i_page = 0;
4096
4097     /* Gather pages information */
4098 #if defined _DVBPSI_DR_56_H_ && \
4099     defined DVBPSI_VERSION && DVBPSI_VERSION_INT > DVBPSI_VERSION_WANTED(0,1,5)
4100     for( unsigned i_tag_idx = 0; i_tag_idx < 2; i_tag_idx++ )
4101     {
4102         dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, i_tag_idx == 0 ? 0x46 : 0x56 );
4103         if( !p_dr )
4104             continue;
4105
4106         dvbpsi_teletext_dr_t *p_sub = dvbpsi_DecodeTeletextDr( p_dr );
4107         if( !p_sub )
4108             continue;
4109
4110         for( int i = 0; i < p_sub->i_pages_number; i++ )
4111         {
4112             const dvbpsi_teletextpage_t *p_src = &p_sub->p_pages[i];
4113
4114             if( p_src->i_teletext_type >= 0x06 )
4115                 continue;
4116
4117             assert( i_page < sizeof(p_page)/sizeof(*p_page) );
4118
4119             ts_teletext_page_t *p_dst = &p_page[i_page++];
4120
4121             p_dst->i_type = p_src->i_teletext_type;
4122             p_dst->i_magazine = p_src->i_teletext_magazine_number
4123                 ? p_src->i_teletext_magazine_number : 8;
4124             p_dst->i_page = p_src->i_teletext_page_number;
4125             memcpy( p_dst->p_iso639, p_src->i_iso6392_language_code, 3 );
4126         }
4127     }
4128 #endif
4129
4130     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x59 );
4131     if( p_dr )
4132     {
4133         dvbpsi_subtitling_dr_t *p_sub = dvbpsi_DecodeSubtitlingDr( p_dr );
4134         for( int i = 0; p_sub && i < p_sub->i_subtitles_number; i++ )
4135         {
4136             dvbpsi_subtitle_t *p_src = &p_sub->p_subtitle[i];
4137
4138             if( p_src->i_subtitling_type < 0x01 || p_src->i_subtitling_type > 0x03 )
4139                 continue;
4140
4141             assert( i_page < sizeof(p_page)/sizeof(*p_page) );
4142
4143             ts_teletext_page_t *p_dst = &p_page[i_page++];
4144
4145             switch( p_src->i_subtitling_type )
4146             {
4147             case 0x01:
4148                 p_dst->i_type = 0x02;
4149                 break;
4150             default:
4151                 p_dst->i_type = 0x03;
4152                 break;
4153             }
4154             /* FIXME check if it is the right split */
4155             p_dst->i_magazine = (p_src->i_composition_page_id >> 8)
4156                 ? (p_src->i_composition_page_id >> 8) : 8;
4157             p_dst->i_page = p_src->i_composition_page_id & 0xff;
4158             memcpy( p_dst->p_iso639, p_src->i_iso6392_language_code, 3 );
4159         }
4160     }
4161
4162     /* */
4163     es_format_Init( p_fmt, SPU_ES, VLC_CODEC_TELETEXT );
4164
4165     if( !p_demux->p_sys->b_split_es || i_page <= 0 )
4166     {
4167         p_fmt->subs.teletext.i_magazine = -1;
4168         p_fmt->subs.teletext.i_page = 0;
4169         p_fmt->psz_description = strdup( vlc_gettext(ppsz_teletext_type[1]) );
4170
4171         dvbpsi_descriptor_t *p_dr;
4172         p_dr = PMTEsFindDescriptor( p_es, 0x46 );
4173         if( !p_dr )
4174             p_dr = PMTEsFindDescriptor( p_es, 0x56 );
4175
4176         if( !p_demux->p_sys->b_split_es && p_dr && p_dr->i_length > 0 )
4177         {
4178             /* Descriptor pass-through */
4179             p_fmt->p_extra = malloc( p_dr->i_length );
4180             if( p_fmt->p_extra )
4181             {
4182                 p_fmt->i_extra = p_dr->i_length;
4183                 memcpy( p_fmt->p_extra, p_dr->p_data, p_dr->i_length );
4184             }
4185         }
4186     }
4187     else
4188     {
4189         for( unsigned i = 0; i < i_page; i++ )
4190         {
4191             ts_es_t *p_es;
4192
4193             /* */
4194             if( i == 0 )
4195             {
4196                 p_es = pid->es;
4197             }
4198             else
4199             {
4200                 p_es = malloc( sizeof(*p_es) );
4201                 if( !p_es )
4202                     break;
4203
4204                 es_format_Copy( &p_es->fmt, &pid->es->fmt );
4205                 free( p_es->fmt.psz_language );
4206                 free( p_es->fmt.psz_description );
4207                 p_es->fmt.psz_language = NULL;
4208                 p_es->fmt.psz_description = NULL;
4209
4210                 p_es->id      = NULL;
4211                 p_es->p_data  = NULL;
4212                 p_es->i_data_size = 0;
4213                 p_es->i_data_gathered = 0;
4214                 p_es->pp_last = &p_es->p_data;
4215                 p_es->data_type = TS_ES_DATA_PES;
4216                 p_es->p_mpeg4desc = NULL;
4217
4218                 TAB_APPEND( pid->i_extra_es, pid->extra_es, p_es );
4219             }
4220
4221             /* */
4222             const ts_teletext_page_t *p = &p_page[i];
4223             p_es->fmt.i_priority = (p->i_type == 0x02 || p->i_type == 0x05) ?
4224                       ES_PRIORITY_SELECTABLE_MIN : ES_PRIORITY_NOT_DEFAULTABLE;
4225             p_es->fmt.psz_language = strndup( p->p_iso639, 3 );
4226             p_es->fmt.psz_description = strdup(vlc_gettext(ppsz_teletext_type[p->i_type]));
4227             p_es->fmt.subs.teletext.i_magazine = p->i_magazine;
4228             p_es->fmt.subs.teletext.i_page = p->i_page;
4229
4230             msg_Dbg( p_demux,
4231                          "    * ttxt type=%s lan=%s page=%d%02x",
4232                          p_es->fmt.psz_description,
4233                          p_es->fmt.psz_language,
4234                          p->i_magazine, p->i_page );
4235         }
4236     }
4237 }
4238 static void PMTSetupEsDvbSubtitle( demux_t *p_demux, ts_pid_t *pid,
4239                                    const dvbpsi_pmt_es_t *p_es )
4240 {
4241     es_format_t *p_fmt = &pid->es->fmt;
4242
4243     es_format_Init( p_fmt, SPU_ES, VLC_CODEC_DVBS );
4244
4245     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x59 );
4246     int i_page = 0;
4247     dvbpsi_subtitling_dr_t *p_sub = dvbpsi_DecodeSubtitlingDr( p_dr );
4248     for( int i = 0; p_sub && i < p_sub->i_subtitles_number; i++ )
4249     {
4250         const int i_type = p_sub->p_subtitle[i].i_subtitling_type;
4251         if( ( i_type >= 0x10 && i_type <= 0x14 ) ||
4252             ( i_type >= 0x20 && i_type <= 0x24 ) )
4253             i_page++;
4254     }
4255
4256     if( !p_demux->p_sys->b_split_es  || i_page <= 0 )
4257     {
4258         p_fmt->subs.dvb.i_id = -1;
4259         p_fmt->psz_description = strdup( _("DVB subtitles") );
4260
4261         if( !p_demux->p_sys->b_split_es && p_dr && p_dr->i_length > 0 )
4262         {
4263             /* Descriptor pass-through */
4264             p_fmt->p_extra = malloc( p_dr->i_length );
4265             if( p_fmt->p_extra )
4266             {
4267                 p_fmt->i_extra = p_dr->i_length;
4268                 memcpy( p_fmt->p_extra, p_dr->p_data, p_dr->i_length );
4269             }
4270         }
4271     }
4272     else
4273     {
4274         for( int i = 0; i < p_sub->i_subtitles_number; i++ )
4275         {
4276             ts_es_t *p_es;
4277
4278             /* */
4279             if( i == 0 )
4280             {
4281                 p_es = pid->es;
4282             }
4283             else
4284             {
4285                 p_es = malloc( sizeof(*p_es) );
4286                 if( !p_es )
4287                     break;
4288
4289                 es_format_Copy( &p_es->fmt, &pid->es->fmt );
4290                 free( p_es->fmt.psz_language );
4291                 free( p_es->fmt.psz_description );
4292                 p_es->fmt.psz_language = NULL;
4293                 p_es->fmt.psz_description = NULL;
4294
4295                 p_es->id      = NULL;
4296                 p_es->p_data   = NULL;
4297                 p_es->i_data_size = 0;
4298                 p_es->i_data_gathered = 0;
4299                 p_es->pp_last = &p_es->p_data;
4300                 p_es->data_type = TS_ES_DATA_PES;
4301                 p_es->p_mpeg4desc = NULL;
4302
4303                 TAB_APPEND( pid->i_extra_es, pid->extra_es, p_es );
4304             }
4305
4306             /* */
4307             const dvbpsi_subtitle_t *p = &p_sub->p_subtitle[i];
4308             p_es->fmt.psz_language = strndup( (char *)p->i_iso6392_language_code, 3 );
4309             switch( p->i_subtitling_type )
4310             {
4311             case 0x10: /* unspec. */
4312             case 0x11: /* 4:3 */
4313             case 0x12: /* 16:9 */
4314             case 0x13: /* 2.21:1 */
4315             case 0x14: /* HD monitor */
4316                 p_es->fmt.psz_description = strdup( _("DVB subtitles") );
4317                 break;
4318             case 0x20: /* Hearing impaired unspec. */
4319             case 0x21: /* h.i. 4:3 */
4320             case 0x22: /* h.i. 16:9 */
4321             case 0x23: /* h.i. 2.21:1 */
4322             case 0x24: /* h.i. HD monitor */
4323                 p_es->fmt.psz_description = strdup( _("DVB subtitles: hearing impaired") );
4324                 break;
4325             default:
4326                 break;
4327             }
4328
4329             /* Hack, FIXME */
4330             p_es->fmt.subs.dvb.i_id = ( p->i_composition_page_id <<  0 ) |
4331                                       ( p->i_ancillary_page_id   << 16 );
4332         }
4333     }
4334 }
4335
4336 static int vlc_ceil_log2( const unsigned int val )
4337 {
4338     int n = 31 - clz(val);
4339     if ((1U << n) != val)
4340         n++;
4341
4342     return n;
4343 }
4344
4345 static void OpusSetup(demux_t *demux, uint8_t *p, size_t len, es_format_t *p_fmt)
4346 {
4347     OpusHeader h;
4348
4349     /* default mapping */
4350     static const unsigned char map[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
4351     memcpy(h.stream_map, map, sizeof(map));
4352
4353     int csc, mapping;
4354     int channels = 0;
4355     int stream_count = 0;
4356     int ccc = p[1]; // channel_config_code
4357     if (ccc <= 8) {
4358         channels = ccc;
4359         if (channels)
4360             mapping = channels > 2;
4361         else {
4362             mapping = 255;
4363             channels = 2; // dual mono
4364         }
4365         static const uint8_t p_csc[8] = { 0, 1, 1, 2, 2, 2, 3, 3 };
4366         csc = p_csc[channels - 1];
4367         stream_count = channels - csc;
4368
4369         static const uint8_t map[6][7] = {
4370             { 2,1 },
4371             { 1,2,3 },
4372             { 4,1,2,3 },
4373             { 4,1,2,3,5 },
4374             { 4,1,2,3,5,6 },
4375             { 6,1,2,3,4,5,7 },
4376         };
4377         if (channels > 2)
4378             memcpy(&h.stream_map[1], map[channels-3], channels - 1);
4379     } else if (ccc == 0x81) {
4380         if (len < 4)
4381             goto explicit_config_too_short;
4382
4383         channels = p[2];
4384         mapping = p[3];
4385         csc = 0;
4386         if (mapping) {
4387             bs_t s;
4388             bs_init(&s, &p[4], len - 4);
4389             stream_count = 1;
4390             if (channels) {
4391                 int bits = vlc_ceil_log2(channels);
4392                 if (s.i_left < bits)
4393                     goto explicit_config_too_short;
4394                 stream_count = bs_read(&s, bits) + 1;
4395                 bits = vlc_ceil_log2(stream_count + 1);
4396                 if (s.i_left < bits)
4397                     goto explicit_config_too_short;
4398                 csc = bs_read(&s, bits);
4399             }
4400             int channel_bits = vlc_ceil_log2(stream_count + csc + 1);
4401             if (s.i_left < channels * channel_bits)
4402                 goto explicit_config_too_short;
4403
4404             unsigned char silence = (1U << (stream_count + csc + 1)) - 1;
4405             for (int i = 0; i < channels; i++) {
4406                 unsigned char m = bs_read(&s, channel_bits);
4407                 if (m == silence)
4408                     m = 0xff;
4409                 h.stream_map[i] = m;
4410             }
4411         }
4412     } else if (ccc >= 0x80 && ccc <= 0x88) {
4413         channels = ccc - 0x80;
4414         if (channels)
4415             mapping = 1;
4416         else {
4417             mapping = 255;
4418             channels = 2; // dual mono
4419         }
4420         csc = 0;
4421         stream_count = channels;
4422     } else {
4423         msg_Err(demux, "Opus channel configuration 0x%.2x is reserved", ccc);
4424     }
4425
4426     if (!channels) {
4427         msg_Err(demux, "Opus channel configuration 0x%.2x not supported yet", p[1]);
4428         return;
4429     }
4430
4431     opus_prepare_header(channels, 0, &h);
4432     h.preskip = 0;
4433     h.input_sample_rate = 48000;
4434     h.nb_coupled = csc;
4435     h.nb_streams = channels - csc;
4436     h.channel_mapping = mapping;
4437
4438     if (h.channels) {
4439         opus_write_header((uint8_t**)&p_fmt->p_extra, &p_fmt->i_extra, &h, NULL /* FIXME */);
4440         if (p_fmt->p_extra) {
4441             p_fmt->i_cat = AUDIO_ES;
4442             p_fmt->i_codec = VLC_CODEC_OPUS;
4443             p_fmt->audio.i_channels = h.channels;
4444             p_fmt->audio.i_rate = 48000;
4445         }
4446     }
4447
4448     return;
4449
4450 explicit_config_too_short:
4451     msg_Err(demux, "Opus descriptor too short");
4452 }
4453
4454 static void PMTSetupEs0x06( demux_t *p_demux, ts_pid_t *pid,
4455                             const dvbpsi_pmt_es_t *p_es )
4456 {
4457     es_format_t *p_fmt = &pid->es->fmt;
4458     dvbpsi_descriptor_t *p_subs_dr = PMTEsFindDescriptor( p_es, 0x59 );
4459     dvbpsi_descriptor_t *desc;
4460
4461     if( PMTEsHasRegistration( p_demux, p_es, "AC-3" ) ||
4462         PMTEsFindDescriptor( p_es, 0x6a ) ||
4463         PMTEsFindDescriptor( p_es, 0x81 ) )
4464     {
4465         p_fmt->i_cat = AUDIO_ES;
4466         p_fmt->i_codec = VLC_CODEC_A52;
4467     }
4468     else if( (desc = PMTEsFindDescriptor( p_es, 0x7f ) ) && desc->i_length >= 2 &&
4469               PMTEsHasRegistration(p_demux, p_es, "Opus"))
4470     {
4471         OpusSetup(p_demux, desc->p_data, desc->i_length, p_fmt);
4472     }
4473     else if( PMTEsFindDescriptor( p_es, 0x7a ) )
4474     {
4475         /* DVB with stream_type 0x06 (ETS EN 300 468) */
4476         p_fmt->i_cat = AUDIO_ES;
4477         p_fmt->i_codec = VLC_CODEC_EAC3;
4478     }
4479     else if( PMTEsHasRegistration( p_demux, p_es, "DTS1" ) ||
4480              PMTEsHasRegistration( p_demux, p_es, "DTS2" ) ||
4481              PMTEsHasRegistration( p_demux, p_es, "DTS3" ) ||
4482              PMTEsFindDescriptor( p_es, 0x73 ) )
4483     {
4484         /*registration descriptor(ETSI TS 101 154 Annex F)*/
4485         p_fmt->i_cat = AUDIO_ES;
4486         p_fmt->i_codec = VLC_CODEC_DTS;
4487     }
4488     else if( PMTEsHasRegistration( p_demux, p_es, "BSSD" ) && !p_subs_dr )
4489     {
4490         /* BSSD is AES3 DATA, but could also be subtitles
4491          * we need to check for secondary descriptor then s*/
4492         p_fmt->i_cat = AUDIO_ES;
4493         p_fmt->b_packetized = true;
4494         p_fmt->i_codec = VLC_CODEC_302M;
4495     }
4496     else if( PMTEsHasRegistration( p_demux, p_es, "HEVC" ) )
4497     {
4498         p_fmt->i_cat = VIDEO_ES;
4499         p_fmt->i_codec = VLC_CODEC_HEVC;
4500     }
4501     else if ( p_demux->p_sys->arib.e_mode == ARIBMODE_ENABLED )
4502     {
4503         /* Lookup our data component descriptor first ARIB STD B10 6.4 */
4504         dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0xFD );
4505         /* and check that it maps to something ARIB STD B14 Table 5.1/5.2 */
4506         if ( p_dr && p_dr->i_length >= 2 )
4507         {
4508             if( !memcmp( p_dr->p_data, "\x00\x08", 2 ) &&  (
4509                     PMTEsHasComponentTag( p_es, 0x30 ) ||
4510                     PMTEsHasComponentTag( p_es, 0x31 ) ||
4511                     PMTEsHasComponentTag( p_es, 0x32 ) ||
4512                     PMTEsHasComponentTag( p_es, 0x33 ) ||
4513                     PMTEsHasComponentTag( p_es, 0x34 ) ||
4514                     PMTEsHasComponentTag( p_es, 0x35 ) ||
4515                     PMTEsHasComponentTag( p_es, 0x36 ) ||
4516                     PMTEsHasComponentTag( p_es, 0x37 ) ) )
4517             {
4518                 es_format_Init( &pid->es->fmt, SPU_ES, VLC_CODEC_ARIB_A );
4519                 p_fmt->psz_language = strndup ( "jpn", 3 );
4520                 p_fmt->psz_description = strdup( _("ARIB subtitles") );
4521             }
4522             else if( !memcmp( p_dr->p_data, "\x00\x12", 2 ) && (
4523                      PMTEsHasComponentTag( p_es, 0x87 ) ||
4524                      PMTEsHasComponentTag( p_es, 0x88 ) ) )
4525             {
4526                 es_format_Init( &pid->es->fmt, SPU_ES, VLC_CODEC_ARIB_C );
4527                 p_fmt->psz_language = strndup ( "jpn", 3 );
4528                 p_fmt->psz_description = strdup( _("ARIB subtitles") );
4529             }
4530         }
4531     }
4532     else
4533     {
4534         /* Subtitle/Teletext/VBI fallbacks */
4535         dvbpsi_subtitling_dr_t *p_sub;
4536         if( p_subs_dr && ( p_sub = dvbpsi_DecodeSubtitlingDr( p_subs_dr ) ) )
4537         {
4538             for( int i = 0; i < p_sub->i_subtitles_number; i++ )
4539             {
4540                 if( p_fmt->i_cat != UNKNOWN_ES )
4541                     break;
4542
4543                 switch( p_sub->p_subtitle[i].i_subtitling_type )
4544                 {
4545                 case 0x01: /* EBU Teletext subtitles */
4546                 case 0x02: /* Associated EBU Teletext */
4547                 case 0x03: /* VBI data */
4548                     PMTSetupEsTeletext( p_demux, pid, p_es );
4549                     break;
4550                 case 0x10: /* DVB Subtitle (normal) with no monitor AR critical */
4551                 case 0x11: /*                 ...   on 4:3 AR monitor */
4552                 case 0x12: /*                 ...   on 16:9 AR monitor */
4553                 case 0x13: /*                 ...   on 2.21:1 AR monitor */
4554                 case 0x14: /*                 ...   for display on a high definition monitor */
4555                 case 0x20: /* DVB Subtitle (impaired) with no monitor AR critical */
4556                 case 0x21: /*                 ...   on 4:3 AR monitor */
4557                 case 0x22: /*                 ...   on 16:9 AR monitor */
4558                 case 0x23: /*                 ...   on 2.21:1 AR monitor */
4559                 case 0x24: /*                 ...   for display on a high definition monitor */
4560                     PMTSetupEsDvbSubtitle( p_demux, pid, p_es );
4561                     break;
4562                 default:
4563                     msg_Err( p_demux, "Unrecognized DVB subtitle type (0x%x)",
4564                              p_sub->p_subtitle[i].i_subtitling_type );
4565                     break;
4566                 }
4567             }
4568         }
4569
4570         if( p_fmt->i_cat == UNKNOWN_ES &&
4571             ( PMTEsFindDescriptor( p_es, 0x45 ) ||  /* VBI Data descriptor */
4572               PMTEsFindDescriptor( p_es, 0x46 ) ||  /* VBI Teletext descriptor */
4573               PMTEsFindDescriptor( p_es, 0x56 ) ) ) /* EBU Teletext descriptor */
4574         {
4575             /* Teletext/VBI */
4576             PMTSetupEsTeletext( p_demux, pid, p_es );
4577         }
4578     }
4579
4580     /* FIXME is it useful ? */
4581     if( PMTEsFindDescriptor( p_es, 0x52 ) )
4582     {
4583         dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x52 );
4584         dvbpsi_stream_identifier_dr_t *p_si = dvbpsi_DecodeStreamIdentifierDr( p_dr );
4585
4586         msg_Dbg( p_demux, "    * Stream Component Identifier: %d", p_si->i_component_tag );
4587     }
4588 }
4589
4590 static void PMTSetupEs0xEA( demux_t *p_demux, ts_pid_t *pid,
4591                            const dvbpsi_pmt_es_t *p_es )
4592 {
4593     /* Registration Descriptor */
4594     if( !PMTEsHasRegistration( p_demux, p_es, "VC-1" ) )
4595     {
4596         msg_Err( p_demux, "Registration descriptor not found or invalid" );
4597         return;
4598     }
4599
4600     es_format_t *p_fmt = &pid->es->fmt;
4601
4602     /* registration descriptor for VC-1 (SMPTE rp227) */
4603     p_fmt->i_cat = VIDEO_ES;
4604     p_fmt->i_codec = VLC_CODEC_VC1;
4605
4606     /* XXX With Simple and Main profile the SEQUENCE
4607      * header is modified: video width and height are
4608      * inserted just after the start code as 2 int16_t
4609      * The packetizer will take care of that. */
4610 }
4611
4612 static void PMTSetupEs0xD1( demux_t *p_demux, ts_pid_t *pid,
4613                            const dvbpsi_pmt_es_t *p_es )
4614 {
4615     /* Registration Descriptor */
4616     if( !PMTEsHasRegistration( p_demux, p_es, "drac" ) )
4617     {
4618         msg_Err( p_demux, "Registration descriptor not found or invalid" );
4619         return;
4620     }
4621
4622     es_format_t *p_fmt = &pid->es->fmt;
4623
4624     /* registration descriptor for Dirac
4625      * (backwards compatable with VC-2 (SMPTE Sxxxx:2008)) */
4626     p_fmt->i_cat = VIDEO_ES;
4627     p_fmt->i_codec = VLC_CODEC_DIRAC;
4628 }
4629
4630 static void PMTSetupEs0xA0( demux_t *p_demux, ts_pid_t *pid,
4631                            const dvbpsi_pmt_es_t *p_es )
4632 {
4633     /* MSCODEC sent by vlc */
4634     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0xa0 );
4635     if( !p_dr || p_dr->i_length < 10 )
4636     {
4637         msg_Warn( p_demux,
4638                   "private MSCODEC (vlc) without bih private descriptor" );
4639         return;
4640     }
4641
4642     es_format_t *p_fmt = &pid->es->fmt;
4643     p_fmt->i_cat = VIDEO_ES;
4644     p_fmt->i_codec = VLC_FOURCC( p_dr->p_data[0], p_dr->p_data[1],
4645                                  p_dr->p_data[2], p_dr->p_data[3] );
4646     p_fmt->video.i_width = GetWBE( &p_dr->p_data[4] );
4647     p_fmt->video.i_height = GetWBE( &p_dr->p_data[6] );
4648     p_fmt->i_extra = GetWBE( &p_dr->p_data[8] );
4649
4650     if( p_fmt->i_extra > 0 )
4651     {
4652         p_fmt->p_extra = malloc( p_fmt->i_extra );
4653         if( p_fmt->p_extra )
4654             memcpy( p_fmt->p_extra, &p_dr->p_data[10],
4655                     __MIN( p_fmt->i_extra, p_dr->i_length - 10 ) );
4656         else
4657             p_fmt->i_extra = 0;
4658     }
4659     /* For such stream we will gather them ourself and don't launch a
4660      * packetizer.
4661      * Yes it's ugly but it's the only way to have DIV3 working */
4662     p_fmt->b_packetized = true;
4663 }
4664
4665 static void PMTSetupEs0x83( const dvbpsi_pmt_t *p_pmt, ts_pid_t *pid )
4666 {
4667     /* WiDi broadcasts without registration on PMT 0x1, PCR 0x1000 and
4668      * with audio track pid being 0x1100..0x11FF */
4669     if ( p_pmt->i_program_number == 0x1 &&
4670          p_pmt->i_pcr_pid == 0x1000 &&
4671         ( pid->i_pid >> 8 ) == 0x11 )
4672     {
4673         /* Not enough ? might contain 0x83 private descriptor, 2 bytes 0x473F */
4674         es_format_Init( &pid->es->fmt, AUDIO_ES, VLC_CODEC_WIDI_LPCM );
4675     }
4676     else
4677         es_format_Init( &pid->es->fmt, AUDIO_ES, VLC_CODEC_DVD_LPCM );
4678 }
4679
4680 static bool PMTSetupEsHDMV( demux_t *p_demux, ts_pid_t *pid,
4681                             const dvbpsi_pmt_es_t *p_es )
4682 {
4683     es_format_t *p_fmt = &pid->es->fmt;
4684
4685     /* Blu-Ray mapping */
4686     switch( p_es->i_type )
4687     {
4688     case 0x80:
4689         p_fmt->i_cat = AUDIO_ES;
4690         p_fmt->i_codec = VLC_CODEC_BD_LPCM;
4691         break;
4692     case 0x81:
4693         p_fmt->i_cat = AUDIO_ES;
4694         p_fmt->i_codec = VLC_CODEC_A52;
4695         break;
4696     case 0x82:
4697     case 0x85: /* DTS-HD High resolution audio */
4698     case 0x86: /* DTS-HD Master audio */
4699     case 0xA2: /* Secondary DTS audio */
4700         p_fmt->i_cat = AUDIO_ES;
4701         p_fmt->i_codec = VLC_CODEC_DTS;
4702         break;
4703
4704     case 0x83: /* TrueHD AC3 */
4705         p_fmt->i_cat = AUDIO_ES;
4706         p_fmt->i_codec = VLC_CODEC_TRUEHD;
4707         break;
4708
4709     case 0x84: /* E-AC3 */
4710     case 0xA1: /* Secondary E-AC3 */
4711         p_fmt->i_cat = AUDIO_ES;
4712         p_fmt->i_codec = VLC_CODEC_EAC3;
4713         break;
4714     case 0x90: /* Presentation graphics */
4715         p_fmt->i_cat = SPU_ES;
4716         p_fmt->i_codec = VLC_CODEC_BD_PG;
4717         break;
4718     case 0x91: /* Interactive graphics */
4719     case 0x92: /* Subtitle */
4720         return false;
4721     case 0xEA:
4722         p_fmt->i_cat = VIDEO_ES;
4723         p_fmt->i_codec = VLC_CODEC_VC1;
4724         break;
4725     default:
4726         msg_Info( p_demux, "HDMV registration not implemented for pid 0x%x type 0x%x",
4727                   p_es->i_pid, p_es->i_type );
4728         return false;
4729         break;
4730     }
4731     return true;
4732 }
4733
4734 static bool PMTSetupEsRegistration( demux_t *p_demux, ts_pid_t *pid,
4735                                     const dvbpsi_pmt_es_t *p_es )
4736 {
4737     static const struct
4738     {
4739         char         psz_tag[5];
4740         int          i_cat;
4741         vlc_fourcc_t i_codec;
4742     } p_regs[] = {
4743         { "AC-3", AUDIO_ES, VLC_CODEC_A52   },
4744         { "DTS1", AUDIO_ES, VLC_CODEC_DTS   },
4745         { "DTS2", AUDIO_ES, VLC_CODEC_DTS   },
4746         { "DTS3", AUDIO_ES, VLC_CODEC_DTS   },
4747         { "BSSD", AUDIO_ES, VLC_CODEC_302M  },
4748         { "VC-1", VIDEO_ES, VLC_CODEC_VC1   },
4749         { "drac", VIDEO_ES, VLC_CODEC_DIRAC },
4750         { "", UNKNOWN_ES, 0 }
4751     };
4752     es_format_t *p_fmt = &pid->es->fmt;
4753
4754     for( int i = 0; p_regs[i].i_cat != UNKNOWN_ES; i++ )
4755     {
4756         if( PMTEsHasRegistration( p_demux, p_es, p_regs[i].psz_tag ) )
4757         {
4758             p_fmt->i_cat   = p_regs[i].i_cat;
4759             p_fmt->i_codec = p_regs[i].i_codec;
4760             if (p_es->i_type == 0x87)
4761                 p_fmt->i_codec = VLC_CODEC_EAC3;
4762             return true;
4763         }
4764     }
4765     return false;
4766 }
4767
4768 static char *GetAudioTypeDesc(demux_t *p_demux, int type)
4769 {
4770     static const char *audio_type[] = {
4771         NULL,
4772         N_("clean effects"),
4773         N_("hearing impaired"),
4774         N_("visual impaired commentary"),
4775     };
4776
4777     if (type < 0 || type > 3)
4778         msg_Dbg( p_demux, "unknown audio type: %d", type);
4779     else if (type > 0)
4780         return strdup(audio_type[type]);
4781
4782     return NULL;
4783 }
4784 static void PMTParseEsIso639( demux_t *p_demux, ts_pid_t *pid,
4785                               const dvbpsi_pmt_es_t *p_es )
4786 {
4787     /* get language descriptor */
4788     dvbpsi_descriptor_t *p_dr = PMTEsFindDescriptor( p_es, 0x0a );
4789
4790     if( !p_dr )
4791         return;
4792
4793     dvbpsi_iso639_dr_t *p_decoded = dvbpsi_DecodeISO639Dr( p_dr );
4794     if( !p_decoded )
4795     {
4796         msg_Err( p_demux, "Failed to decode a ISO 639 descriptor" );
4797         return;
4798     }
4799
4800 #if defined(DR_0A_API_VER) && (DR_0A_API_VER >= 2)
4801     pid->es->fmt.psz_language = malloc( 4 );
4802     if( pid->es->fmt.psz_language )
4803     {
4804         memcpy( pid->es->fmt.psz_language, p_decoded->code[0].iso_639_code, 3 );
4805         pid->es->fmt.psz_language[3] = 0;
4806         msg_Dbg( p_demux, "found language: %s", pid->es->fmt.psz_language);
4807     }
4808     int type = p_decoded->code[0].i_audio_type;
4809     pid->es->fmt.psz_description = GetAudioTypeDesc(p_demux, type);
4810     if (type == 0)
4811         pid->es->fmt.i_priority = ES_PRIORITY_SELECTABLE_MIN + 1; // prioritize normal audio tracks
4812
4813     pid->es->fmt.i_extra_languages = p_decoded->i_code_count-1;
4814     if( pid->es->fmt.i_extra_languages > 0 )
4815         pid->es->fmt.p_extra_languages =
4816             malloc( sizeof(*pid->es->fmt.p_extra_languages) *
4817                     pid->es->fmt.i_extra_languages );
4818     if( pid->es->fmt.p_extra_languages )
4819     {
4820         for( int i = 0; i < pid->es->fmt.i_extra_languages; i++ )
4821         {
4822             pid->es->fmt.p_extra_languages[i].psz_language = malloc(4);
4823             if( pid->es->fmt.p_extra_languages[i].psz_language )
4824             {
4825                 memcpy( pid->es->fmt.p_extra_languages[i].psz_language,
4826                     p_decoded->code[i+1].iso_639_code, 3 );
4827                 pid->es->fmt.p_extra_languages[i].psz_language[3] = '\0';
4828             }
4829             int type = p_decoded->code[i].i_audio_type;
4830             pid->es->fmt.p_extra_languages[i].psz_description = GetAudioTypeDesc(p_demux, type);
4831         }
4832     }
4833 #else
4834     pid->es->fmt.psz_language = malloc( 4 );
4835     if( pid->es->fmt.psz_language )
4836     {
4837         memcpy( pid->es->fmt.psz_language,
4838                 p_decoded->i_iso_639_code, 3 );
4839         pid->es->fmt.psz_language[3] = 0;
4840     }
4841 #endif
4842 }
4843
4844 static void AddAndCreateES( demux_t *p_demux, ts_pid_t *pid )
4845 {
4846     demux_sys_t  *p_sys = p_demux->p_sys;
4847     bool b_create_delayed = false;
4848
4849     if( pid )
4850     {
4851         if( pid->b_seen && p_sys->b_delay_es_creation )
4852         {
4853             p_sys->b_delay_es_creation = false;
4854             b_create_delayed = true;
4855         }
4856
4857         if( !p_sys->b_delay_es_creation )
4858         {
4859             pid->es->id = es_out_Add( p_demux->out, &pid->es->fmt );
4860             for( int i = 0; i < pid->i_extra_es; i++ )
4861             {
4862                 pid->extra_es[i]->id =
4863                     es_out_Add( p_demux->out, &pid->extra_es[i]->fmt );
4864             }
4865             p_sys->i_pmt_es += 1 + pid->i_extra_es;
4866         }
4867     }
4868     else if( p_sys->b_delay_es_creation )
4869     {
4870         p_sys->b_delay_es_creation = false;
4871         b_create_delayed = true;
4872     }
4873
4874     if( b_create_delayed )
4875     {
4876         for(int i=MIN_ES_PID; i<MAX_ES_PID; i++)
4877         {
4878             pid = &p_sys->pid[i];
4879             if(!pid->es || pid->es->id)
4880                 continue;
4881             pid->es->id = es_out_Add( p_demux->out, &pid->es->fmt );
4882             for( int j = 0; j < pid->i_extra_es; j++ )
4883             {
4884                 pid->extra_es[j]->id =
4885                     es_out_Add( p_demux->out, &pid->extra_es[j]->fmt );
4886             }
4887             p_sys->i_pmt_es += 1 + pid->i_extra_es;
4888         }
4889     }
4890 }
4891
4892 static void PMTCallBack( void *data, dvbpsi_pmt_t *p_pmt )
4893 {
4894     demux_t      *p_demux = data;
4895     demux_sys_t  *p_sys = p_demux->p_sys;
4896
4897     ts_pid_t     *pmt = NULL;
4898     ts_prg_psi_t *prg;
4899
4900     msg_Dbg( p_demux, "PMTCallBack called" );
4901
4902     /* First find this PMT declared in PAT */
4903     for( int i = 0; !pmt && i < p_sys->i_pmt; i++ )
4904         for( int i_prg = 0; !pmt && i_prg < p_sys->pmt[i]->psi->i_prg; i_prg++ )
4905         {
4906             const int i_pmt_number = p_sys->pmt[i]->psi->prg[i_prg]->i_number;
4907             if( i_pmt_number != TS_USER_PMT_NUMBER &&
4908                 i_pmt_number == p_pmt->i_program_number )
4909             {
4910                 pmt = p_sys->pmt[i];
4911                 prg = p_sys->pmt[i]->psi->prg[i_prg];
4912             }
4913         }
4914
4915     if( pmt == NULL )
4916     {
4917         msg_Warn( p_demux, "unreferenced program (broken stream)" );
4918         dvbpsi_DeletePMT(p_pmt);
4919         return;
4920     }
4921
4922
4923     if( prg->i_version != -1 &&
4924         ( !p_pmt->b_current_next || prg->i_version == p_pmt->i_version ) )
4925     {
4926         dvbpsi_DeletePMT( p_pmt );
4927         return;
4928     }
4929
4930     ts_pid_t **pp_clean = NULL;
4931     int      i_clean = 0;
4932     /* Clean this program (remove all es) */
4933     for( int i = 0; i < 8192; i++ )
4934     {
4935         ts_pid_t *pid = &p_sys->pid[i];
4936
4937         if( pid->b_valid && pid->p_owner == pmt->psi &&
4938             pid->i_owner_number == prg->i_number && pid->psi == NULL )
4939         {
4940             TAB_APPEND( i_clean, pp_clean, pid );
4941         }
4942     }
4943     if( prg->iod )
4944     {
4945         IODFree( prg->iod );
4946         prg->iod = NULL;
4947     }
4948
4949     msg_Dbg( p_demux, "new PMT program number=%d version=%d pid_pcr=%d",
4950              p_pmt->i_program_number, p_pmt->i_version, p_pmt->i_pcr_pid );
4951     prg->i_pid_pcr = p_pmt->i_pcr_pid;
4952     prg->i_version = p_pmt->i_version;
4953
4954     ValidateDVBMeta( p_demux, prg->i_pid_pcr );
4955     if( ProgramIsSelected( p_demux, prg->i_number ) )
4956         SetPIDFilter( p_demux, prg->i_pid_pcr, true ); /* Set demux filter */
4957
4958     /* Parse PMT descriptors */
4959     ts_pmt_registration_type_t registration_type = TS_PMT_REGISTRATION_NONE;
4960     dvbpsi_descriptor_t  *p_dr;
4961
4962     /* First pass for standard detection */
4963     if ( p_sys->arib.e_mode == ARIBMODE_AUTO )
4964     {
4965         int i_arib_flags = 0; /* Descriptors can be repeated */
4966         for( p_dr = p_pmt->p_first_descriptor; p_dr != NULL; p_dr = p_dr->p_next )
4967         {
4968             switch(p_dr->i_tag)
4969             {
4970             case 0x09:
4971             {
4972                 dvbpsi_ca_dr_t *p_cadr = dvbpsi_DecodeCADr( p_dr );
4973                 i_arib_flags |= (p_cadr->i_ca_system_id == 0x05);
4974             }
4975                 break;
4976             case 0xF6:
4977                 i_arib_flags |= 1 << 1;
4978                 break;
4979             case 0xC1:
4980                 i_arib_flags |= 1 << 2;
4981                 break;
4982             default:
4983                 break;
4984             }
4985         }
4986         if ( i_arib_flags == 0x07 ) //0b111
4987             p_sys->arib.e_mode = ARIBMODE_ENABLED;
4988     }
4989
4990     for( p_dr = p_pmt->p_first_descriptor; p_dr != NULL; p_dr = p_dr->p_next )
4991     {
4992         /* special descriptors handling */
4993         switch(p_dr->i_tag)
4994         {
4995         case 0x1d: /* We have found an IOD descriptor */
4996             msg_Dbg( p_demux, " * PMT descriptor : IOD (0x1d)" );
4997             prg->iod = IODNew( p_dr->i_length, p_dr->p_data );
4998             break;
4999
5000         case 0x9:
5001             msg_Dbg( p_demux, " * PMT descriptor : CA (0x9) SysID 0x%x",
5002                     (p_dr->p_data[0] << 8) | p_dr->p_data[1] );
5003             break;
5004
5005         case 0x5: /* Registration Descriptor */
5006             if( p_dr->i_length != 4 )
5007             {
5008                 msg_Warn( p_demux, " * PMT invalid Registration Descriptor" );
5009             }
5010             else
5011             {
5012                 msg_Dbg( p_demux, " * PMT descriptor : registration %4.4s", p_dr->p_data );
5013                 if( !memcmp( p_dr->p_data, "HDMV", 4 ) || !memcmp( p_dr->p_data, "HDPR", 4 ) )
5014                     registration_type = TS_PMT_REGISTRATION_HDMV; /* Blu-Ray */
5015             }
5016             break;
5017
5018         case 0x0f:
5019             msg_Dbg( p_demux, " * PMT descriptor : Private Data (0x0f)" );
5020             break;
5021
5022         case 0xC1:
5023             msg_Dbg( p_demux, " * PMT descriptor : Digital copy control (0xC1)" );
5024             break;
5025
5026         case 0x88: /* EACEM Simulcast HD Logical channels ordering */
5027             msg_Dbg( p_demux, " * descriptor : EACEM Simulcast HD" );
5028             /* TODO: apply visibility flags */
5029             break;
5030
5031         default:
5032             msg_Dbg( p_demux, " * PMT descriptor : unknown (0x%x)", p_dr->i_tag );
5033         }
5034     }
5035     dvbpsi_pmt_es_t      *p_es;
5036     for( p_es = p_pmt->p_first_es; p_es != NULL; p_es = p_es->p_next )
5037     {
5038         ts_pid_t tmp_pid = {0}, *old_pid = {0}, *pid = &tmp_pid;
5039
5040         /* Find out if the PID was already declared */
5041         for( int i = 0; i < i_clean; i++ )
5042         {
5043             if( pp_clean[i] == &p_sys->pid[p_es->i_pid] )
5044             {
5045                 old_pid = pp_clean[i];
5046                 break;
5047             }
5048         }
5049         ValidateDVBMeta( p_demux, p_es->i_pid );
5050
5051         if( !old_pid && p_sys->pid[p_es->i_pid].b_valid )
5052         {
5053             msg_Warn( p_demux, " * PMT error: pid=%d already defined",
5054                       p_es->i_pid );
5055             continue;
5056         }
5057
5058         char const * psz_typedesc = "";
5059         switch(p_es->i_type)
5060         {
5061         case 0x00:
5062             psz_typedesc = "ISO/IEC Reserved";
5063             break;
5064         case 0x01:
5065             psz_typedesc = "ISO/IEC 11172 Video";
5066             break;
5067         case 0x02:
5068             psz_typedesc = "ISO/IEC 13818-2 Video or ISO/IEC 11172-2 constrained parameter video stream";
5069             break;
5070         case 0x03:
5071             psz_typedesc = "ISO/IEC 11172 Audio";
5072             break;
5073         case 0x04:
5074             psz_typedesc = "ISO/IEC 13818-3 Audio";
5075             break;
5076         case 0x05:
5077             psz_typedesc = "ISO/IEC 13818-1 private_sections";
5078             break;
5079         case 0x06:
5080             psz_typedesc = "ISO/IEC 13818-1 PES packets containing private data";
5081             break;
5082         case 0x07:
5083             psz_typedesc = "ISO/IEC 13522 MHEG";
5084             break;
5085         case 0x08:
5086             psz_typedesc = "ISO/IEC 13818-1 Annex A DSM CC";
5087             break;
5088         case 0x09:
5089             psz_typedesc = "ITU-T Rec. H.222.1";
5090             break;
5091         case 0x0A:
5092             psz_typedesc = "ISO/IEC 13818-6 type A";
5093             break;
5094         case 0x0B:
5095             psz_typedesc = "ISO/IEC 13818-6 type B";
5096             break;
5097         case 0x0C:
5098             psz_typedesc = "ISO/IEC 13818-6 type C";
5099             break;
5100         case 0x0D:
5101             psz_typedesc = "ISO/IEC 13818-6 type D";
5102             break;
5103         case 0x0E:
5104             psz_typedesc = "ISO/IEC 13818-1 auxiliary";
5105             break;
5106         default:
5107             if (p_es->i_type >= 0x0F && p_es->i_type <=0x7F)
5108                 psz_typedesc = "ISO/IEC 13818-1 Reserved";
5109             else
5110                 psz_typedesc = "User Private";
5111         }
5112
5113         msg_Dbg( p_demux, "  * pid=%d type=0x%x %s",
5114                  p_es->i_pid, p_es->i_type, psz_typedesc );
5115
5116         for( p_dr = p_es->p_first_descriptor; p_dr != NULL;
5117              p_dr = p_dr->p_next )
5118         {
5119             msg_Dbg( p_demux, "    - descriptor tag 0x%x",
5120                      p_dr->i_tag );
5121         }
5122
5123         PIDInit( pid, false, pmt->psi );
5124         PIDFillFormat( &pid->es->fmt, p_es->i_type );
5125         pid->i_owner_number = prg->i_number;
5126         pid->i_pid          = p_es->i_pid;
5127         pid->b_seen         = p_sys->pid[p_es->i_pid].b_seen;
5128
5129
5130         bool b_registration_applied = false;
5131         if ( p_es->i_type >= 0x80 ) /* non standard, extensions */
5132         {
5133             if ( registration_type == TS_PMT_REGISTRATION_HDMV )
5134             {
5135                 if (( b_registration_applied = PMTSetupEsHDMV( p_demux, pid, p_es ) ))
5136                     msg_Dbg( p_demux, "    + HDMV registration applied to pid %d type 0x%x",
5137                              p_es->i_pid, p_es->i_type );
5138             }
5139             else
5140             {
5141                 if (( b_registration_applied = PMTSetupEsRegistration( p_demux, pid, p_es ) ))
5142                     msg_Dbg( p_demux, "    + registration applied to pid %d type 0x%x",
5143                         p_es->i_pid, p_es->i_type );
5144             }
5145         }
5146
5147         if ( !b_registration_applied )
5148         {
5149             switch( p_es->i_type )
5150             {
5151             case 0x06:
5152                 /* Handle PES private data */
5153                 PMTSetupEs0x06( p_demux, pid, p_es );
5154                 break;
5155             /* All other private or reserved types */
5156             case 0x0f:
5157             case 0x10:
5158             case 0x11:
5159             case 0x12:
5160                 PMTSetupEsISO14496( p_demux, pid, prg, p_es );
5161                 break;
5162             case 0x83:
5163                 /* LPCM (audio) */
5164                 PMTSetupEs0x83( p_pmt, pid );
5165                 break;
5166             case 0xa0:
5167                 PMTSetupEs0xA0( p_demux, pid, p_es );
5168                 break;
5169             case 0xd1:
5170                 PMTSetupEs0xD1( p_demux, pid, p_es );
5171                 break;
5172             case 0xEA:
5173                 PMTSetupEs0xEA( p_demux, pid, p_es );
5174             default:
5175                 break;
5176             }
5177         }
5178
5179         if( pid->es->fmt.i_cat == AUDIO_ES ||
5180             ( pid->es->fmt.i_cat == SPU_ES &&
5181               pid->es->fmt.i_codec != VLC_CODEC_DVBS &&
5182               pid->es->fmt.i_codec != VLC_CODEC_TELETEXT ) )
5183         {
5184             PMTParseEsIso639( p_demux, pid, p_es );
5185         }
5186
5187         switch( pid->es->fmt.i_codec )
5188         {
5189         case VLC_CODEC_SCTE_27:
5190             pid->es->data_type = TS_ES_DATA_TABLE_SECTION;
5191             break;
5192         default:
5193             //pid->es->data_type = TS_ES_DATA_PES;
5194             break;
5195         }
5196
5197         pid->es->fmt.i_group = p_pmt->i_program_number;
5198         for( int i = 0; i < pid->i_extra_es; i++ )
5199             pid->extra_es[i]->fmt.i_group = p_pmt->i_program_number;
5200
5201         if( pid->es->fmt.i_cat == UNKNOWN_ES )
5202         {
5203             msg_Dbg( p_demux, "   => pid %d content is *unknown*",
5204                      p_es->i_pid );
5205         }
5206         else
5207         {
5208             msg_Dbg( p_demux, "   => pid %d has now es fcc=%4.4s",
5209                      p_es->i_pid, (char*)&pid->es->fmt.i_codec );
5210
5211             if( p_sys->b_es_id_pid ) pid->es->fmt.i_id = p_es->i_pid;
5212
5213             /* Check if we can avoid restarting the ES */
5214             if( old_pid &&
5215                 pid->es->fmt.i_codec == old_pid->es->fmt.i_codec &&
5216                 pid->es->fmt.i_extra == old_pid->es->fmt.i_extra &&
5217                 pid->es->fmt.i_extra == 0 &&
5218                 pid->i_extra_es == old_pid->i_extra_es &&
5219                 ( ( !pid->es->fmt.psz_language &&
5220                     !old_pid->es->fmt.psz_language ) ||
5221                   ( pid->es->fmt.psz_language &&
5222                     old_pid->es->fmt.psz_language &&
5223                     !strcmp( pid->es->fmt.psz_language,
5224                              old_pid->es->fmt.psz_language ) ) ) )
5225             {
5226                 pid->i_cc = old_pid->i_cc;
5227                 ts_es_t *e = pid->es;
5228                 pid->es = old_pid->es;
5229                 old_pid->es = e;
5230                 for( int i = 0; i < pid->i_extra_es; i++ )
5231                 {
5232                     e = pid->extra_es[i];
5233                     pid->extra_es[i] = old_pid->extra_es[i];
5234                     old_pid->extra_es[i] = e;
5235                 }
5236             }
5237             else
5238             {
5239                 AddAndCreateES( p_demux, pid );
5240             }
5241         }
5242
5243         /* Add ES to the list */
5244         if( old_pid )
5245         {
5246             PIDClean( p_demux, old_pid );
5247             TAB_REMOVE( i_clean, pp_clean, old_pid );
5248         }
5249         p_sys->pid[p_es->i_pid] = *pid;
5250
5251         p_dr = PMTEsFindDescriptor( p_es, 0x09 );
5252         if( p_dr && p_dr->i_length >= 2 )
5253         {
5254             msg_Dbg( p_demux, "   * PMT descriptor : CA (0x9) SysID 0x%x",
5255                      (p_dr->p_data[0] << 8) | p_dr->p_data[1] );
5256         }
5257
5258         if( ProgramIsSelected( p_demux, prg->i_number ) && pid->es->id != NULL )
5259             SetPIDFilter( p_demux, p_es->i_pid, true ); /* Set demux filter */
5260     }
5261
5262     /* Set CAM descrambling */
5263     if( !ProgramIsSelected( p_demux, prg->i_number ) )
5264     {
5265         dvbpsi_DeletePMT( p_pmt );
5266     }
5267     else if( stream_Control( p_sys->stream, STREAM_SET_PRIVATE_ID_CA,
5268                              p_pmt ) != VLC_SUCCESS )
5269     {
5270         if ( p_sys->arib.e_mode == ARIBMODE_ENABLED )
5271         {
5272             p_sys->arib.b25stream = stream_FilterNew( p_demux->s, "aribcam" );
5273             p_sys->stream = ( p_sys->arib.b25stream ) ? p_sys->arib.b25stream : p_demux->s;
5274             if (!p_sys->arib.b25stream)
5275                 dvbpsi_DeletePMT( p_pmt );
5276         } else dvbpsi_DeletePMT( p_pmt );
5277     }
5278
5279     for( int i = 0; i < i_clean; i++ )
5280     {
5281         if( ProgramIsSelected( p_demux, prg->i_number ) )
5282             SetPIDFilter( p_demux, pp_clean[i]->i_pid, false );
5283
5284         PIDClean( p_demux, pp_clean[i] );
5285     }
5286     if( i_clean )
5287         free( pp_clean );
5288 }
5289
5290 static void PATCallBack( void *data, dvbpsi_pat_t *p_pat )
5291 {
5292     demux_t              *p_demux = data;
5293     demux_sys_t          *p_sys = p_demux->p_sys;
5294     dvbpsi_pat_program_t *p_program;
5295     ts_pid_t             *pat = &p_sys->pid[0];
5296
5297     msg_Dbg( p_demux, "PATCallBack called" );
5298
5299     if( ( pat->psi->i_pat_version != -1 &&
5300             ( !p_pat->b_current_next ||
5301               p_pat->i_version == pat->psi->i_pat_version ) ) ||
5302         p_sys->b_user_pmt )
5303     {
5304         dvbpsi_DeletePAT( p_pat );
5305         return;
5306     }
5307
5308     msg_Dbg( p_demux, "new PAT ts_id=%d version=%d current_next=%d",
5309              p_pat->i_ts_id, p_pat->i_version, p_pat->b_current_next );
5310
5311     /* Clean old */
5312     if( p_sys->i_pmt > 0 )
5313     {
5314         int      i_pmt_rm = 0;
5315         ts_pid_t **pmt_rm = NULL;
5316
5317         /* Search pmt to be deleted */
5318         for( int i = 0; i < p_sys->i_pmt; i++ )
5319         {
5320             ts_pid_t *pmt = p_sys->pmt[i];
5321             bool b_keep = false;
5322
5323             for( p_program = p_pat->p_first_program; !b_keep && p_program;
5324                  p_program = p_program->p_next )
5325             {
5326                 if( p_program->i_pid != pmt->i_pid )
5327                     continue;
5328
5329                 for( int i_prg = 0; !b_keep && i_prg < pmt->psi->i_prg; i_prg++ )
5330                     if( p_program->i_number == pmt->psi->prg[i_prg]->i_number )
5331                         b_keep = true;
5332             }
5333
5334             if( b_keep )
5335                 continue;
5336
5337             TAB_APPEND( i_pmt_rm, pmt_rm, pmt );
5338         }
5339
5340         /* Delete all ES attached to thoses PMT */
5341         for( int i = 2; i < 8192; i++ )
5342         {
5343             ts_pid_t *pid = &p_sys->pid[i];
5344
5345             if( !pid->b_valid || pid->psi )
5346                 continue;
5347
5348             for( int j = 0; j < i_pmt_rm && pid->b_valid; j++ )
5349             {
5350                 for( int i_prg = 0; i_prg < pid->p_owner->i_prg; i_prg++ )
5351                 {
5352                     /* We only remove es that aren't defined by extra pmt */
5353                     if( pid->p_owner->prg[i_prg]->i_pid_pmt != pmt_rm[j]->i_pid )
5354                         continue;
5355
5356                     if( pid->es->id )
5357                         SetPIDFilter( p_demux, i, false );
5358
5359                     PIDClean( p_demux, pid );
5360                     break;
5361                 }
5362             }
5363         }
5364
5365         /* Delete PMT pid */
5366         for( int i = 0; i < i_pmt_rm; i++ )
5367         {
5368             ts_pid_t *pid = pmt_rm[i];
5369             SetPIDFilter( p_demux, pid->i_pid, false );
5370
5371             for( int i_prg = 0; i_prg < pid->psi->i_prg; i_prg++ )
5372             {
5373                 const int i_number = pid->psi->prg[i_prg]->i_number;
5374                 es_out_Control( p_demux->out, ES_OUT_DEL_GROUP, i_number );
5375             }
5376
5377             PIDClean( p_demux, &p_sys->pid[pid->i_pid] );
5378             TAB_REMOVE( p_sys->i_pmt, p_sys->pmt, pid );
5379         }
5380
5381         free( pmt_rm );
5382     }
5383
5384     /* now create programs */
5385     for( p_program = p_pat->p_first_program; p_program != NULL;
5386          p_program = p_program->p_next )
5387     {
5388         msg_Dbg( p_demux, "  * number=%d pid=%d", p_program->i_number,
5389                  p_program->i_pid );
5390         if( p_program->i_number == 0 )
5391             continue;
5392
5393         ts_pid_t *pmt = &p_sys->pid[p_program->i_pid];
5394
5395         ValidateDVBMeta( p_demux, p_program->i_pid );
5396
5397         if( pmt->b_valid )
5398         {
5399             bool b_add = true;
5400             for( int i_prg = 0; b_add && i_prg < pmt->psi->i_prg; i_prg++ )
5401                 if( pmt->psi->prg[i_prg]->i_number == p_program->i_number )
5402                     b_add = false;
5403
5404             if( !b_add )
5405                 continue;
5406         }
5407         else
5408         {
5409             TAB_APPEND( p_sys->i_pmt, p_sys->pmt, pmt );
5410         }
5411
5412         PIDInit( pmt, true, pat->psi );
5413         ts_prg_psi_t *prg = pmt->psi->prg[pmt->psi->i_prg-1];
5414 #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
5415         prg->handle = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG );
5416         if( !prg->handle )
5417         {
5418             dvbpsi_DeletePAT( p_pat );
5419             return;
5420         }
5421         prg->handle->p_sys = (void *) VLC_OBJECT(p_demux);
5422         if( !dvbpsi_pmt_attach( prg->handle, p_program->i_number, PMTCallBack, p_demux ) )
5423             msg_Err( p_demux, "PATCallback failed attaching PMTCallback to program %d",
5424                      p_program->i_number );
5425 #else
5426         prg->handle = dvbpsi_AttachPMT( p_program->i_number, PMTCallBack, p_demux );
5427 #endif
5428         prg->i_number = p_program->i_number;
5429         prg->i_pid_pmt = p_program->i_pid;
5430
5431         /* Now select PID at access level */
5432         if( ProgramIsSelected( p_demux, p_program->i_number ) )
5433         {
5434             if( p_sys->i_current_program == 0 )
5435                 p_sys->i_current_program = p_program->i_number;
5436
5437             if( SetPIDFilter( p_demux, p_program->i_pid, true ) )
5438                 p_sys->b_access_control = false;
5439         }
5440     }
5441     pat->psi->i_pat_version = p_pat->i_version;
5442
5443     dvbpsi_DeletePAT( p_pat );
5444 }