]> git.sesse.net Git - vlc/blob - modules/mux/mpeg/ts.c
74c58c24be2a775465a623bcf061769fc7dcdc56
[vlc] / modules / mux / mpeg / ts.c
1 /*****************************************************************************
2  * ts.c: MPEG-II TS Muxer
3  *****************************************************************************
4  * Copyright (C) 2001-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Eric Petit <titer@videolan.org>
9  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
10  *          Wallace Wadge <wwadge #_at_# gmail.com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc/vlc.h>
36 #include <vlc_sout.h>
37 #include <vlc_codecs.h>
38 #include <vlc_block.h>
39
40 #include "iso_lang.h"
41
42 #include "bits.h"
43 #include "pes.h"
44 #include "csa.h"
45
46 #ifdef HAVE_DVBPSI_DR_H
47 #   include <dvbpsi/dvbpsi.h>
48 #   include <dvbpsi/demux.h>
49 #   include <dvbpsi/descriptor.h>
50 #   include <dvbpsi/pat.h>
51 #   include <dvbpsi/pmt.h>
52 #   include <dvbpsi/sdt.h>
53 #   include <dvbpsi/dr.h>
54 #   include <dvbpsi/psi.h>
55 #else
56 #   include "dvbpsi.h"
57 #   include "demux.h"
58 #   include "descriptor.h"
59 #   include "tables/pat.h"
60 #   include "tables/pmt.h"
61 #   include "tables/sdt.h"
62 #   include "descriptors/dr.h"
63 #   include "psi.h"
64 #endif
65
66 /*
67  * TODO:
68  *  - check PCR frequency requirement
69  *  - check PAT/PMT  "        "
70  *  - check PCR/PCR "soft"
71  *  - check if "registration" descriptor : "AC-3" should be a program
72  *    descriptor or an es one. (xine want an es one)
73  *
74  *  - remove creation of PAT/PMT without dvbpsi
75  *  - ?
76  * FIXME:
77  *  - subtitle support is far from perfect. I expect some subtitles drop
78  *    if they arrive a bit late
79  *    (We cannot rely on the fact that the fifo should be full)
80  */
81 /*****************************************************************************
82  * Module descriptor
83  *****************************************************************************/
84 static int     Open   ( vlc_object_t * );
85 static void    Close  ( vlc_object_t * );
86
87 #define VPID_TEXT N_("Video PID")
88 #define VPID_LONGTEXT N_("Assign a fixed PID to the video stream. The PCR " \
89   "PID will automatically be the video.")
90 #define APID_TEXT N_("Audio PID")
91 #define APID_LONGTEXT N_("Assign a fixed PID to the audio stream.")
92 #define SPUPID_TEXT N_("SPU PID")
93 #define SPUPID_LONGTEXT N_("Assign a fixed PID to the SPU.")
94 #define PMTPID_TEXT N_("PMT PID")
95 #define PMTPID_LONGTEXT N_("Assign a fixed PID to the PMT")
96 #define TSID_TEXT N_("TS ID")
97 #define TSID_LONGTEXT N_("Assign a fixed Transport Stream ID.")
98 #define NETID_TEXT N_("NET ID")
99 #define NETID_LONGTEXT N_("Assign a fixed Network ID (for SDT table)")
100
101 #define PMTPROG_TEXT N_("PMT Program numbers")
102 #define PMTPROG_LONGTEXT N_("Assign a program number to each PMT. This " \
103                             "requires \"Set PID to ID of ES\" to be enabled." )
104
105 #define MUXPMT_TEXT N_("Mux PMT (requires --sout-ts-es-id-pid)")
106 #define MUXPMT_LONGTEXT N_("Define the pids to add to each pmt. This " \
107                            "requires \"Set PID to ID of ES\" to be enabled." )
108
109 #define SDTDESC_TEXT N_("SDT Descriptors (requires --sout-ts-es-id-pid)")
110 #define SDTDESC_LONGTEXT N_("Defines the descriptors of each SDT. This" \
111                         "requires \"Set PID to ID of ES\" to be enabled." )
112
113 #define PID_TEXT N_("Set PID to ID of ES")
114 #define PID_LONGTEXT N_("Sets PID to the ID if the incoming ES. This is for " \
115   "use with --ts-es-id-pid, and allows to have the same PIDs in the input " \
116   "and output streams.")
117
118 #define ALIGNMENT_TEXT N_("Data alignment")
119 #define ALIGNMENT_LONGTEXT N_("Enforces alignment of all access units on " \
120   "PES boundaries. Disabling this might save some bandwidth but introduce incompatibilities.")
121
122 #define SHAPING_TEXT N_("Shaping delay (ms)")
123 #define SHAPING_LONGTEXT N_("Cut the " \
124   "stream in slices of the given duration, and ensure a constant bitrate " \
125   "between the two boundaries. This avoids having huge bitrate peaks, " \
126   "especially for reference frames." )
127
128 #define KEYF_TEXT N_("Use keyframes")
129 #define KEYF_LONGTEXT N_("If enabled, and shaping is specified, " \
130   "the TS muxer will place the boundaries at the end of I pictures. In " \
131   "that case, the shaping duration given by the user is a worse case " \
132   "used when no reference frame is available. This enhances the efficiency " \
133   "of the shaping algorithm, since I frames are usually the biggest " \
134   "frames in the stream.")
135
136 #define PCR_TEXT N_("PCR delay (ms)")
137 #define PCR_LONGTEXT N_("Set at which interval " \
138   "PCRs (Program Clock Reference) will be sent (in milliseconds). " \
139   "This value should be below 100ms. (default is 70ms).")
140
141 #define BMIN_TEXT N_( "Minimum B (deprecated)")
142 #define BMIN_LONGTEXT N_( "This setting is deprecated and not used anymore" )
143
144 #define BMAX_TEXT N_( "Maximum B (deprecated)")
145 #define BMAX_LONGTEXT N_( "This setting is deprecated and not used anymore")
146
147 #define DTS_TEXT N_("DTS delay (ms)")
148 #define DTS_LONGTEXT N_("Delay the DTS (decoding time " \
149   "stamps) and PTS (presentation timestamps) of the data in the " \
150   "stream, compared to the PCRs. This allows for some buffering inside " \
151   "the client decoder.")
152
153 #define ACRYPT_TEXT N_("Crypt audio")
154 #define ACRYPT_LONGTEXT N_("Crypt audio using CSA")
155 #define VCRYPT_TEXT N_("Crypt video")
156 #define VCRYPT_LONGTEXT N_("Crypt video using CSA")
157
158 #define CK_TEXT N_("CSA Key")
159 #define CK_LONGTEXT N_("CSA encryption key. This must be a " \
160   "16 char string (8 hexadecimal bytes).")
161
162 #define CPKT_TEXT N_("Packet size in bytes to encrypt")
163 #define CPKT_LONGTEXT N_("Size of the TS packet to encrypt. " \
164     "The encryption routines subtract the TS-header from the value before " \
165     "encrypting." )
166
167 #define SOUT_CFG_PREFIX "sout-ts-"
168 #ifdef HAVE_BSEARCH
169 #   define MAX_PMT 64       /* Maximum number of programs. FIXME: I just chose an arbitary number. Where is the maximum in the spec? */
170 #else
171 #   define MAX_PMT 1
172 #endif
173 #define MAX_PMT_PID 64       /* Maximum pids in each pmt.  FIXME: I just chose an arbitary number. Where is the maximum in the spec? */
174
175 vlc_module_begin();
176     set_description( _("TS muxer (libdvbpsi)") );
177     set_shortname( "MPEG-TS");
178     set_category( CAT_SOUT );
179     set_subcategory( SUBCAT_SOUT_MUX );
180     set_capability( "sout mux", 120 );
181     add_shortcut( "ts" );
182
183     add_integer( SOUT_CFG_PREFIX "pid-video", 0, NULL,VPID_TEXT, VPID_LONGTEXT,
184                                   VLC_TRUE );
185     add_integer( SOUT_CFG_PREFIX "pid-audio", 0, NULL, APID_TEXT,
186                  APID_LONGTEXT, VLC_TRUE );
187     add_integer( SOUT_CFG_PREFIX "pid-spu", 0, NULL, SPUPID_TEXT,
188                  SPUPID_LONGTEXT, VLC_TRUE );
189     add_integer( SOUT_CFG_PREFIX "pid-pmt", 0, NULL, PMTPID_TEXT,
190                  PMTPID_LONGTEXT, VLC_TRUE );
191     add_integer( SOUT_CFG_PREFIX "tsid", 0, NULL, TSID_TEXT,
192                  TSID_LONGTEXT, VLC_TRUE );
193 #ifdef HAVE_DVBPSI_SDT
194     add_integer( SOUT_CFG_PREFIX "netid", 0, NULL, NETID_TEXT,
195                  NETID_LONGTEXT, VLC_TRUE );
196 #endif
197     add_string( SOUT_CFG_PREFIX "program-pmt", NULL, NULL, PMTPROG_TEXT,
198                 PMTPROG_LONGTEXT, VLC_TRUE );
199     add_bool( SOUT_CFG_PREFIX "es-id-pid", 0, NULL, PID_TEXT, PID_LONGTEXT,
200               VLC_TRUE );
201     add_string( SOUT_CFG_PREFIX "muxpmt", NULL, NULL, MUXPMT_TEXT, MUXPMT_LONGTEXT, VLC_TRUE );
202 #ifdef HAVE_DVBPSI_SDT
203     add_string( SOUT_CFG_PREFIX "sdtdesc", NULL, NULL, SDTDESC_TEXT, SDTDESC_LONGTEXT, VLC_TRUE );
204 #endif
205     add_bool( SOUT_CFG_PREFIX "alignment", VLC_TRUE, NULL, ALIGNMENT_TEXT,
206               ALIGNMENT_LONGTEXT, VLC_TRUE );
207
208     add_integer( SOUT_CFG_PREFIX "shaping", 200, NULL,SHAPING_TEXT,
209                  SHAPING_LONGTEXT, VLC_TRUE );
210     add_bool( SOUT_CFG_PREFIX "use-key-frames", VLC_FALSE, NULL, KEYF_TEXT,
211               KEYF_LONGTEXT, VLC_TRUE );
212
213     add_integer( SOUT_CFG_PREFIX "pcr", 70, NULL, PCR_TEXT, PCR_LONGTEXT,
214                  VLC_TRUE );
215     add_integer( SOUT_CFG_PREFIX "bmin", 0, NULL, BMIN_TEXT, BMIN_LONGTEXT,
216                  VLC_TRUE );
217     add_integer( SOUT_CFG_PREFIX "bmax", 0, NULL, BMAX_TEXT, BMAX_LONGTEXT,
218                  VLC_TRUE );
219     add_integer( SOUT_CFG_PREFIX "dts-delay", 400, NULL, DTS_TEXT,
220                  DTS_LONGTEXT, VLC_TRUE );
221
222     add_bool( SOUT_CFG_PREFIX "crypt-audio", VLC_TRUE, NULL, ACRYPT_TEXT,
223               ACRYPT_LONGTEXT, VLC_TRUE );
224     add_bool( SOUT_CFG_PREFIX "crypt-video", VLC_TRUE, NULL, VCRYPT_TEXT,
225               VCRYPT_LONGTEXT, VLC_TRUE );
226
227     add_string( SOUT_CFG_PREFIX "csa-ck", NULL, NULL, CK_TEXT, CK_LONGTEXT,
228                 VLC_TRUE );
229     add_integer( SOUT_CFG_PREFIX "csa-pkt", 188, NULL, CPKT_TEXT, CPKT_LONGTEXT, VLC_TRUE );
230
231     set_callbacks( Open, Close );
232 vlc_module_end();
233
234 /*****************************************************************************
235  * Local data structures
236  *****************************************************************************/
237 static const char *ppsz_sout_options[] = {
238     "pid-video", "pid-audio", "pid-spu", "pid-pmt", "tsid", "netid",
239     "es-id-pid", "shaping", "pcr", "bmin", "bmax", "use-key-frames",
240     "dts-delay", "csa-ck", "csa-pkt", "crypt-audio", "crypt-video",
241     "muxpmt", "sdtdesc", "program-pmt", "alignment",
242     NULL
243 };
244
245 typedef struct pmt_map_t   /* Holds the mapping between the pmt-pid/pmt table */
246 {
247     int i_pid;
248     unsigned long i_prog;
249 } pmt_map_t;
250
251 typedef struct sdt_desc_t
252 {
253     char *psz_provider;
254     char *psz_service_name;  /* name of program */
255 } sdt_desc_t;
256
257 typedef struct
258 {
259     int     i_depth;
260     block_t *p_first;
261     block_t **pp_last;
262 } sout_buffer_chain_t;
263
264 static inline void BufferChainInit  ( sout_buffer_chain_t *c )
265 {
266     c->i_depth = 0;
267     c->p_first = NULL;
268     c->pp_last = &c->p_first;
269 }
270
271 static inline void BufferChainAppend( sout_buffer_chain_t *c, block_t *b )
272 {
273     *c->pp_last = b;
274     c->i_depth++;
275
276     while( b->p_next )
277     {
278         b = b->p_next;
279         c->i_depth++;
280     }
281     c->pp_last = &b->p_next;
282 }
283
284 static inline block_t *BufferChainGet( sout_buffer_chain_t *c )
285 {
286     block_t *b = c->p_first;
287
288     if( b )
289     {
290         c->i_depth--;
291         c->p_first = b->p_next;
292
293         if( c->p_first == NULL )
294         {
295             c->pp_last = &c->p_first;
296         }
297
298         b->p_next = NULL;
299     }
300     return b;
301 }
302
303 static inline block_t *BufferChainPeek( sout_buffer_chain_t *c )
304 {
305     block_t *b = c->p_first;
306
307     return b;
308 }
309
310 static inline void BufferChainClean( sout_buffer_chain_t *c )
311 {
312     block_t *b;
313
314     while( ( b = BufferChainGet( c ) ) )
315     {
316         block_Release( b );
317     }
318     BufferChainInit( c );
319 }
320
321 typedef struct ts_stream_t
322 {
323     int             i_pid;
324     vlc_fourcc_t    i_codec;
325
326     int             i_stream_type;
327     int             i_stream_id;
328     int             i_continuity_counter;
329     vlc_bool_t      b_discontinuity;
330
331     /* to be used for carriege of DIV3 */
332     vlc_fourcc_t    i_bih_codec;
333     int             i_bih_width, i_bih_height;
334
335     /* Specific to mpeg4 in mpeg2ts */
336     int             i_es_id;
337
338     int             i_decoder_specific_info;
339     uint8_t         *p_decoder_specific_info;
340
341     /* language is iso639-2T */
342     int             i_langs;
343     uint8_t         *lang;
344
345     sout_buffer_chain_t chain_pes;
346     mtime_t             i_pes_dts;
347     mtime_t             i_pes_length;
348     int                 i_pes_used;
349     vlc_bool_t          b_key_frame;
350
351 } ts_stream_t;
352
353 struct sout_mux_sys_t
354 {
355     int             i_pcr_pid;
356     sout_input_t    *p_pcr_input;
357
358     int             i_audio_bound;
359     int             i_video_bound;
360
361     vlc_bool_t      b_es_id_pid;
362     vlc_bool_t      b_sdt;
363     int             i_pid_video;
364     int             i_pid_audio;
365     int             i_pid_spu;
366     int             i_pid_free; /* first usable pid */
367
368     int             i_tsid;
369     int             i_netid;
370     int             i_num_pmt;
371     int             i_pmtslots;
372     int             i_pat_version_number;
373     ts_stream_t     pat;
374
375     int             i_pmt_version_number;
376     ts_stream_t     pmt[MAX_PMT];
377     pmt_map_t       pmtmap[MAX_PMT_PID];
378     int             i_pmt_program_number[MAX_PMT];
379     sdt_desc_t      sdt_descriptors[MAX_PMT];
380     vlc_bool_t      b_data_alignment;
381
382     int             i_mpeg4_streams;
383
384     int             i_null_continuity_counter;  /* Needed ? */
385     ts_stream_t     sdt;
386     dvbpsi_pmt_t    *dvbpmt;
387
388     /* for TS building */
389     int64_t             i_bitrate_min;
390     int64_t             i_bitrate_max;
391
392     int64_t             i_shaping_delay;
393     int64_t             i_pcr_delay;
394
395     int64_t             i_dts_delay;
396
397     vlc_bool_t          b_use_key_frames;
398
399     mtime_t             i_pcr;  /* last PCR emited */
400
401     csa_t               *csa;
402     int                 i_csa_pkt_size;
403     vlc_bool_t          b_crypt_audio;
404     vlc_bool_t          b_crypt_video;
405 };
406
407 /* Reserve a pid and return it */
408 static int  AllocatePID( sout_mux_sys_t *p_sys, int i_cat )
409 {
410     int i_pid;
411     if ( i_cat == VIDEO_ES && p_sys->i_pid_video )
412     {
413         i_pid = p_sys->i_pid_video;
414         p_sys->i_pid_video = 0;
415     }
416     else if ( i_cat == AUDIO_ES && p_sys->i_pid_audio )
417     {
418         i_pid = p_sys->i_pid_audio;
419         p_sys->i_pid_audio = 0;
420     }
421     else if ( i_cat == SPU_ES && p_sys->i_pid_spu )
422     {
423         i_pid = p_sys->i_pid_spu;
424         p_sys->i_pid_spu = 0;
425     }
426     else
427     {
428         i_pid = ++p_sys->i_pid_free;
429     }
430     return i_pid;
431 }
432
433 static int pmtcompare( const void *pa, const void *pb )
434 {
435     if ( ((pmt_map_t *)pa)->i_pid  < ((pmt_map_t *)pb)->i_pid )
436         return -1;
437     else if ( ((pmt_map_t *)pa)->i_pid  > ((pmt_map_t *)pb)->i_pid )
438         return 1;
439     else
440         return 0;
441 }
442
443 static int intcompare( const void *pa, const void *pb )
444 {
445     if ( *(int *)pa  < *(int *)pb )
446         return -1;
447     else if ( *(int *)pa > *(int *)pb )
448         return 1;
449     else
450         return 0;
451 }
452
453 /*****************************************************************************
454  * Local prototypes
455  *****************************************************************************/
456 static int Control  ( sout_mux_t *, int, va_list );
457 static int AddStream( sout_mux_t *, sout_input_t * );
458 static int DelStream( sout_mux_t *, sout_input_t * );
459 static int Mux      ( sout_mux_t * );
460
461 static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo );
462 static void TSSchedule  ( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
463                           mtime_t i_pcr_length, mtime_t i_pcr_dts );
464 static void TSDate      ( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
465                           mtime_t i_pcr_length, mtime_t i_pcr_dts );
466 static void GetPAT( sout_mux_t *p_mux, sout_buffer_chain_t *c );
467 static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c );
468
469 static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream, vlc_bool_t b_pcr );
470 static void TSSetPCR( block_t *p_ts, mtime_t i_dts );
471
472 static void PEStoTS  ( sout_instance_t *, sout_buffer_chain_t *, block_t *, ts_stream_t * );
473
474 /*****************************************************************************
475  * Open:
476  *****************************************************************************/
477 static int Open( vlc_object_t *p_this )
478 {
479     sout_mux_t          *p_mux =(sout_mux_t*)p_this;
480     sout_mux_sys_t      *p_sys = NULL;
481     vlc_value_t         val;
482     int i;
483
484     config_ChainParse( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg );
485
486     p_sys = malloc( sizeof( sout_mux_sys_t ) );
487     if( !p_sys )
488         return VLC_ENOMEM;
489     p_sys->i_pmtslots = p_sys->b_sdt = 0;
490     p_sys->i_num_pmt = 1;
491     p_sys->dvbpmt = NULL;
492     memset( &p_sys->pmtmap, 0, sizeof(p_sys->pmtmap) );
493
494     p_mux->pf_control   = Control;
495     p_mux->pf_addstream = AddStream;
496     p_mux->pf_delstream = DelStream;
497     p_mux->pf_mux       = Mux;
498     p_mux->p_sys        = p_sys;
499
500     srand( (uint32_t)mdate() );
501     for ( i = 0; i < MAX_PMT; i++ )
502         p_sys->sdt_descriptors[i].psz_service_name
503             = p_sys->sdt_descriptors[i].psz_provider = NULL;
504     memset( p_sys->sdt_descriptors, 0, sizeof(sdt_desc_t) );
505
506     p_sys->i_audio_bound = 0;
507     p_sys->i_video_bound = 0;
508
509     var_Get( p_mux, SOUT_CFG_PREFIX "es-id-pid", &val );
510     p_sys->b_es_id_pid = val.b_bool;
511
512     var_Get( p_mux, SOUT_CFG_PREFIX "muxpmt", &val );
513     /*
514        fetch string of pmts. Here's a sample: --sout-ts-muxpmt="0x451,0x200,0x28a,0x240,,0x450,0x201,0x28b,0x241,,0x452,0x202,0x28c,0x242"
515        This would mean 0x451, 0x200, 0x28a, 0x240 would fall under one pmt (program), 0x450,0x201,0x28b,0x241 would fall under another
516     */
517     if( val.psz_string != NULL && *val.psz_string )
518     {
519         char *psz_next;
520         char *psz = val.psz_string;
521         uint16_t i_pid;
522         psz_next = psz;
523
524         while( psz != NULL )
525         {
526             i_pid = strtoul( psz, &psz_next, 0 );
527
528             if ( strlen(psz_next) > 0 )
529                 psz = &psz_next[1];
530             if ( i_pid == 0 )
531             {
532                 p_sys->i_num_pmt++;
533                 if ( p_sys->i_num_pmt > MAX_PMT )
534                 {
535                     msg_Err( p_mux,
536              "Number of PMTs greater than compiled maximum (%d)", MAX_PMT );
537                     p_sys->i_num_pmt = MAX_PMT;
538                 }
539             }
540             else
541             {
542                 p_sys->pmtmap[p_sys->i_pmtslots].i_pid = i_pid;
543                 p_sys->pmtmap[p_sys->i_pmtslots].i_prog = p_sys->i_num_pmt - 1;
544                 p_sys->i_pmtslots++;
545                 if ( p_sys->i_pmtslots > MAX_PMT_PID )
546                 {
547                     msg_Err( p_mux,
548              "Number of pids in PMT greater than compiled maximum (%d)",
549                              MAX_PMT_PID );
550                     p_sys->i_pmtslots = MAX_PMT_PID;
551                 }
552             }
553
554             /* Now sort according to pids for fast search later on */
555             qsort( (void *)p_sys->pmtmap, p_sys->i_pmtslots,
556                    sizeof(pmt_map_t), &pmtcompare );
557             if ( !*psz_next )
558                 psz = NULL;
559         }
560     }
561     if( val.psz_string != NULL) free( val.psz_string );
562
563     p_sys->i_pat_version_number = rand() % 32;
564     p_sys->pat.i_pid = 0;
565     p_sys->pat.i_continuity_counter = 0;
566     p_sys->pat.b_discontinuity = VLC_FALSE;
567
568     var_Get( p_mux, SOUT_CFG_PREFIX "tsid", &val );
569     if ( val.i_int )
570         p_sys->i_tsid = val.i_int;
571     else
572         p_sys->i_tsid = rand() % 65536;
573
574     p_sys->i_netid = rand() % 65536;
575 #ifdef HAVE_DVBPSI_SDT
576     var_Get( p_mux, SOUT_CFG_PREFIX "netid", &val );
577     if ( val.i_int )
578         p_sys->i_netid = val.i_int;
579 #endif
580
581     p_sys->i_pmt_version_number = rand() % 32;
582     for( i = 0; i < p_sys->i_num_pmt; i++ )
583     {
584         p_sys->pmt[i].i_continuity_counter = 0;
585         p_sys->pmt[i].b_discontinuity = VLC_FALSE;
586     }
587
588     p_sys->sdt.i_pid = 0x11;
589     p_sys->sdt.i_continuity_counter = 0;
590     p_sys->sdt.b_discontinuity = VLC_FALSE;
591
592 #ifdef HAVE_DVBPSI_SDT
593     var_Get( p_mux, SOUT_CFG_PREFIX "sdtdesc", &val );
594     p_sys->b_sdt = val.psz_string && *val.psz_string ? VLC_TRUE : VLC_FALSE;
595
596     /* Syntax is provider_sdt1,service_name_sdt1,provider_sdt2,service_name_sdt2... */
597     if( p_sys->b_sdt )
598     {
599
600         char *psz = val.psz_string;
601         char *psz_sdttoken = psz;
602
603         i = 0;
604         while ( psz_sdttoken != NULL )
605         {
606             char *psz_end = strchr( psz_sdttoken, ',' );
607             if( psz_end != NULL )
608             {
609                 *psz_end++ = '\0';
610             }
611             if ( !(i % 2) )
612             {
613                 p_sys->sdt_descriptors[i/2].psz_provider
614                     = strdup(psz_sdttoken);
615             }
616             else
617             {
618                 p_sys->sdt_descriptors[i/2].psz_service_name
619                     = strdup(psz_sdttoken);
620             }
621
622             i++;
623             psz_sdttoken = psz_end;
624         }
625     }
626     if( val.psz_string != NULL ) free( val.psz_string );
627 #else
628     p_sys->b_sdt = VLC_FALSE;
629 #endif
630
631     var_Get( p_mux, SOUT_CFG_PREFIX "alignment", &val );
632     p_sys->b_data_alignment = val.b_bool;
633
634     var_Get( p_mux, SOUT_CFG_PREFIX "program-pmt", &val );
635     if( val.psz_string && *val.psz_string )
636     {
637         char *psz_next;
638         char *psz = val.psz_string;
639         uint16_t i_pid;
640
641         psz_next = psz;
642         i = 0;
643         while ( psz != NULL )
644         {
645             i_pid = strtoul( psz, &psz_next, 0 );
646             if( strlen(psz_next) > 0 )
647                 psz = &psz_next[1];
648             else
649                 psz = NULL;
650
651             if( i_pid == 0 )
652             {
653                 if( i > MAX_PMT )
654                     msg_Err( p_mux, "Number of PMTs > maximum (%d)",
655                              MAX_PMT );
656             }
657             else
658             {
659                 p_sys->i_pmt_program_number[i] = i_pid;
660                 i++;
661             }
662         }
663     }
664     else
665     {
666         /* Option not specified, use 1, 2, 3... */
667         for( i = 0; i < p_sys->i_num_pmt; i++ )
668             p_sys->i_pmt_program_number[i] = i + 1;
669     }
670     if( val.psz_string != NULL ) free( val.psz_string );
671
672     var_Get( p_mux, SOUT_CFG_PREFIX "pid-pmt", &val );
673     if( val.i_int )
674     {
675         for( i = 0; i < p_sys->i_num_pmt; i++ )
676             p_sys->pmt[i].i_pid = val.i_int + i; /* Does this make any sense? */
677     }
678     else
679     {
680         for( i = 0; i < p_sys->i_num_pmt; i++ )
681             p_sys->pmt[i].i_pid = 0x42 + i;
682     }
683
684     p_sys->i_pid_free = p_sys->pmt[p_sys->i_num_pmt - 1].i_pid + 1;
685
686     var_Get( p_mux, SOUT_CFG_PREFIX "pid-video", &val );
687     p_sys->i_pid_video = val.i_int;
688     if ( p_sys->i_pid_video > p_sys->i_pid_free )
689     {
690         p_sys->i_pid_free = p_sys->i_pid_video + 1;
691     }
692
693     var_Get( p_mux, SOUT_CFG_PREFIX "pid-audio", &val );
694     p_sys->i_pid_audio = val.i_int;
695     if ( p_sys->i_pid_audio > p_sys->i_pid_free )
696     {
697         p_sys->i_pid_free = p_sys->i_pid_audio + 1;
698     }
699
700     var_Get( p_mux, SOUT_CFG_PREFIX "pid-spu", &val );
701     p_sys->i_pid_spu = val.i_int;
702     if ( p_sys->i_pid_spu > p_sys->i_pid_free )
703     {
704         p_sys->i_pid_free = p_sys->i_pid_spu + 1;
705     }
706
707     p_sys->i_pcr_pid = 0x1fff;
708     p_sys->p_pcr_input = NULL;
709
710     p_sys->i_mpeg4_streams = 0;
711
712     p_sys->i_null_continuity_counter = 0;
713
714     /* Allow to create constrained stream */
715     var_Get( p_mux, SOUT_CFG_PREFIX "bmin", &val );
716     p_sys->i_bitrate_min = val.i_int;
717
718     var_Get( p_mux, SOUT_CFG_PREFIX "bmax", &val );
719     p_sys->i_bitrate_max = val.i_int;
720
721     if( p_sys->i_bitrate_min > 0 && p_sys->i_bitrate_max > 0 &&
722         p_sys->i_bitrate_min > p_sys->i_bitrate_max )
723     {
724         msg_Err( p_mux, "incompatible minimum and maximum bitrate, "
725                  "disabling bitrate control" );
726         p_sys->i_bitrate_min = 0;
727         p_sys->i_bitrate_max = 0;
728     }
729     if( p_sys->i_bitrate_min > 0 || p_sys->i_bitrate_max > 0 )
730     {
731         msg_Err( p_mux, "bmin and bmax no more supported "
732                  "(if you need them report it)" );
733     }
734
735     var_Get( p_mux, SOUT_CFG_PREFIX "shaping", &val );
736     p_sys->i_shaping_delay = (int64_t)val.i_int * 1000;
737     if( p_sys->i_shaping_delay <= 0 )
738     {
739         msg_Err( p_mux,
740                  "invalid shaping ("I64Fd"ms) resetting to 200ms",
741                  p_sys->i_shaping_delay / 1000 );
742         p_sys->i_shaping_delay = 200000;
743     }
744
745     var_Get( p_mux, SOUT_CFG_PREFIX "pcr", &val );
746     p_sys->i_pcr_delay = (int64_t)val.i_int * 1000;
747     if( p_sys->i_pcr_delay <= 0 ||
748         p_sys->i_pcr_delay >= p_sys->i_shaping_delay )
749     {
750         msg_Err( p_mux,
751                  "invalid pcr delay ("I64Fd"ms) resetting to 70ms",
752                  p_sys->i_pcr_delay / 1000 );
753         p_sys->i_pcr_delay = 70000;
754     }
755
756     var_Get( p_mux, SOUT_CFG_PREFIX "dts-delay", &val );
757     p_sys->i_dts_delay = (int64_t)val.i_int * 1000;
758
759     msg_Dbg( p_mux, "shaping="I64Fd" pcr="I64Fd" dts_delay="I64Fd,
760              p_sys->i_shaping_delay, p_sys->i_pcr_delay, p_sys->i_dts_delay );
761
762     var_Get( p_mux, SOUT_CFG_PREFIX "use-key-frames", &val );
763     p_sys->b_use_key_frames = val.b_bool;
764
765     /* for TS generation */
766     p_sys->i_pcr    = 0;
767
768     p_sys->csa      = NULL;
769     var_Get( p_mux, SOUT_CFG_PREFIX "csa-ck", &val );
770     if( val.psz_string && *val.psz_string )
771     {
772         char *psz = val.psz_string;
773
774         /* skip 0x */
775         if( psz[0] == '0' && ( psz[1] == 'x' || psz[1] == 'X' ) )
776         {
777             psz += 2;
778         }
779         if( strlen( psz ) != 16 )
780         {
781             msg_Dbg( p_mux, "invalid csa ck (it must be 16 chars long)" );
782         }
783         else
784         {
785             uint64_t i_ck = strtoull( psz, NULL, 16 );
786             uint8_t  ck[8];
787             int      i;
788
789             for( i = 0; i < 8; i++ )
790             {
791                 ck[i] = ( i_ck >> ( 56 - 8*i) )&0xff;
792             }
793 #ifndef TS_NO_CSA_CK_MSG
794             msg_Dbg( p_mux, "using CSA scrambling with ck=%x:%x:%x:%x:%x:%x:%x:%x",
795                      ck[0], ck[1], ck[2], ck[3], ck[4], ck[5], ck[6], ck[7] );
796 #endif
797             p_sys->csa = csa_New();
798             if( p_sys->csa )
799             {
800                 vlc_value_t pkt_val;
801
802                 csa_SetCW( p_sys->csa, ck, ck );
803
804                 var_Get( p_mux, SOUT_CFG_PREFIX "csa-pkt", &pkt_val );
805                 if( pkt_val.i_int < 12 || pkt_val.i_int > 188 )
806                 {
807                     msg_Err( p_mux, "wrong packet size %d specified.", pkt_val.i_int );
808                     msg_Warn( p_mux, "using default packet size of 188 bytes" );
809                     p_sys->i_csa_pkt_size = 188;
810                 }
811                 else p_sys->i_csa_pkt_size = pkt_val.i_int;
812                 msg_Dbg( p_mux, "encrypting %d bytes of packet", p_sys->i_csa_pkt_size );
813             }
814         }
815     }
816     if( val.psz_string ) free( val.psz_string );
817
818     var_Get( p_mux, SOUT_CFG_PREFIX "crypt-audio", &val );
819     p_sys->b_crypt_audio = val.b_bool;
820
821     var_Get( p_mux, SOUT_CFG_PREFIX "crypt-video", &val );
822     p_sys->b_crypt_video = val.b_bool;
823
824     return VLC_SUCCESS;
825 }
826
827 /*****************************************************************************
828  * Close:
829  *****************************************************************************/
830 static void Close( vlc_object_t * p_this )
831 {
832     sout_mux_t          *p_mux = (sout_mux_t*)p_this;
833     sout_mux_sys_t      *p_sys = p_mux->p_sys;
834     int i;
835
836     if( p_sys->csa )
837     {
838         csa_Delete( p_sys->csa );
839     }
840     for( i = 0; i < MAX_PMT; i++ )
841     {
842         if( p_sys->sdt_descriptors[i].psz_service_name != NULL )
843             free( p_sys->sdt_descriptors[i].psz_service_name );
844         if( p_sys->sdt_descriptors[i].psz_provider != NULL )
845             free( p_sys->sdt_descriptors[i].psz_provider );
846     }
847
848     if( p_sys->dvbpmt != NULL )  /* safety */
849         free ( p_sys->dvbpmt );
850
851     free( p_sys );
852 }
853
854 /*****************************************************************************
855  * Control:
856  *****************************************************************************/
857 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
858 {
859     VLC_UNUSED(p_mux);
860     vlc_bool_t *pb_bool;
861     char **ppsz;
862
863     switch( i_query )
864     {
865         case MUX_CAN_ADD_STREAM_WHILE_MUXING:
866             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
867             *pb_bool = VLC_TRUE;
868             return VLC_SUCCESS;
869
870         case MUX_GET_ADD_STREAM_WAIT:
871             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
872             *pb_bool = VLC_FALSE;
873             return VLC_SUCCESS;
874
875         case MUX_GET_MIME:
876             ppsz = (char**)va_arg( args, char ** );
877             *ppsz = strdup( "video/mpeg" );  /* FIXME not sure */
878             return VLC_SUCCESS;
879
880         default:
881             return VLC_EGENERIC;
882     }
883 }
884
885 /*****************************************************************************
886  * AddStream: called for each stream addition
887  *****************************************************************************/
888 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
889 {
890     sout_mux_sys_t      *p_sys = p_mux->p_sys;
891     ts_stream_t         *p_stream;
892     int                  i;
893
894     p_input->p_sys = p_stream = malloc( sizeof( ts_stream_t ) );
895
896     /* Init this new stream */
897     if ( p_sys->b_es_id_pid )
898         p_stream->i_pid = p_input->p_fmt->i_id & 0x1fff;
899     else
900         p_stream->i_pid = AllocatePID( p_sys, p_input->p_fmt->i_cat );
901     p_stream->i_codec = p_input->p_fmt->i_codec;
902     p_stream->i_continuity_counter    = 0;
903     p_stream->b_discontinuity         = VLC_FALSE;
904     p_stream->i_decoder_specific_info = 0;
905     p_stream->p_decoder_specific_info = NULL;
906
907     msg_Dbg( p_mux, "adding input codec=%4.4s pid=%d",
908              (char*)&p_input->p_fmt->i_codec, p_stream->i_pid );
909
910     /* All others fields depand on codec */
911     switch( p_input->p_fmt->i_cat )
912     {
913         case VIDEO_ES:
914             switch( p_input->p_fmt->i_codec )
915             {
916                 case VLC_FOURCC( 'm', 'p','g', 'v' ):
917                     /* TODO: do we need to check MPEG-I/II ? */
918                     p_stream->i_stream_type = 0x02;
919                     p_stream->i_stream_id = 0xe0;
920                     break;
921                 case VLC_FOURCC( 'm', 'p','4', 'v' ):
922                     p_stream->i_stream_type = 0x10;
923                     p_stream->i_stream_id = 0xe0;
924                     p_stream->i_es_id = p_stream->i_pid;
925                     break;
926                 case VLC_FOURCC( 'h', '2','6', '4' ):
927                     p_stream->i_stream_type = 0x1b;
928                     p_stream->i_stream_id = 0xe0;
929                     break;
930                 /* XXX dirty dirty but somebody want that:
931                  *     using crapy MS-codec XXX */
932                 /* I didn't want to do that :P */
933                 case VLC_FOURCC( 'H', '2', '6', '3' ):
934                 case VLC_FOURCC( 'I', '2', '6', '3' ):
935                 case VLC_FOURCC( 'W', 'M', 'V', '3' ):
936                 case VLC_FOURCC( 'W', 'M', 'V', '2' ):
937                 case VLC_FOURCC( 'W', 'M', 'V', '1' ):
938                 case VLC_FOURCC( 'D', 'I', 'V', '3' ):
939                 case VLC_FOURCC( 'D', 'I', 'V', '2' ):
940                 case VLC_FOURCC( 'D', 'I', 'V', '1' ):
941                 case VLC_FOURCC( 'M', 'J', 'P', 'G' ):
942                     p_stream->i_stream_type = 0xa0; /* private */
943                     p_stream->i_stream_id = 0xa0;   /* beurk */
944                     p_stream->i_bih_codec  = p_input->p_fmt->i_codec;
945                     p_stream->i_bih_width  = p_input->p_fmt->video.i_width;
946                     p_stream->i_bih_height = p_input->p_fmt->video.i_height;
947                     break;
948                 default:
949                     free( p_stream );
950                     return VLC_EGENERIC;
951             }
952             p_sys->i_video_bound++;
953             break;
954
955         case AUDIO_ES:
956             switch( p_input->p_fmt->i_codec )
957             {
958                 case VLC_FOURCC( 'm', 'p','g', 'a' ):
959                     p_stream->i_stream_type =
960                         p_input->p_fmt->audio.i_rate >= 32000 ? 0x03 : 0x04;
961                     p_stream->i_stream_id = 0xc0;
962                     break;
963                 case VLC_FOURCC( 'a', '5','2', ' ' ):
964                     p_stream->i_stream_type = 0x81;
965                     p_stream->i_stream_id = 0xbd;
966                     break;
967                 case VLC_FOURCC( 'l', 'p','c', 'm' ):
968                     p_stream->i_stream_type = 0x83;
969                     p_stream->i_stream_id = 0xbd;
970                     break;
971                 case VLC_FOURCC( 'd', 't','s', ' ' ):
972                     p_stream->i_stream_type = 0x06;
973                     p_stream->i_stream_id = 0xbd;
974                     break;
975                 case VLC_FOURCC( 'm', 'p','4', 'a' ):
976                     p_stream->i_stream_type = 0x11;
977                     p_stream->i_stream_id = 0xfa;
978                     p_sys->i_mpeg4_streams++;
979                     p_stream->i_es_id = p_stream->i_pid;
980                     break;
981                 default:
982                     free( p_stream );
983                     return VLC_EGENERIC;
984             }
985             p_sys->i_audio_bound++;
986             break;
987
988         case SPU_ES:
989             switch( p_input->p_fmt->i_codec )
990             {
991                 case VLC_FOURCC( 's', 'p','u', ' ' ):
992                     p_stream->i_stream_type = 0x82;
993                     p_stream->i_stream_id = 0xbd;
994                     break;
995                 case VLC_FOURCC( 's', 'u','b', 't' ):
996                     p_stream->i_stream_type = 0x12;
997                     p_stream->i_stream_id = 0xfa;
998                     p_sys->i_mpeg4_streams++;
999                     p_stream->i_es_id = p_stream->i_pid;
1000                     break;
1001                 case VLC_FOURCC('d','v','b','s'):
1002                     p_stream->i_stream_type = 0x06;
1003                     p_stream->i_es_id = p_input->p_fmt->subs.dvb.i_id;
1004                     p_stream->i_stream_id = 0xbd;
1005                     break;
1006                 case VLC_FOURCC('t','e','l','x'):
1007                     p_stream->i_stream_type = 0x06;
1008                     p_stream->i_stream_id = 0xbd; /* FIXME */
1009                     break;
1010                 default:
1011                     free( p_stream );
1012                     return VLC_EGENERIC;
1013             }
1014             break;
1015
1016         default:
1017             free( p_stream );
1018             return VLC_EGENERIC;
1019     }
1020
1021     p_stream->i_langs = 1+p_input->p_fmt->i_extra_languages;
1022     p_stream->lang = malloc(p_stream->i_langs*3);
1023     i = 1;
1024     p_stream->lang[0] =
1025     p_stream->lang[1] =
1026     p_stream->lang[2] = '\0';
1027     if( p_input->p_fmt->psz_language )
1028     {
1029         char *psz = p_input->p_fmt->psz_language;
1030         const iso639_lang_t *pl = NULL;
1031
1032         if( strlen( psz ) == 2 )
1033         {
1034             pl = GetLang_1( psz );
1035         }
1036         else if( strlen( psz ) == 3 )
1037         {
1038             pl = GetLang_2B( psz );
1039             if( !strcmp( pl->psz_iso639_1, "??" ) )
1040             {
1041                 pl = GetLang_2T( psz );
1042             }
1043         }
1044         if( pl && strcmp( pl->psz_iso639_1, "??" ) )
1045         {
1046             p_stream->lang[0] = pl->psz_iso639_2T[0];
1047             p_stream->lang[1] = pl->psz_iso639_2T[1];
1048             p_stream->lang[2] = pl->psz_iso639_2T[2];
1049
1050             msg_Dbg( p_mux, "    - lang=%c%c%c",
1051                      p_stream->lang[0], p_stream->lang[1],
1052                      p_stream->lang[2] );
1053         }
1054     }
1055     while( i < p_stream->i_langs ) {
1056         if( p_input->p_fmt->p_extra_languages[i-1].psz_language )
1057         {
1058             char *psz = p_input->p_fmt->p_extra_languages[i-1].psz_language;
1059             const iso639_lang_t *pl = NULL;
1060  
1061             if( strlen( psz ) == 2 )
1062             {
1063                 pl = GetLang_1( psz );
1064             }
1065             else if( strlen( psz ) == 3 )
1066             {
1067                 pl = GetLang_2B( psz );
1068                 if( !strcmp( pl->psz_iso639_1, "??" ) )
1069                 {
1070                     pl = GetLang_2T( psz );
1071                 }
1072             }
1073             if( pl && strcmp( pl->psz_iso639_1, "??" ) )
1074             {
1075                 p_stream->lang[i*3+0] = pl->psz_iso639_2T[0];
1076                 p_stream->lang[i*3+1] = pl->psz_iso639_2T[1];
1077                 p_stream->lang[i*3+2] = pl->psz_iso639_2T[2];
1078  
1079                 msg_Dbg( p_mux, "    - lang=%c%c%c",
1080                          p_stream->lang[i*3+0], p_stream->lang[i*3+1],
1081                          p_stream->lang[i*3+2] );
1082             }
1083         }
1084         i++;
1085     }
1086
1087     /* Copy extra data (VOL for MPEG-4 and extra BitMapInfoHeader for VFW */
1088     p_stream->i_decoder_specific_info = p_input->p_fmt->i_extra;
1089     if( p_stream->i_decoder_specific_info > 0 )
1090     {
1091         p_stream->p_decoder_specific_info =
1092             malloc( p_stream->i_decoder_specific_info );
1093         memcpy( p_stream->p_decoder_specific_info,
1094                 p_input->p_fmt->p_extra,
1095                 p_input->p_fmt->i_extra );
1096     }
1097
1098     /* Create decoder specific info for subt */
1099     if( p_stream->i_codec == VLC_FOURCC( 's', 'u','b', 't' ) )
1100     {
1101         uint8_t *p;
1102
1103         p_stream->i_decoder_specific_info = 55;
1104         p_stream->p_decoder_specific_info = p =
1105             malloc( p_stream->i_decoder_specific_info );
1106
1107         p[0] = 0x10;    /* textFormat, 0x10 for 3GPP TS 26.245 */
1108         p[1] = 0x00;    /* flags: 1b: associated video info flag
1109                                   3b: reserved
1110                                   1b: duration flag
1111                                   3b: reserved */
1112         p[2] = 52;      /* remaining size */
1113
1114         p += 3;
1115
1116         p[0] = p[1] = p[2] = p[3] = 0; p+=4;    /* display flags */
1117         *p++ = 0;  /* horizontal justification (-1: left, 0 center, 1 right) */
1118         *p++ = 1;  /* vertical   justification (-1: top, 0 center, 1 bottom) */
1119
1120         p[0] = p[1] = p[2] = 0x00; p+=3;/* background rgb */
1121         *p++ = 0xff;                    /* background a */
1122
1123         p[0] = p[1] = 0; p += 2;        /* text box top */
1124         p[0] = p[1] = 0; p += 2;        /* text box left */
1125         p[0] = p[1] = 0; p += 2;        /* text box bottom */
1126         p[0] = p[1] = 0; p += 2;        /* text box right */
1127
1128         p[0] = p[1] = 0; p += 2;        /* start char */
1129         p[0] = p[1] = 0; p += 2;        /* end char */
1130         p[0] = p[1] = 0; p += 2;        /* default font id */
1131
1132         *p++ = 0;                       /* font style flags */
1133         *p++ = 12;                      /* font size */
1134
1135         p[0] = p[1] = p[2] = 0x00; p+=3;/* foreground rgb */
1136         *p++ = 0x00;                    /* foreground a */
1137
1138         p[0] = p[1] = p[2] = 0; p[3] = 22; p += 4;
1139         memcpy( p, "ftab", 4 ); p += 4;
1140         *p++ = 0; *p++ = 1;             /* entry count */
1141         p[0] = p[1] = 0; p += 2;        /* font id */
1142         *p++ = 9;                       /* font name length */
1143         memcpy( p, "Helvetica", 9 );    /* font name */
1144     }
1145
1146     /* Init pes chain */
1147     BufferChainInit( &p_stream->chain_pes );
1148     p_stream->i_pes_dts    = 0;
1149     p_stream->i_pes_length = 0;
1150     p_stream->i_pes_used   = 0;
1151     p_stream->b_key_frame  = 0;
1152
1153     /* We only change PMT version (PAT isn't changed) */
1154     p_sys->i_pmt_version_number = ( p_sys->i_pmt_version_number + 1 )%32;
1155
1156     /* Update pcr_pid */
1157     if( p_input->p_fmt->i_cat != SPU_ES &&
1158         ( p_sys->i_pcr_pid == 0x1fff || p_input->p_fmt->i_cat == VIDEO_ES ) )
1159     {
1160         if( p_sys->p_pcr_input )
1161         {
1162             /* There was already a PCR stream, so clean context */
1163             /* FIXME */
1164         }
1165         p_sys->i_pcr_pid   = p_stream->i_pid;
1166         p_sys->p_pcr_input = p_input;
1167
1168         msg_Dbg( p_mux, "new PCR PID is %d", p_sys->i_pcr_pid );
1169     }
1170
1171     return VLC_SUCCESS;
1172 }
1173
1174 /*****************************************************************************
1175  * DelStream: called before a stream deletion
1176  *****************************************************************************/
1177 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
1178 {
1179     sout_mux_sys_t  *p_sys = p_mux->p_sys;
1180     ts_stream_t     *p_stream;
1181     vlc_value_t     val;
1182
1183     p_stream = (ts_stream_t*)p_input->p_sys;
1184     msg_Dbg( p_mux, "removing input pid=%d", p_stream->i_pid );
1185
1186     if( p_sys->i_pcr_pid == p_stream->i_pid )
1187     {
1188         int i;
1189
1190         /* Find a new pcr stream (Prefer Video Stream) */
1191         p_sys->i_pcr_pid = 0x1fff;
1192         p_sys->p_pcr_input = NULL;
1193         for( i = 0; i < p_mux->i_nb_inputs; i++ )
1194         {
1195             if( p_mux->pp_inputs[i] == p_input )
1196             {
1197                 continue;
1198             }
1199
1200             if( p_mux->pp_inputs[i]->p_fmt->i_cat == VIDEO_ES )
1201             {
1202                 p_sys->i_pcr_pid  =
1203                     ((ts_stream_t*)p_mux->pp_inputs[i]->p_sys)->i_pid;
1204                 p_sys->p_pcr_input= p_mux->pp_inputs[i];
1205                 break;
1206             }
1207             else if( p_mux->pp_inputs[i]->p_fmt->i_cat != SPU_ES &&
1208                      p_sys->i_pcr_pid == 0x1fff )
1209             {
1210                 p_sys->i_pcr_pid  =
1211                     ((ts_stream_t*)p_mux->pp_inputs[i]->p_sys)->i_pid;
1212                 p_sys->p_pcr_input= p_mux->pp_inputs[i];
1213             }
1214         }
1215         if( p_sys->p_pcr_input )
1216         {
1217             /* Empty TS buffer */
1218             /* FIXME */
1219         }
1220         msg_Dbg( p_mux, "new PCR PID is %d", p_sys->i_pcr_pid );
1221     }
1222
1223     /* Empty all data in chain_pes */
1224     BufferChainClean( &p_stream->chain_pes );
1225
1226     if( p_stream->lang )
1227     {
1228         free(p_stream->lang);
1229     }
1230     if( p_stream->p_decoder_specific_info )
1231     {
1232         free( p_stream->p_decoder_specific_info );
1233     }
1234     if( p_stream->i_stream_id == 0xfa ||
1235         p_stream->i_stream_id == 0xfb ||
1236         p_stream->i_stream_id == 0xfe )
1237     {
1238         p_sys->i_mpeg4_streams--;
1239     }
1240
1241     var_Get( p_mux, SOUT_CFG_PREFIX "pid-video", &val );
1242     if( val.i_int > 0 )
1243     {
1244         int i_pid_video = val.i_int;
1245         if ( i_pid_video == p_stream->i_pid )
1246         {
1247             p_sys->i_pid_video = i_pid_video;
1248             msg_Dbg( p_mux, "freeing video PID %d", i_pid_video );
1249         }
1250     }
1251     var_Get( p_mux, SOUT_CFG_PREFIX "pid-audio", &val );
1252     if( val.i_int > 0 )
1253     {
1254         int i_pid_audio = val.i_int;
1255         if ( i_pid_audio == p_stream->i_pid )
1256         {
1257             p_sys->i_pid_audio = i_pid_audio;
1258             msg_Dbg( p_mux, "freeing audio PID %d", i_pid_audio );
1259         }
1260     }
1261     var_Get( p_mux, SOUT_CFG_PREFIX "pid-spu", &val );
1262     if( val.i_int > 0 )
1263     {
1264         int i_pid_spu = val.i_int;
1265         if ( i_pid_spu == p_stream->i_pid )
1266         {
1267             p_sys->i_pid_spu = i_pid_spu;
1268             msg_Dbg( p_mux, "freeing spu PID %d", i_pid_spu );
1269         }
1270     }
1271     free( p_stream );
1272
1273     /* We only change PMT version (PAT isn't changed) */
1274     p_sys->i_pmt_version_number++; p_sys->i_pmt_version_number %= 32;
1275
1276     return VLC_SUCCESS;
1277 }
1278
1279 /*****************************************************************************
1280  * Mux: Call each time there is new data for at least one stream
1281  *****************************************************************************
1282  *
1283  *****************************************************************************/
1284 static int Mux( sout_mux_t *p_mux )
1285 {
1286     sout_mux_sys_t  *p_sys = p_mux->p_sys;
1287     ts_stream_t     *p_pcr_stream;
1288
1289     if( p_sys->i_pcr_pid == 0x1fff )
1290     {
1291         int i;
1292         for( i = 0; i < p_mux->i_nb_inputs; i++ )
1293         {
1294             block_FifoEmpty( p_mux->pp_inputs[i]->p_fifo );
1295         }
1296         msg_Dbg( p_mux, "waiting for PCR streams" );
1297         msleep( 1000 );
1298         return VLC_SUCCESS;
1299     }
1300     p_pcr_stream = (ts_stream_t*)p_sys->p_pcr_input->p_sys;
1301
1302     for( ;; )
1303     {
1304         sout_buffer_chain_t chain_ts;
1305         int                 i_packet_count;
1306         int                 i_packet_pos;
1307         mtime_t             i_pcr_dts;
1308         mtime_t             i_pcr_length;
1309         mtime_t             i_shaping_delay;
1310         int i;
1311
1312         if( p_pcr_stream->b_key_frame )
1313         {
1314             i_shaping_delay = p_pcr_stream->i_pes_length;
1315         }
1316         else
1317         {
1318             i_shaping_delay = p_sys->i_shaping_delay;
1319         }
1320
1321         /* 1: get enough PES packet for all input */
1322         for( ;; )
1323         {
1324             vlc_bool_t b_ok = VLC_TRUE;
1325             block_t *p_data;
1326
1327             /* Accumulate enough data in the pcr stream (>i_shaping_delay) */
1328             /* Accumulate enough data in all other stream ( >= length of pcr)*/
1329             for( i = -1; i < p_mux->i_nb_inputs; i++ )
1330             {
1331                 sout_input_t *p_input;
1332                 ts_stream_t *p_stream;
1333                 int64_t i_spu_delay = 0;
1334
1335                 if( i == -1 )
1336                     p_input = p_sys->p_pcr_input;
1337                 else if( p_mux->pp_inputs[i]->p_sys == p_pcr_stream )
1338                     continue;
1339                 else
1340                     p_input = p_mux->pp_inputs[i];
1341                 p_stream = (ts_stream_t*)p_input->p_sys;
1342
1343                 if( ( ( p_stream == p_pcr_stream ) &&
1344                       ( p_stream->i_pes_length < i_shaping_delay ) ) ||
1345                     ( p_stream->i_pes_dts + p_stream->i_pes_length <
1346                       p_pcr_stream->i_pes_dts + p_pcr_stream->i_pes_length ) )
1347                 {
1348                     /* Need more data */
1349                     if( block_FifoCount( p_input->p_fifo ) <= 1 )
1350                     {
1351                         if( ( p_input->p_fmt->i_cat == AUDIO_ES ) ||
1352                             ( p_input->p_fmt->i_cat == VIDEO_ES ) )
1353                         {
1354                             /* We need more data */
1355                             return VLC_SUCCESS;
1356                         }
1357                         else if( block_FifoCount( p_input->p_fifo ) <= 0 )
1358                         {
1359                             /* spu, only one packet is needed */
1360                             continue;
1361                         }
1362                         else if( p_input->p_fmt->i_cat == SPU_ES )
1363                         {
1364                             /* Don't mux the SPU yet if it is too early */
1365                             block_t *p_spu = block_FifoShow( p_input->p_fifo );
1366
1367                             i_spu_delay =
1368                                 p_spu->i_dts - p_pcr_stream->i_pes_dts;
1369
1370                             if( ( i_spu_delay > i_shaping_delay ) &&
1371                                 ( i_spu_delay < I64C(100000000) ) )
1372                                 continue;
1373
1374                             if ( ( i_spu_delay >= I64C(100000000) ) ||
1375                                  ( i_spu_delay < I64C(10000) ) )
1376                             {
1377                                 BufferChainClean( &p_stream->chain_pes );
1378                                 p_stream->i_pes_dts = 0;
1379                                 p_stream->i_pes_used = 0;
1380                                 p_stream->i_pes_length = 0;
1381                                 continue;
1382                             }
1383                         }
1384                     }
1385                     b_ok = VLC_FALSE;
1386
1387                     if( p_stream == p_pcr_stream || p_sys->b_data_alignment
1388                          || p_input->p_fmt->i_codec !=
1389                              VLC_FOURCC('m', 'p', 'g', 'a') )
1390                         p_data = block_FifoGet( p_input->p_fifo );
1391                     else
1392                         p_data = FixPES( p_mux, p_input->p_fifo );
1393
1394                     if( block_FifoCount( p_input->p_fifo ) > 0 &&
1395                         p_input->p_fmt->i_cat != SPU_ES )
1396                     {
1397                         block_t *p_next = block_FifoShow( p_input->p_fifo );
1398                         p_data->i_length = p_next->i_dts - p_data->i_dts;
1399                     }
1400                     else if( p_input->p_fmt->i_codec !=
1401                                VLC_FOURCC('s', 'u', 'b', 't' ) )
1402                         p_data->i_length = 1000;
1403
1404                     if( ( p_pcr_stream->i_pes_dts > 0 &&
1405                           p_data->i_dts - 10000000 > p_pcr_stream->i_pes_dts +
1406                           p_pcr_stream->i_pes_length ) ||
1407                         p_data->i_dts < p_stream->i_pes_dts ||
1408                         ( p_stream->i_pes_dts > 0 &&
1409                           p_input->p_fmt->i_cat != SPU_ES &&
1410                           p_data->i_dts - 10000000 > p_stream->i_pes_dts +
1411                           p_stream->i_pes_length ) )
1412                     {
1413                         msg_Warn( p_mux, "packet with too strange dts "
1414                                   "(dts="I64Fd",old="I64Fd",pcr="I64Fd")",
1415                                   p_data->i_dts, p_stream->i_pes_dts,
1416                                   p_pcr_stream->i_pes_dts );
1417                         block_Release( p_data );
1418
1419                         BufferChainClean( &p_stream->chain_pes );
1420                         p_stream->i_pes_dts = 0;
1421                         p_stream->i_pes_used = 0;
1422                         p_stream->i_pes_length = 0;
1423
1424                         if( p_input->p_fmt->i_cat != SPU_ES )
1425                         {
1426                             BufferChainClean( &p_pcr_stream->chain_pes );
1427                             p_pcr_stream->i_pes_dts = 0;
1428                             p_pcr_stream->i_pes_used = 0;
1429                             p_pcr_stream->i_pes_length = 0;
1430                         }
1431                     }
1432                     else
1433                     {
1434                         int i_header_size = 0;
1435                         int b_data_alignment = 0;
1436                         if( p_input->p_fmt->i_cat == SPU_ES )
1437                         {
1438                             if( p_input->p_fmt->i_codec ==
1439                                 VLC_FOURCC('s','u','b','t') )
1440                             {
1441                                 /* Prepend header */
1442                                 p_data = block_Realloc( p_data, 2,
1443                                                         p_data->i_buffer );
1444                                 p_data->p_buffer[0] =
1445                                     ( (p_data->i_buffer - 2) >> 8) & 0xff;
1446                                 p_data->p_buffer[1] =
1447                                     ( (p_data->i_buffer - 2)     ) & 0xff;
1448
1449                                 /* remove trailling \0 if any */
1450                                 if( p_data->i_buffer > 2 &&
1451                                     p_data->p_buffer[p_data->i_buffer -1] ==
1452                                     '\0' )
1453                                     p_data->i_buffer--;
1454
1455                                 /* Append a empty sub (sub text only) */
1456                                 if( p_data->i_length > 0 &&
1457                                     !( p_data->i_buffer == 1 &&
1458                                        *p_data->p_buffer == ' ' ) )
1459                                 {
1460                                     block_t *p_spu = block_New( p_mux, 3 );
1461
1462                                     p_spu->i_dts = p_spu->i_pts =
1463                                         p_data->i_dts + p_data->i_length;
1464                                     p_spu->i_length = 1000;
1465
1466                                     p_spu->p_buffer[0] = 0;
1467                                     p_spu->p_buffer[1] = 1;
1468                                     p_spu->p_buffer[2] = ' ';
1469
1470                                     E_(EStoPES)( p_mux->p_sout, &p_spu, p_spu,
1471                                                  p_input->p_fmt,
1472                                                  p_stream->i_stream_id, 1,
1473                                                  0, 0, 0 );
1474                                     p_data->p_next = p_spu;
1475                                 }
1476                             }
1477                             else if( p_input->p_fmt->i_codec ==
1478                                        VLC_FOURCC('t','e','l','x') )
1479                             {
1480                                 /* EN 300 472 */
1481                                 i_header_size = 0x24;
1482                                 b_data_alignment = 1;
1483                             }
1484                             else if( p_input->p_fmt->i_codec ==
1485                                        VLC_FOURCC('d','v','b','s') )
1486                             {
1487                                 /* EN 300 743 */
1488                                 b_data_alignment = 1;
1489                             }
1490                         }
1491                         else if( p_data->i_length < 0 ||
1492                                  p_data->i_length > 2000000 )
1493                         {
1494                             /* FIXME choose a better value, but anyway we
1495                              * should never have to do that */
1496                             p_data->i_length = 1000;
1497                         }
1498
1499                         p_stream->i_pes_length += p_data->i_length;
1500                         if( p_stream->i_pes_dts == 0 )
1501                         {
1502                             p_stream->i_pes_dts = p_data->i_dts;
1503                         }
1504
1505                         /* Convert to pes */
1506                         if( p_stream->i_stream_id == 0xa0 &&
1507                             p_data->i_pts <= 0 )
1508                         {
1509                             /* XXX yes I know, it's awful, but it's needed,
1510                              * so don't remove it ... */
1511                             p_data->i_pts = p_data->i_dts;
1512                         }
1513
1514                         E_( EStoPES )( p_mux->p_sout, &p_data, p_data,
1515                                        p_input->p_fmt, p_stream->i_stream_id,
1516                                        1, b_data_alignment, i_header_size, 0 );
1517
1518                         BufferChainAppend( &p_stream->chain_pes, p_data );
1519
1520                         if( p_sys->b_use_key_frames && p_stream == p_pcr_stream
1521                             && (p_data->i_flags & BLOCK_FLAG_TYPE_I)
1522                             && !(p_data->i_flags & BLOCK_FLAG_NO_KEYFRAME)
1523                             && (p_stream->i_pes_length > 400000) )
1524                         {
1525                             i_shaping_delay = p_stream->i_pes_length;
1526                             p_stream->b_key_frame = 1;
1527                         }
1528                     }
1529                 }
1530             }
1531
1532             if( b_ok )
1533             {
1534                 break;
1535             }
1536         }
1537
1538         /* save */
1539         i_pcr_dts      = p_pcr_stream->i_pes_dts;
1540         i_pcr_length   = p_pcr_stream->i_pes_length;
1541         p_pcr_stream->b_key_frame = 0;
1542
1543         /* msg_Dbg( p_mux, "starting muxing %lldms", i_pcr_length / 1000 ); */
1544         /* 2: calculate non accurate total size of muxed ts */
1545         i_packet_count = 0;
1546         for( i = 0; i < p_mux->i_nb_inputs; i++ )
1547         {
1548             ts_stream_t *p_stream = (ts_stream_t*)p_mux->pp_inputs[i]->p_sys;
1549             block_t *p_pes;
1550
1551             /* False for pcr stream but it will be enough to do PCR algo */
1552             for( p_pes = p_stream->chain_pes.p_first; p_pes != NULL;
1553                  p_pes = p_pes->p_next )
1554             {
1555                 int i_size = p_pes->i_buffer;
1556                 if( p_pes->i_dts + p_pes->i_length >
1557                     p_pcr_stream->i_pes_dts + p_pcr_stream->i_pes_length )
1558                 {
1559                     mtime_t i_frag = p_pcr_stream->i_pes_dts +
1560                         p_pcr_stream->i_pes_length - p_pes->i_dts;
1561                     if( i_frag < 0 )
1562                     {
1563                         /* Next stream */
1564                         break;
1565                     }
1566                     i_size = p_pes->i_buffer * i_frag / p_pes->i_length;
1567                 }
1568                 i_packet_count += ( i_size + 183 ) / 184;
1569             }
1570         }
1571         /* add overhead for PCR (not really exact) */
1572         i_packet_count += (8 * i_pcr_length / p_sys->i_pcr_delay + 175) / 176;
1573
1574         /* 3: mux PES into TS */
1575         BufferChainInit( &chain_ts );
1576         /* append PAT/PMT  -> FIXME with big pcr delay it won't have enough pat/pmt */
1577         GetPAT( p_mux, &chain_ts );
1578         GetPMT( p_mux, &chain_ts );
1579         i_packet_pos = 0;
1580         i_packet_count += chain_ts.i_depth;
1581         /* msg_Dbg( p_mux, "estimated pck=%d", i_packet_count ); */
1582
1583         for( ;; )
1584         {
1585             int         i_stream;
1586             mtime_t     i_dts;
1587             ts_stream_t *p_stream;
1588             sout_input_t *p_input;
1589             block_t *p_ts;
1590             vlc_bool_t   b_pcr;
1591
1592             /* Select stream (lowest dts) */
1593             for( i = 0, i_stream = -1, i_dts = 0; i < p_mux->i_nb_inputs; i++ )
1594             {
1595                 p_stream = (ts_stream_t*)p_mux->pp_inputs[i]->p_sys;
1596
1597                 if( p_stream->i_pes_dts == 0 )
1598                 {
1599                     continue;
1600                 }
1601
1602                 if( i_stream == -1 ||
1603                     p_stream->i_pes_dts < i_dts )
1604                 {
1605                     i_stream = i;
1606                     i_dts = p_stream->i_pes_dts;
1607                 }
1608             }
1609             if( i_stream == -1 || i_dts > i_pcr_dts + i_pcr_length )
1610             {
1611                 break;
1612             }
1613             p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
1614             p_input = p_mux->pp_inputs[i_stream];
1615
1616             /* do we need to issue pcr */
1617             b_pcr = VLC_FALSE;
1618             if( p_stream == p_pcr_stream &&
1619                 i_pcr_dts + i_packet_pos * i_pcr_length / i_packet_count >=
1620                 p_sys->i_pcr + p_sys->i_pcr_delay )
1621             {
1622                 b_pcr = VLC_TRUE;
1623                 p_sys->i_pcr = i_pcr_dts + i_packet_pos *
1624                     i_pcr_length / i_packet_count;
1625             }
1626
1627             /* Build the TS packet */
1628             p_ts = TSNew( p_mux, p_stream, b_pcr );
1629             if( p_sys->csa != NULL &&
1630                  (p_input->p_fmt->i_cat != AUDIO_ES || p_sys->b_crypt_audio) &&
1631                  (p_input->p_fmt->i_cat != VIDEO_ES || p_sys->b_crypt_video) )
1632             {
1633                 p_ts->i_flags |= BLOCK_FLAG_SCRAMBLED;
1634             }
1635             i_packet_pos++;
1636
1637             /* */
1638             BufferChainAppend( &chain_ts, p_ts );
1639         }
1640
1641         /* 4: date and send */
1642         TSSchedule( p_mux, &chain_ts, i_pcr_length, i_pcr_dts );
1643     }
1644 }
1645
1646 #define STD_PES_PAYLOAD 170
1647 static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo )
1648 {
1649     block_t *p_data;
1650     int i_size;
1651
1652     p_data = block_FifoShow( p_fifo );
1653     i_size = p_data->i_buffer;
1654
1655     if( i_size == STD_PES_PAYLOAD )
1656     {
1657         return block_FifoGet( p_fifo );
1658     }
1659     else if( i_size > STD_PES_PAYLOAD )
1660     {
1661         block_t *p_new = block_New( p_mux, STD_PES_PAYLOAD );
1662         p_mux->p_libvlc->pf_memcpy( p_new->p_buffer, p_data->p_buffer, STD_PES_PAYLOAD );
1663         p_new->i_pts = p_data->i_pts;
1664         p_new->i_dts = p_data->i_dts;
1665         p_new->i_length = p_data->i_length * STD_PES_PAYLOAD
1666                             / p_data->i_buffer;
1667         p_data->i_buffer -= STD_PES_PAYLOAD;
1668         p_data->p_buffer += STD_PES_PAYLOAD;
1669         p_data->i_pts += p_new->i_length;
1670         p_data->i_dts += p_new->i_length;
1671         p_data->i_length -= p_new->i_length;
1672         p_data->i_flags |= BLOCK_FLAG_NO_KEYFRAME;
1673         return p_new;
1674     }
1675     else
1676     {
1677         block_t *p_next;
1678         int i_copy;
1679
1680         p_data = block_FifoGet( p_fifo );
1681         p_data = block_Realloc( p_data, 0, STD_PES_PAYLOAD );
1682         p_next = block_FifoShow( p_fifo );
1683         if ( p_data->i_flags & BLOCK_FLAG_NO_KEYFRAME )
1684         {
1685             p_data->i_flags &= ~BLOCK_FLAG_NO_KEYFRAME;
1686             p_data->i_pts = p_next->i_pts;
1687             p_data->i_dts = p_next->i_dts;
1688         }
1689         i_copy = __MIN( STD_PES_PAYLOAD - i_size, p_next->i_buffer );
1690
1691         p_mux->p_libvlc->pf_memcpy( &p_data->p_buffer[i_size], p_next->p_buffer,
1692                                  i_copy );
1693         p_next->i_pts += p_next->i_length * i_copy / p_next->i_buffer;
1694         p_next->i_dts += p_next->i_length * i_copy / p_next->i_buffer;
1695         p_next->i_length -= p_next->i_length * i_copy / p_next->i_buffer;
1696         p_next->i_buffer -= i_copy;
1697         p_next->p_buffer += i_copy;
1698         p_next->i_flags |= BLOCK_FLAG_NO_KEYFRAME;
1699
1700         if( !p_next->i_buffer )
1701         {
1702             p_next = block_FifoGet( p_fifo );
1703             block_Release( p_next );
1704         }
1705         return p_data;
1706     }
1707 }
1708
1709 static void TSSchedule( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
1710                         mtime_t i_pcr_length, mtime_t i_pcr_dts )
1711 {
1712     sout_mux_sys_t  *p_sys = p_mux->p_sys;
1713     sout_buffer_chain_t new_chain;
1714     int i_packet_count = p_chain_ts->i_depth;
1715     int i;
1716
1717     BufferChainInit( &new_chain );
1718
1719     if ( i_pcr_length <= 0 )
1720     {
1721         i_pcr_length = i_packet_count;
1722     }
1723
1724     for( i = 0; i < i_packet_count; i++ )
1725     {
1726         block_t *p_ts = BufferChainGet( p_chain_ts );
1727         mtime_t i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
1728
1729         BufferChainAppend( &new_chain, p_ts );
1730
1731         if( p_ts->i_dts &&
1732             p_ts->i_dts + p_sys->i_dts_delay * 2/3 < i_new_dts )
1733         {
1734             mtime_t i_max_diff = i_new_dts - p_ts->i_dts;
1735             mtime_t i_cut_dts = p_ts->i_dts;
1736
1737             p_ts = BufferChainPeek( p_chain_ts );
1738             i++;
1739             i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
1740             while ( p_ts != NULL && i_new_dts - p_ts->i_dts >= i_max_diff )
1741             {
1742                 p_ts = BufferChainGet( p_chain_ts );
1743                 i_max_diff = i_new_dts - p_ts->i_dts;
1744                 i_cut_dts = p_ts->i_dts;
1745                 BufferChainAppend( &new_chain, p_ts );
1746
1747                 p_ts = BufferChainPeek( p_chain_ts );
1748                 i++;
1749                 i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
1750             }
1751             msg_Dbg( p_mux, "adjusting rate at "I64Fd"/"I64Fd" (%d/%d)",
1752                      i_cut_dts - i_pcr_dts, i_pcr_length, new_chain.i_depth,
1753                      p_chain_ts->i_depth );
1754             if ( new_chain.i_depth )
1755                 TSDate( p_mux, &new_chain,
1756                         i_cut_dts - i_pcr_dts,
1757                         i_pcr_dts );
1758             if ( p_chain_ts->i_depth )
1759                 TSSchedule( p_mux,
1760                             p_chain_ts, i_pcr_dts + i_pcr_length - i_cut_dts,
1761                             i_cut_dts );
1762             return;
1763         }
1764     }
1765
1766     if ( new_chain.i_depth )
1767         TSDate( p_mux, &new_chain, i_pcr_length, i_pcr_dts );
1768 }
1769
1770 static void TSDate( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
1771                     mtime_t i_pcr_length, mtime_t i_pcr_dts )
1772 {
1773     sout_mux_sys_t  *p_sys = p_mux->p_sys;
1774     int i_packet_count = p_chain_ts->i_depth;
1775     int i;
1776
1777     if ( i_pcr_length / 1000 > 0 )
1778     {
1779         int i_bitrate = ((uint64_t)i_packet_count * 188 * 8000)
1780                           / (uint64_t)(i_pcr_length / 1000);
1781         if ( p_sys->i_bitrate_max && p_sys->i_bitrate_max < i_bitrate )
1782         {
1783             msg_Warn( p_mux, "max bitrate exceeded at "I64Fd
1784                       " (%d bi/s for %d pkt in "I64Fd" us)",
1785                       i_pcr_dts + p_sys->i_shaping_delay * 3 / 2 - mdate(),
1786                       i_bitrate, i_packet_count, i_pcr_length);
1787         }
1788 #if 0
1789         else
1790         {
1791             msg_Dbg( p_mux, "starting at "I64Fd
1792                      " (%d bi/s for %d packets in "I64Fd" us)",
1793                      i_pcr_dts + p_sys->i_shaping_delay * 3 / 2 - mdate(),
1794                      i_bitrate, i_packet_count, i_pcr_length);
1795         }
1796 #endif
1797     }
1798     else
1799     {
1800         /* This shouldn't happen, but happens in some rare heavy load
1801          * and packet losses conditions. */
1802         i_pcr_length = i_packet_count;
1803     }
1804
1805     /* msg_Dbg( p_mux, "real pck=%d", i_packet_count ); */
1806     for( i = 0; i < i_packet_count; i++ )
1807     {
1808         block_t *p_ts = BufferChainGet( p_chain_ts );
1809         mtime_t i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
1810
1811         p_ts->i_dts    = i_new_dts;
1812         p_ts->i_length = i_pcr_length / i_packet_count;
1813
1814         if( p_ts->i_flags & BLOCK_FLAG_CLOCK )
1815         {
1816             /* msg_Dbg( p_mux, "pcr=%lld ms", p_ts->i_dts / 1000 ); */
1817             TSSetPCR( p_ts, p_ts->i_dts - p_sys->i_dts_delay );
1818         }
1819         if( p_ts->i_flags & BLOCK_FLAG_SCRAMBLED )
1820         {
1821             csa_Encrypt( p_sys->csa, p_ts->p_buffer, p_sys->i_csa_pkt_size, 0 );
1822         }
1823
1824         /* latency */
1825         p_ts->i_dts += p_sys->i_shaping_delay * 3 / 2;
1826
1827         sout_AccessOutWrite( p_mux->p_access, p_ts );
1828     }
1829 }
1830
1831 static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
1832                        vlc_bool_t b_pcr )
1833 {
1834     block_t *p_pes = p_stream->chain_pes.p_first;
1835     block_t *p_ts;
1836
1837     vlc_bool_t b_new_pes = VLC_FALSE;
1838     vlc_bool_t b_adaptation_field = VLC_FALSE;
1839
1840     int        i_payload_max = 184 - ( b_pcr ? 8 : 0 );
1841     int        i_payload;
1842
1843     if( p_stream->i_pes_used <= 0 )
1844     {
1845         b_new_pes = VLC_TRUE;
1846     }
1847     i_payload = __MIN( (int)p_pes->i_buffer - p_stream->i_pes_used,
1848                        i_payload_max );
1849
1850     if( b_pcr || i_payload < i_payload_max )
1851     {
1852         b_adaptation_field = VLC_TRUE;
1853     }
1854
1855     p_ts = block_New( p_mux, 188 );
1856     p_ts->i_dts = p_pes->i_dts;
1857
1858     p_ts->p_buffer[0] = 0x47;
1859     p_ts->p_buffer[1] = ( b_new_pes ? 0x40 : 0x00 ) |
1860         ( ( p_stream->i_pid >> 8 )&0x1f );
1861     p_ts->p_buffer[2] = p_stream->i_pid & 0xff;
1862     p_ts->p_buffer[3] = ( b_adaptation_field ? 0x30 : 0x10 ) |
1863         p_stream->i_continuity_counter;
1864
1865     p_stream->i_continuity_counter = (p_stream->i_continuity_counter+1)%16;
1866     p_stream->b_discontinuity = (p_pes->i_flags & BLOCK_FLAG_DISCONTINUITY);
1867
1868     if( b_adaptation_field )
1869     {
1870         int i;
1871
1872         if( b_pcr )
1873         {
1874             int     i_stuffing = i_payload_max - i_payload;
1875
1876             p_ts->i_flags |= BLOCK_FLAG_CLOCK;
1877
1878             p_ts->p_buffer[4] = 7 + i_stuffing;
1879             p_ts->p_buffer[5] = 0x10;   /* flags */
1880             if( p_stream->b_discontinuity )
1881             {
1882                 p_ts->p_buffer[5] |= 0x80; /* flag TS dicontinuity */
1883                 p_stream->b_discontinuity = VLC_FALSE;
1884             }
1885             p_ts->p_buffer[6] = ( 0 )&0xff;
1886             p_ts->p_buffer[7] = ( 0 )&0xff;
1887             p_ts->p_buffer[8] = ( 0 )&0xff;
1888             p_ts->p_buffer[9] = ( 0 )&0xff;
1889             p_ts->p_buffer[10]= ( ( 0 )&0x80 ) | 0x7e;
1890             p_ts->p_buffer[11]= 0;
1891
1892             for( i = 12; i < 12 + i_stuffing; i++ )
1893             {
1894                 p_ts->p_buffer[i] = 0xff;
1895             }
1896         }
1897         else
1898         {
1899             int i_stuffing = i_payload_max - i_payload;
1900
1901             p_ts->p_buffer[4] = i_stuffing - 1;
1902             if( i_stuffing > 1 )
1903             {
1904                 p_ts->p_buffer[5] = 0x00;
1905                 for( i = 6; i < 6 + i_stuffing - 2; i++ )
1906                 {
1907                     p_ts->p_buffer[i] = 0xff;
1908                 }
1909             }
1910         }
1911     }
1912
1913     /* copy payload */
1914     memcpy( &p_ts->p_buffer[188 - i_payload],
1915             &p_pes->p_buffer[p_stream->i_pes_used], i_payload );
1916
1917     p_stream->i_pes_used += i_payload;
1918     p_stream->i_pes_dts = p_pes->i_dts + p_pes->i_length *
1919         p_stream->i_pes_used / p_pes->i_buffer;
1920     p_stream->i_pes_length -= p_pes->i_length * i_payload / p_pes->i_buffer;
1921
1922     if( p_stream->i_pes_used >= (int)p_pes->i_buffer )
1923     {
1924         p_pes = BufferChainGet( &p_stream->chain_pes );
1925         block_Release( p_pes );
1926
1927         p_pes = p_stream->chain_pes.p_first;
1928         if( p_pes )
1929         {
1930             p_stream->i_pes_dts    = p_pes->i_dts;
1931             p_stream->i_pes_length = 0;
1932             while( p_pes )
1933             {
1934                 p_stream->i_pes_length += p_pes->i_length;
1935
1936                 p_pes = p_pes->p_next;
1937             }
1938         }
1939         else
1940         {
1941             p_stream->i_pes_dts = 0;
1942             p_stream->i_pes_length = 0;
1943         }
1944         p_stream->i_pes_used = 0;
1945     }
1946
1947     return p_ts;
1948 }
1949
1950 static void TSSetPCR( block_t *p_ts, mtime_t i_dts )
1951 {
1952     mtime_t i_pcr = 9 * i_dts / 100;
1953
1954     p_ts->p_buffer[6]  = ( i_pcr >> 25 )&0xff;
1955     p_ts->p_buffer[7]  = ( i_pcr >> 17 )&0xff;
1956     p_ts->p_buffer[8]  = ( i_pcr >> 9  )&0xff;
1957     p_ts->p_buffer[9]  = ( i_pcr >> 1  )&0xff;
1958     p_ts->p_buffer[10]|= ( i_pcr << 7  )&0x80;
1959 }
1960
1961 #if 0
1962 static void TSSetConstraints( sout_mux_t *p_mux, sout_buffer_chain_t *c,
1963                               mtime_t i_length, int i_bitrate_min,
1964                               int i_bitrate_max )
1965 {
1966     sout_mux_sys_t  *p_sys = p_mux->p_sys;
1967     sout_buffer_chain_t s = *c;
1968
1969     int i_packets = 0;
1970     int i_packets_min = 0;
1971     int i_packets_max = 0;
1972
1973     if( i_length <= 0 )
1974     {
1975         return;
1976     }
1977
1978     i_packets     = c->i_depth;
1979     i_packets_min = ( (int64_t)i_bitrate_min * i_length / 8 / 1000000  + 187 ) / 188;
1980     i_packets_max = ( (int64_t)i_bitrate_max * i_length / 8 / 1000000  + 187 ) / 188;
1981
1982     if( i_packets < i_packets_min && i_packets_min > 0 )
1983     {
1984         block_t *p_pk;
1985         int i_div = ( i_packets_min - i_packets ) / i_packets;
1986         int i_mod = ( i_packets_min - i_packets ) % i_packets;
1987         int i_rest = 0;
1988
1989         /* We need to pad with null packets (pid=0x1fff)
1990          * We try to melt null packets with true packets */
1991         msg_Dbg( p_mux,
1992                  "packets=%d but min=%d -> adding %d packets of padding",
1993                  i_packets, i_packets_min, i_packets_min - i_packets );
1994
1995         BufferChainInit( c );
1996         while( ( p_pk = BufferChainGet( &s ) ) )
1997         {
1998             int i, i_null;
1999
2000             BufferChainAppend( c, p_pk );
2001
2002             i_null = i_div + ( i_rest + i_mod ) / i_packets;
2003
2004             for( i = 0; i < i_null; i++ )
2005             {
2006                 block_t *p_null;
2007
2008                 p_null = sout_BufferNew( p_mux->p_sout, 188 );
2009                 p_null->p_buffer[0] = 0x47;
2010                 p_null->p_buffer[1] = 0x1f;
2011                 p_null->p_buffer[2] = 0xff;
2012                 p_null->p_buffer[3] = 0x10 | p_sys->i_null_continuity_counter;
2013                 memset( &p_null->p_buffer[4], 0, 184 );
2014                 p_sys->i_null_continuity_counter =
2015                     ( p_sys->i_null_continuity_counter + 1 ) % 16;
2016
2017                 BufferChainAppend( c, p_null );
2018             }
2019
2020             i_rest = ( i_rest + i_mod ) % i_packets;
2021         }
2022     }
2023     else if( i_packets > i_packets_max && i_packets_max > 0 )
2024     {
2025         block_t *p_pk;
2026         int           i;
2027
2028         /* Arg, we need to drop packets, I don't do something clever (like
2029          * dropping complete pid, b frames, ... ), I just get the right amount
2030          * of packets and discard the others */
2031         msg_Warn( p_mux,
2032                   "packets=%d but max=%d -> removing %d packets -> stream broken",
2033                   i_packets, i_packets_max, i_packets - i_packets_max );
2034
2035         BufferChainInit( c );
2036         for( i = 0; i < i_packets_max; i++ )
2037         {
2038             BufferChainAppend( c, BufferChainGet( &s ) );
2039         }
2040
2041         while( ( p_pk = BufferChainGet( &s ) ) )
2042         {
2043             sout_BufferDelete( p_mux->p_sout, p_pk );
2044         }
2045     }
2046 }
2047 #endif
2048
2049 static void PEStoTS( sout_instance_t *p_sout,
2050                      sout_buffer_chain_t *c, block_t *p_pes,
2051                      ts_stream_t *p_stream )
2052 {
2053     uint8_t *p_data;
2054     int     i_size;
2055     int     b_new_pes;
2056
2057     /* get PES total size */
2058     i_size = p_pes->i_buffer;
2059     p_data = p_pes->p_buffer;
2060
2061     b_new_pes = VLC_TRUE;
2062
2063     for( ;; )
2064     {
2065         int           b_adaptation_field;
2066         int           i_copy;
2067         block_t *p_ts;
2068
2069         p_ts = block_New( p_sout, 188 );
2070         /* write header
2071          * 8b   0x47    sync byte
2072          * 1b           transport_error_indicator
2073          * 1b           payload_unit_start
2074          * 1b           transport_priority
2075          * 13b          pid
2076          * 2b           transport_scrambling_control
2077          * 2b           if adaptation_field 0x03 else 0x01
2078          * 4b           continuity_counter
2079          */
2080
2081         i_copy    = __MIN( i_size, 184 );
2082         b_adaptation_field = i_size < 184 ? VLC_TRUE : VLC_FALSE;
2083
2084         p_ts->p_buffer[0] = 0x47;
2085         p_ts->p_buffer[1] = ( b_new_pes ? 0x40 : 0x00 )|
2086                             ( ( p_stream->i_pid >> 8 )&0x1f );
2087         p_ts->p_buffer[2] = p_stream->i_pid & 0xff;
2088         p_ts->p_buffer[3] = ( b_adaptation_field ? 0x30 : 0x10 )|
2089                             p_stream->i_continuity_counter;
2090
2091         b_new_pes = VLC_FALSE;
2092         p_stream->i_continuity_counter = (p_stream->i_continuity_counter+1)%16;
2093
2094         if( b_adaptation_field )
2095         {
2096             int i_stuffing = 184 - i_copy;
2097             int i;
2098
2099             p_ts->p_buffer[4] = i_stuffing - 1;
2100             if( i_stuffing > 1 )
2101             {
2102                 p_ts->p_buffer[5] = 0x00;
2103                 if( p_stream->b_discontinuity )
2104                 {
2105                     p_ts->p_buffer[5] |= 0x80;
2106                     p_stream->b_discontinuity = VLC_FALSE;
2107                 }
2108                 for( i = 6; i < 6 + i_stuffing - 2; i++ )
2109                 {
2110                     p_ts->p_buffer[i] = 0xff;
2111                 }
2112             }
2113         }
2114         /* copy payload */
2115         memcpy( &p_ts->p_buffer[188 - i_copy], p_data, i_copy );
2116         p_data += i_copy;
2117         i_size -= i_copy;
2118
2119         BufferChainAppend( c, p_ts );
2120
2121         if( i_size <= 0 )
2122         {
2123             block_t *p_next = p_pes->p_next;
2124
2125             p_pes->p_next = NULL;
2126             block_Release( p_pes );
2127             if( p_next == NULL )
2128             {
2129                 break;
2130             }
2131             b_new_pes = VLC_TRUE;
2132             p_pes = p_next;
2133             i_size = p_pes->i_buffer;
2134             p_data = p_pes->p_buffer;
2135         }
2136     }
2137
2138     return;
2139 }
2140
2141 static block_t *WritePSISection( sout_instance_t *p_sout,
2142                                        dvbpsi_psi_section_t* p_section )
2143 {
2144     block_t   *p_psi, *p_first = NULL;
2145
2146     while( p_section )
2147     {
2148         int             i_size;
2149
2150         i_size =  (uint32_t)( p_section->p_payload_end - p_section->p_data )+
2151                   ( p_section->b_syntax_indicator ? 4 : 0 );
2152
2153         p_psi = block_New( p_sout, i_size + 1 );
2154         p_psi->i_pts = 0;
2155         p_psi->i_dts = 0;
2156         p_psi->i_length = 0;
2157         p_psi->i_buffer = i_size + 1;
2158
2159         p_psi->p_buffer[0] = 0; /* pointer */
2160         memcpy( p_psi->p_buffer + 1,
2161                 p_section->p_data,
2162                 i_size );
2163
2164         block_ChainAppend( &p_first, p_psi );
2165
2166         p_section = p_section->p_next;
2167     }
2168
2169     return( p_first );
2170 }
2171
2172 static void GetPAT( sout_mux_t *p_mux,
2173                     sout_buffer_chain_t *c )
2174 {
2175     sout_mux_sys_t       *p_sys = p_mux->p_sys;
2176     block_t              *p_pat;
2177     dvbpsi_pat_t         pat;
2178     dvbpsi_psi_section_t *p_section;
2179     int i;
2180
2181     dvbpsi_InitPAT( &pat, p_sys->i_tsid, p_sys->i_pat_version_number,
2182                     1 );      /* b_current_next */
2183     /* add all programs */
2184     for ( i = 0; i < p_sys->i_num_pmt; i++ )
2185         dvbpsi_PATAddProgram( &pat,
2186                               p_sys->i_pmt_program_number[i],
2187                               p_sys->pmt[i].i_pid );
2188
2189     p_section = dvbpsi_GenPATSections( &pat,
2190                                        0 );     /* max program per section */
2191
2192     p_pat = WritePSISection( p_mux->p_sout, p_section );
2193
2194     PEStoTS( p_mux->p_sout, c, p_pat, &p_sys->pat );
2195
2196     dvbpsi_DeletePSISections( p_section );
2197     dvbpsi_EmptyPAT( &pat );
2198 }
2199
2200 static uint32_t GetDescriptorLength24b( int i_length )
2201 {
2202     uint32_t i_l1, i_l2, i_l3;
2203
2204     i_l1 = i_length&0x7f;
2205     i_l2 = ( i_length >> 7 )&0x7f;
2206     i_l3 = ( i_length >> 14 )&0x7f;
2207
2208     return( 0x808000 | ( i_l3 << 16 ) | ( i_l2 << 8 ) | i_l1 );
2209 }
2210
2211 static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
2212 {
2213     sout_mux_sys_t  *p_sys = p_mux->p_sys;
2214     block_t   *p_pmt[MAX_PMT];
2215
2216     dvbpsi_pmt_es_t     *p_es;
2217     dvbpsi_psi_section_t *p_section[MAX_PMT];
2218
2219     int             i_pidinput;
2220     int             i_stream;
2221     int             i;
2222     int             *p_usepid = NULL;
2223
2224 #ifdef HAVE_DVBPSI_SDT
2225     block_t         *p_sdt;
2226     dvbpsi_sdt_t    sdt;
2227
2228     dvbpsi_psi_section_t* p_section2;
2229     dvbpsi_sdt_service_t *p_service;
2230
2231     uint8_t         *psz_sdt_desc;
2232 #endif
2233
2234     if( p_sys->dvbpmt == NULL )
2235         p_sys->dvbpmt = malloc( p_sys->i_num_pmt * sizeof(dvbpsi_pmt_t) );
2236 #ifdef HAVE_DVBPSI_SDT
2237     if( p_sys->b_sdt )
2238         dvbpsi_InitSDT( &sdt, p_sys->i_tsid, 1, 1, p_sys->i_netid );
2239 #endif
2240
2241     for( i = 0; i < p_sys->i_num_pmt; i++ )
2242     {
2243         dvbpsi_InitPMT( &p_sys->dvbpmt[i],
2244                         p_sys->i_pmt_program_number[i],   /* program number */
2245                         p_sys->i_pmt_version_number,
2246                         1,      /* b_current_next */
2247                         p_sys->i_pcr_pid );
2248
2249 #ifdef HAVE_DVBPSI_SDT
2250         if( p_sys->b_sdt )
2251         {
2252             p_service = dvbpsi_SDTAddService( &sdt,
2253                 p_sys->i_pmt_program_number[i],  /* service id */
2254                 0,         /* eit schedule */
2255                 0,         /* eit present */
2256                 4,         /* running status ("4=RUNNING") */
2257                 0 );       /* free ca */
2258
2259 #define psz_sdtprov p_sys->sdt_descriptors[i].psz_provider
2260 #define psz_sdtserv p_sys->sdt_descriptors[i].psz_service_name
2261
2262             /* FIXME: Ineffecient malloc's & ugly code......  */
2263             if( ( psz_sdtprov != NULL ) && ( psz_sdtserv != NULL ) )
2264             {
2265                 psz_sdt_desc = malloc( 3 + strlen(psz_sdtprov)
2266                                          + strlen(psz_sdtserv) );
2267                 if( psz_sdt_desc )
2268                 {
2269                     psz_sdt_desc[0] = 0x01; /* digital television service */
2270
2271                     /* service provider name length */
2272                     psz_sdt_desc[1] = (char)strlen(psz_sdtprov);
2273                     memcpy( &psz_sdt_desc[2], psz_sdtprov, strlen(psz_sdtprov) );
2274
2275                     /* service name length */
2276                     psz_sdt_desc[ 2 + strlen(psz_sdtprov) ]
2277                         = (char)strlen(psz_sdtserv);
2278                     memcpy( &psz_sdt_desc[3+strlen(psz_sdtprov)], psz_sdtserv,
2279                             strlen(psz_sdtserv) );
2280
2281                     dvbpsi_SDTServiceAddDescriptor( p_service, 0x48,
2282                             3 + strlen(psz_sdtprov) + strlen(psz_sdtserv),
2283                             (uint8_t *)psz_sdt_desc );
2284                     free( psz_sdt_desc );
2285                     psz_sdt_desc = NULL;
2286                 }
2287             }
2288 #undef psz_sdtprov
2289 #undef psz_sdtserv
2290         }
2291 #endif
2292     }
2293
2294     if( p_sys->i_mpeg4_streams > 0 )
2295     {
2296         uint8_t iod[4096];
2297         bits_buffer_t bits;
2298         bits_buffer_t bits_fix_IOD;
2299
2300         /* Make valgrind happy : it works at byte level not bit one so
2301          * bit_write confuse it (but DON'T CHANGE the way that bit_write is
2302          * working (needed when fixing some bits) */
2303         memset( iod, 0, 4096 );
2304
2305         bits_initwrite( &bits, 4096, iod );
2306         /* IOD_label_scope */
2307         bits_write( &bits, 8,   0x11 );
2308         /* IOD_label */
2309         bits_write( &bits, 8,   0x01 );
2310         /* InitialObjectDescriptor */
2311         bits_align( &bits );
2312         bits_write( &bits, 8,   0x02 );     /* tag */
2313         bits_fix_IOD = bits;    /* save states to fix length later */
2314         bits_write( &bits, 24,
2315             GetDescriptorLength24b( 0 ) );  /* variable length (fixed later) */
2316         bits_write( &bits, 10,  0x01 );     /* ObjectDescriptorID */
2317         bits_write( &bits, 1,   0x00 );     /* URL Flag */
2318         bits_write( &bits, 1,   0x00 );     /* includeInlineProfileLevelFlag */
2319         bits_write( &bits, 4,   0x0f );     /* reserved */
2320         bits_write( &bits, 8,   0xff );     /* ODProfile (no ODcapability ) */
2321         bits_write( &bits, 8,   0xff );     /* sceneProfile */
2322         bits_write( &bits, 8,   0xfe );     /* audioProfile (unspecified) */
2323         bits_write( &bits, 8,   0xfe );     /* visualProfile( // ) */
2324         bits_write( &bits, 8,   0xff );     /* graphicProfile (no ) */
2325         for( i_stream = 0; i_stream < p_mux->i_nb_inputs; i_stream++ )
2326         {
2327             ts_stream_t *p_stream;
2328             p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
2329
2330             if( p_stream->i_stream_id == 0xfa ||
2331                 p_stream->i_stream_id == 0xfb ||
2332                 p_stream->i_stream_id == 0xfe )
2333             {
2334                 bits_buffer_t bits_fix_ESDescr, bits_fix_Decoder;
2335                 /* ES descriptor */
2336                 bits_align( &bits );
2337                 bits_write( &bits, 8,   0x03 );     /* ES_DescrTag */
2338                 bits_fix_ESDescr = bits;
2339                 bits_write( &bits, 24,
2340                             GetDescriptorLength24b( 0 ) ); /* variable size */
2341                 bits_write( &bits, 16,  p_stream->i_es_id );
2342                 bits_write( &bits, 1,   0x00 );     /* streamDependency */
2343                 bits_write( &bits, 1,   0x00 );     /* URL Flag */
2344                 bits_write( &bits, 1,   0x00 );     /* OCRStreamFlag */
2345                 bits_write( &bits, 5,   0x1f );     /* streamPriority */
2346
2347                 /* DecoderConfigDesciptor */
2348                 bits_align( &bits );
2349                 bits_write( &bits, 8,   0x04 ); /* DecoderConfigDescrTag */
2350                 bits_fix_Decoder = bits;
2351                 bits_write( &bits, 24,  GetDescriptorLength24b( 0 ) );
2352                 if( p_stream->i_stream_type == 0x10 )
2353                 {
2354                     bits_write( &bits, 8, 0x20 );   /* Visual 14496-2 */
2355                     bits_write( &bits, 6, 0x04 );   /* VisualStream */
2356                 }
2357                 else if( p_stream->i_stream_type == 0x1b )
2358                 {
2359                     bits_write( &bits, 8, 0x21 );   /* Visual 14496-2 */
2360                     bits_write( &bits, 6, 0x04 );   /* VisualStream */
2361                 }
2362                 else if( p_stream->i_stream_type == 0x11  || p_stream->i_stream_type == 0x0f )
2363                 {
2364                     bits_write( &bits, 8, 0x40 );   /* Audio 14496-3 */
2365                     bits_write( &bits, 6, 0x05 );   /* AudioStream */
2366                 }
2367                 else if( p_stream->i_stream_type == 0x12 &&
2368                          p_stream->i_codec == VLC_FOURCC('s','u','b','t') )
2369                 {
2370                     bits_write( &bits, 8, 0x0B );   /* Text Stream */
2371                     bits_write( &bits, 6, 0x04 );   /* VisualStream */
2372                 }
2373                 else
2374                 {
2375                     bits_write( &bits, 8, 0x00 );
2376                     bits_write( &bits, 6, 0x00 );
2377
2378                     msg_Err( p_mux->p_sout,"Unsupported stream_type => "
2379                              "broken IOD" );
2380                 }
2381                 bits_write( &bits, 1,   0x00 );         /* UpStream */
2382                 bits_write( &bits, 1,   0x01 );         /* reserved */
2383                 bits_write( &bits, 24,  1024 * 1024 );  /* bufferSizeDB */
2384                 bits_write( &bits, 32,  0x7fffffff );   /* maxBitrate */
2385                 bits_write( &bits, 32,  0 );            /* avgBitrate */
2386
2387                 if( p_stream->i_decoder_specific_info > 0 )
2388                 {
2389                     int i;
2390                     /* DecoderSpecificInfo */
2391                     bits_align( &bits );
2392                     bits_write( &bits, 8,   0x05 ); /* tag */
2393                     bits_write( &bits, 24, GetDescriptorLength24b(
2394                                 p_stream->i_decoder_specific_info ) );
2395                     for( i = 0; i < p_stream->i_decoder_specific_info; i++ )
2396                     {
2397                         bits_write( &bits, 8,
2398                             ((uint8_t*)p_stream->p_decoder_specific_info)[i] );
2399                     }
2400                 }
2401                 /* fix Decoder length */
2402                 bits_write( &bits_fix_Decoder, 24,
2403                             GetDescriptorLength24b( bits.i_data -
2404                             bits_fix_Decoder.i_data - 3 ) );
2405
2406                 /* SLConfigDescriptor : predefined (0x01) */
2407                 bits_align( &bits );
2408                 bits_write( &bits, 8,   0x06 ); /* tag */
2409                 bits_write( &bits, 24,  GetDescriptorLength24b( 8 ) );
2410                 bits_write( &bits, 8,   0x01 );/* predefined */
2411                 bits_write( &bits, 1,   0 );   /* durationFlag */
2412                 bits_write( &bits, 32,  0 );   /* OCRResolution */
2413                 bits_write( &bits, 8,   0 );   /* OCRLength */
2414                 bits_write( &bits, 8,   0 );   /* InstantBitrateLength */
2415                 bits_align( &bits );
2416
2417                 /* fix ESDescr length */
2418                 bits_write( &bits_fix_ESDescr, 24,
2419                             GetDescriptorLength24b( bits.i_data -
2420                             bits_fix_ESDescr.i_data - 3 ) );
2421             }
2422         }
2423         bits_align( &bits );
2424         /* fix IOD length */
2425         bits_write( &bits_fix_IOD, 24,
2426                     GetDescriptorLength24b( bits.i_data -
2427                                             bits_fix_IOD.i_data - 3 ) );
2428
2429 #if 0//def HAVE_BSEARCH /* FIXME!!! This can't possibly work */
2430         i_pidinput = p_mux->pp_inputs[i]->p_fmt->i_id;
2431         p_usepid = bsearch( &i_pidinput, p_sys->pmtmap, p_sys->i_pmtslots,
2432                             sizeof(pmt_map_t), intcompare );
2433         p_usepid = bsearch( &p_usepid, p_sys->pmtmap, p_sys->i_num_pmt,
2434                             sizeof(pmt_map_t), pmtcompare );
2435         if( p_usepid != NULL )
2436             dvbpsi_PMTAddDescriptor(
2437                     &p_sys->dvbpmt[((pmt_map_t *)p_usepid)->i_prog], 0x1d,
2438                     bits.i_data, bits.p_data );
2439         else
2440             msg_Err( p_mux, "Received an unmapped PID" );
2441 #else
2442         dvbpsi_PMTAddDescriptor( &p_sys->dvbpmt[0], 0x1d, bits.i_data,
2443                                  bits.p_data );
2444 #endif
2445     }
2446
2447     for( i_stream = 0; i_stream < p_mux->i_nb_inputs; i_stream++ )
2448     {
2449         ts_stream_t *p_stream;
2450
2451         p_stream = (ts_stream_t *)p_mux->pp_inputs[i_stream]->p_sys;
2452
2453 #ifdef HAVE_BSEARCH
2454         i_pidinput = p_mux->pp_inputs[i_stream]->p_fmt->i_id;
2455         p_usepid = bsearch( &i_pidinput, p_sys->pmtmap, p_sys->i_pmtslots,
2456                             sizeof(pmt_map_t), intcompare );
2457
2458         if( p_usepid != NULL )
2459             p_es = dvbpsi_PMTAddES(
2460                     &p_sys->dvbpmt[((pmt_map_t *)p_usepid)->i_prog],
2461                     p_stream->i_stream_type, p_stream->i_pid );
2462         else
2463             /* If there's an error somewhere, dump it to the first pmt */
2464 #endif
2465             p_es = dvbpsi_PMTAddES( &p_sys->dvbpmt[0], p_stream->i_stream_type,
2466                                     p_stream->i_pid );
2467
2468         if( p_stream->i_stream_id == 0xfa || p_stream->i_stream_id == 0xfb )
2469         {
2470             uint8_t     es_id[2];
2471
2472             /* SL descriptor */
2473             es_id[0] = (p_stream->i_es_id >> 8)&0xff;
2474             es_id[1] = (p_stream->i_es_id)&0xff;
2475             dvbpsi_PMTESAddDescriptor( p_es, 0x1f, 2, es_id );
2476         }
2477         else if( p_stream->i_stream_type == 0xa0 )
2478         {
2479             uint8_t data[512];
2480             int i_extra = __MIN( p_stream->i_decoder_specific_info, 502 );
2481
2482             /* private DIV3 descripor */
2483             memcpy( &data[0], &p_stream->i_bih_codec, 4 );
2484             data[4] = ( p_stream->i_bih_width >> 8 )&0xff;
2485             data[5] = ( p_stream->i_bih_width      )&0xff;
2486             data[6] = ( p_stream->i_bih_height>> 8 )&0xff;
2487             data[7] = ( p_stream->i_bih_height     )&0xff;
2488             data[8] = ( i_extra >> 8 )&0xff;
2489             data[9] = ( i_extra      )&0xff;
2490             if( i_extra > 0 )
2491             {
2492                 memcpy( &data[10], p_stream->p_decoder_specific_info, i_extra );
2493             }
2494
2495             /* 0xa0 is private */
2496             dvbpsi_PMTESAddDescriptor( p_es, 0xa0, i_extra + 10, data );
2497         }
2498         else if( p_stream->i_stream_type == 0x81 )
2499         {
2500             uint8_t format[4] = { 0x41, 0x43, 0x2d, 0x33 };
2501
2502             /* "registration" descriptor : "AC-3" */
2503             dvbpsi_PMTESAddDescriptor( p_es, 0x05, 4, format );
2504         }
2505         else if( p_stream->i_codec == VLC_FOURCC('d','t','s',' ') )
2506         {
2507             /* DTS registration descriptor (ETSI TS 101 154 Annex F) */
2508
2509             /* DTS format identifier, frame size 1024 - FIXME */
2510             uint8_t data[4] = { 0x44, 0x54, 0x53, 0x32 };
2511             dvbpsi_PMTESAddDescriptor( p_es, 0x05, 4, data );
2512         }
2513         else if( p_stream->i_codec == VLC_FOURCC('t','e','l','x') )
2514         {
2515             if( p_stream->i_decoder_specific_info )
2516             {
2517                 dvbpsi_PMTESAddDescriptor( p_es, 0x56,
2518                                            p_stream->i_decoder_specific_info,
2519                                            p_stream->p_decoder_specific_info );
2520             }
2521             continue;
2522         }
2523         else if( p_stream->i_codec == VLC_FOURCC('d','v','b','s') )
2524         {
2525             /* DVB subtitles */
2526             if( p_stream->i_decoder_specific_info )
2527             {
2528                 /* pass-through from the TS demux */
2529                 dvbpsi_PMTESAddDescriptor( p_es, 0x59,
2530                                            p_stream->i_decoder_specific_info,
2531                                            p_stream->p_decoder_specific_info );
2532             }
2533 #ifdef _DVBPSI_DR_59_H_
2534             else
2535             {
2536                 /* from the dvbsub transcoder */
2537                 dvbpsi_subtitling_dr_t descr;
2538                 dvbpsi_subtitle_t sub;
2539                 dvbpsi_descriptor_t *p_descr;
2540
2541                 memcpy( sub.i_iso6392_language_code, p_stream->lang, 3 );
2542                 sub.i_subtitling_type = 0x10; /* no aspect-ratio criticality */
2543                 sub.i_composition_page_id = p_stream->i_es_id & 0xFF;
2544                 sub.i_ancillary_page_id = p_stream->i_es_id >> 16;
2545
2546                 descr.i_subtitles_number = 1;
2547                 descr.p_subtitle[0] = sub;
2548
2549                 p_descr = dvbpsi_GenSubtitlingDr( &descr, 0 );
2550                 /* Work around bug in old libdvbpsi */ p_descr->i_length = 8;
2551                 dvbpsi_PMTESAddDescriptor( p_es, p_descr->i_tag,
2552                                            p_descr->i_length, p_descr->p_data );
2553             }
2554 #endif /* _DVBPSI_DR_59_H_ */
2555             continue;
2556         }
2557
2558         if( p_stream->lang[0] != 0 )
2559         {
2560             uint8_t data[4*p_stream->i_langs];
2561
2562             /* I construct the content myself, way faster than looking at
2563              * over complicated/mind broken libdvbpsi way */
2564             for(i = 0; i < p_stream->i_langs; i++ )
2565             {
2566                 data[i*4+0] = p_stream->lang[i*3+0];
2567                 data[i*4+1] = p_stream->lang[i*3+1];
2568                 data[i*4+2] = p_stream->lang[i*3+2];
2569                 data[i*4+3] = 0x00; /* audio type: 0x00 undefined */
2570             }
2571             dvbpsi_PMTESAddDescriptor( p_es, 0x0a, 4*p_stream->i_langs, data );
2572         }
2573     }
2574
2575     for( i = 0; i < p_sys->i_num_pmt; i++ )
2576     {
2577         p_section[i] = dvbpsi_GenPMTSections( &p_sys->dvbpmt[i] );
2578         p_pmt[i] = WritePSISection( p_mux->p_sout, p_section[i] );
2579         PEStoTS( p_mux->p_sout, c, p_pmt[i], &p_sys->pmt[i] );
2580         dvbpsi_DeletePSISections( p_section[i] );
2581         dvbpsi_EmptyPMT( &p_sys->dvbpmt[i] );
2582     }
2583
2584 #ifdef HAVE_DVBPSI_SDT
2585     if( p_sys->b_sdt )
2586     {
2587         p_section2 = dvbpsi_GenSDTSections( &sdt );
2588         p_sdt = WritePSISection( p_mux->p_sout, p_section2 );
2589         PEStoTS( p_mux->p_sout, c, p_sdt, &p_sys->sdt );
2590         dvbpsi_DeletePSISections( p_section2 );
2591         dvbpsi_EmptySDT( &sdt );
2592     }
2593 #endif
2594 }