ts.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:96k
源码类别:

midi

开发平台:

Unix_Linux

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