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