]> git.sesse.net Git - vlc/blobdiff - modules/mux/mpeg/ts.c
Mpeg mux: fix compilation
[vlc] / modules / mux / mpeg / ts.c
index 4a00a4ccc1302fa69e7762eef90d017f9543e852..6531f046a23d83de0f2b8831c09a704ca89e41a7 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * ts.c: MPEG-II TS Muxer
  *****************************************************************************
- * Copyright (C) 2001-2005 the VideoLAN team
+ * Copyright (C) 2001-2005 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
@@ -9,19 +9,19 @@
  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
  *          Wallace Wadge <wwadge #_at_# gmail.com>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -45,6 +45,8 @@
 #include "bits.h"
 #include "pes.h"
 #include "csa.h"
+#include "tsutil.h"
+#include "streams.h"
 
 # include <dvbpsi/dvbpsi.h>
 # include <dvbpsi/demux.h>
 # include <dvbpsi/dr.h>
 # include <dvbpsi/psi.h>
 
+#include "dvbpsi_compat.h"
+
+#include "tables.h"
+
 /*
  * TODO:
  *  - check PCR frequency requirement
@@ -174,6 +180,9 @@ static void    Close  ( vlc_object_t * );
 #define SOUT_CFG_PREFIX "sout-ts-"
 #define MAX_PMT 64       /* Maximum number of programs. FIXME: I just chose an arbitrary number. Where is the maximum in the spec? */
 #define MAX_PMT_PID 64       /* Maximum pids in each pmt.  FIXME: I just chose an arbitrary number. Where is the maximum in the spec? */
+#if MAX_SDT_DESC < MAX_PMT
+  #error "MAX_SDT_DESC < MAX_PMT"
+#endif
 
 vlc_module_begin ()
     set_description( N_("TS muxer (libdvbpsi)") )
@@ -183,10 +192,14 @@ vlc_module_begin ()
     set_capability( "sout mux", 120 )
     add_shortcut( "ts" )
 
-    add_integer(SOUT_CFG_PREFIX "pid-video", 0, VPID_TEXT, VPID_LONGTEXT, true)
-    add_integer(SOUT_CFG_PREFIX "pid-audio", 0, APID_TEXT, APID_LONGTEXT, true)
-    add_integer(SOUT_CFG_PREFIX "pid-spu",   0, SPUPID_TEXT, SPUPID_LONGTEXT, true)
-    add_integer(SOUT_CFG_PREFIX "pid-pmt", 0, PMTPID_TEXT, PMTPID_LONGTEXT, true)
+    add_integer(SOUT_CFG_PREFIX "pid-video", 100, VPID_TEXT, VPID_LONGTEXT, true)
+        change_integer_range( 32, 8190 )
+    add_integer(SOUT_CFG_PREFIX "pid-audio", 200, APID_TEXT, APID_LONGTEXT, true)
+        change_integer_range( 32, 8190 )
+    add_integer(SOUT_CFG_PREFIX "pid-spu",   300, SPUPID_TEXT, SPUPID_LONGTEXT, true)
+        change_integer_range( 32, 8190 )
+    add_integer(SOUT_CFG_PREFIX "pid-pmt", 32, PMTPID_TEXT, PMTPID_LONGTEXT, true)
+        change_integer_range( 32, 8190 )
     add_integer(SOUT_CFG_PREFIX "tsid",  0, TSID_TEXT, TSID_LONGTEXT, true)
     add_integer(SOUT_CFG_PREFIX "netid", 0, NETID_TEXT, NETID_LONGTEXT, true)
     add_string(SOUT_CFG_PREFIX "program-pmt", NULL, PMTPROG_TEXT, PMTPROG_LONGTEXT, true)
@@ -228,15 +241,9 @@ static const char *const ppsz_sout_options[] = {
 typedef struct pmt_map_t   /* Holds the mapping between the pmt-pid/pmt table */
 {
     int i_pid;
-    unsigned long i_prog;
+    unsigned i_prog;
 } pmt_map_t;
 
-typedef struct sdt_desc_t
-{
-    char *psz_provider;
-    char *psz_service_name;  /* name of program */
-} sdt_desc_t;
-
 typedef struct
 {
     int     i_depth;
@@ -301,37 +308,22 @@ static inline void BufferChainClean( sout_buffer_chain_t *c )
     BufferChainInit( c );
 }
 
-typedef struct ts_stream_t
+typedef struct
 {
-    int             i_pid;
-    vlc_fourcc_t    i_codec;
-
-    int             i_stream_type;
-    int             i_stream_id;
-    int             i_continuity_counter;
-    bool            b_discontinuity;
-
-    /* to be used for carriege of DIV3 */
-    vlc_fourcc_t    i_bih_codec;
-    int             i_bih_width, i_bih_height;
-
-    /* Specific to mpeg4 in mpeg2ts */
-    int             i_es_id;
-
-    int             i_extra;
-    uint8_t         *p_extra;
-
-    /* language is iso639-2T */
-    int             i_langs;
-    uint8_t         *lang;
-
     sout_buffer_chain_t chain_pes;
     mtime_t             i_pes_dts;
     mtime_t             i_pes_length;
     int                 i_pes_used;
     bool                b_key_frame;
 
-} ts_stream_t;
+} pes_state_t;
+
+typedef struct
+{
+    ts_stream_t  ts;
+    pes_stream_t pes;
+    pes_state_t  state;
+} sout_input_sys_t;
 
 struct sout_mux_sys_t
 {
@@ -340,16 +332,17 @@ struct sout_mux_sys_t
 
     vlc_mutex_t     csa_lock;
 
+#if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
+    dvbpsi_t        *p_dvbpsi;
+#endif
     bool            b_es_id_pid;
     bool            b_sdt;
     int             i_pid_video;
     int             i_pid_audio;
     int             i_pid_spu;
-    int             i_pid_free; /* first usable pid */
 
     int             i_tsid;
-    int             i_netid;
-    int             i_num_pmt;
+    unsigned        i_num_pmt;
     int             i_pmtslots;
     int             i_pat_version_number;
     ts_stream_t     pat;
@@ -358,13 +351,9 @@ struct sout_mux_sys_t
     ts_stream_t     pmt[MAX_PMT];
     pmt_map_t       pmtmap[MAX_PMT_PID];
     int             i_pmt_program_number[MAX_PMT];
-    sdt_desc_t      sdt_descriptors[MAX_PMT];
     bool            b_data_alignment;
 
-    int             i_mpeg4_streams;
-
-    ts_stream_t     sdt;
-    dvbpsi_pmt_t    *dvbpmt;
+    sdt_psi_t       sdt;
 
     /* for TS building */
     int64_t         i_bitrate_min;
@@ -374,6 +363,7 @@ struct sout_mux_sys_t
     int64_t         i_pcr_delay;
 
     int64_t         i_dts_delay;
+    mtime_t         first_dts;
 
     bool            b_use_key_frames;
 
@@ -385,29 +375,66 @@ struct sout_mux_sys_t
     bool            b_crypt_video;
 };
 
-/* Reserve a pid and return it */
-static int  AllocatePID( sout_mux_sys_t *p_sys, int i_cat )
+
+static int GetNextFreePID( sout_mux_t *p_mux, int i_pid_start )
 {
-    int i_pid;
-    if ( i_cat == VIDEO_ES && p_sys->i_pid_video )
+    sout_mux_sys_t *p_sys = p_mux->p_sys;
+
+    restart:
+    for(unsigned i=i_pid_start; i<p_sys->i_num_pmt; i++)
     {
-        i_pid = p_sys->i_pid_video;
-        p_sys->i_pid_video = 0;
+        if(p_sys->pmt[i].i_pid == i_pid_start)
+        {
+            i_pid_start++;
+            goto restart;
+        }
     }
-    else if ( i_cat == AUDIO_ES && p_sys->i_pid_audio )
+
+    for(int i=0; i<p_mux->i_nb_inputs; i++)
     {
-        i_pid = p_sys->i_pid_audio;
-        p_sys->i_pid_audio = 0;
+        sout_input_sys_t *p_stream = (sout_input_sys_t*)p_mux->pp_inputs[i]->p_sys;
+        if(p_stream->ts.i_pid == i_pid_start)
+        {
+            i_pid_start++;
+            goto restart;
+        }
     }
-    else if ( i_cat == SPU_ES && p_sys->i_pid_spu )
+
+    if( i_pid_start > 8190 )
     {
-        i_pid = p_sys->i_pid_spu;
-        p_sys->i_pid_spu = 0;
+        i_pid_start = 32;
+        goto restart;
     }
-    else
+
+    return i_pid_start;
+}
+
+/* Reserve a pid and return it */
+static int  AllocatePID( sout_mux_t *p_mux, int i_cat )
+{
+    sout_mux_sys_t *p_sys = p_mux->p_sys;
+    int i_pid;
+    int *pi_candidate_pid = NULL;
+
+    switch( i_cat )
     {
-        i_pid = ++p_sys->i_pid_free;
+    case VIDEO_ES:
+        pi_candidate_pid = &p_sys->i_pid_video;
+        break;
+
+    case AUDIO_ES:
+        pi_candidate_pid = &p_sys->i_pid_audio;
+        break;
+
+    case SPU_ES:
+    default:
+        pi_candidate_pid = &p_sys->i_pid_spu;
+        break;
     }
+
+    *pi_candidate_pid = GetNextFreePID( p_mux, *pi_candidate_pid );
+    i_pid = (*pi_candidate_pid)++;
+
     return i_pid;
 }
 
@@ -441,7 +468,7 @@ static void TSDate      ( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
 static void GetPAT( sout_mux_t *p_mux, sout_buffer_chain_t *c );
 static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c );
 
-static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream, bool b_pcr );
+static block_t *TSNew( sout_mux_t *p_mux, sout_input_sys_t *p_stream, bool b_pcr );
 static void TSSetPCR( block_t *p_ts, mtime_t i_dts );
 
 static csa_t *csaSetup( vlc_object_t *p_this )
@@ -466,8 +493,8 @@ static csa_t *csaSetup( vlc_object_t *p_this )
     p_sys->b_crypt_video = var_GetBool( p_mux, SOUT_CFG_PREFIX "crypt-video" );
 
     char *csa2ck = var_CreateGetNonEmptyStringCommand( p_mux, SOUT_CFG_PREFIX "csa2-ck");
-    if (!csa2ck || csa_SetCW( p_this, p_sys->csa, csa2ck, false ) )
-        csa_SetCW( p_this, p_sys->csa, csack, false );
+    if (!csa2ck || csa_SetCW( p_this, csa, csa2ck, false ) )
+        csa_SetCW( p_this, csa, csack, false );
     free(csa2ck);
 
     var_Create( p_mux, SOUT_CFG_PREFIX "csa-use", VLC_VAR_STRING | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
@@ -506,24 +533,21 @@ static int Open( vlc_object_t *p_this )
 
     config_ChainParse( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg );
 
-    p_sys = malloc( sizeof( sout_mux_sys_t ) );
+    p_sys = calloc( 1, sizeof( sout_mux_sys_t ) );
     if( !p_sys )
         return VLC_ENOMEM;
-    p_sys->i_pmtslots = p_sys->b_sdt = 0;
     p_sys->i_num_pmt = 1;
-    p_sys->dvbpmt = NULL;
-    memset( &p_sys->pmtmap, 0, sizeof(p_sys->pmtmap) );
 
-    p_mux->pf_control   = Control;
-    p_mux->pf_addstream = AddStream;
-    p_mux->pf_delstream = DelStream;
-    p_mux->pf_mux       = Mux;
-    p_mux->p_sys        = p_sys;
 
-    for (int i = 0; i < MAX_PMT; i++ )
-        p_sys->sdt_descriptors[i].psz_service_name
-            = p_sys->sdt_descriptors[i].psz_provider = NULL;
-    memset( p_sys->sdt_descriptors, 0, sizeof(sdt_desc_t) );
+#if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
+    p_sys->p_dvbpsi = dvbpsi_new( &dvbpsi_messages, DVBPSI_MSG_DEBUG );
+    if( !p_sys->p_dvbpsi )
+    {
+        free( p_sys );
+        return VLC_ENOMEM;
+    }
+    p_sys->p_dvbpsi->p_sys = (void *) p_mux;
+#endif
 
     p_sys->b_es_id_pid = var_GetBool( p_mux, SOUT_CFG_PREFIX "es-id-pid" );
 
@@ -532,58 +556,39 @@ static int Open( vlc_object_t *p_this )
        This would mean 0x451, 0x200, 0x28a, 0x240 would fall under one pmt (program), 0x450,0x201,0x28b,0x241 would fall under another
     */
     char *muxpmt = var_GetNonEmptyString(p_mux, SOUT_CFG_PREFIX "muxpmt");
-    if( muxpmt )
+    for (char *psz = muxpmt; psz; )
     {
         char *psz_next;
-        char *psz = muxpmt;
-        uint16_t i_pid;
-        psz_next = psz;
+        uint16_t i_pid = strtoul( psz, &psz_next, 0 );
+        psz = *psz_next ? &psz_next[1] : NULL;
 
-        while( psz != NULL )
+        if ( i_pid == 0 )
         {
-            i_pid = strtoul( psz, &psz_next, 0 );
-
-            if ( psz_next[0] != '\0' )
-                psz = &psz_next[1];
-            if ( i_pid == 0 )
+            if ( ++p_sys->i_num_pmt > MAX_PMT )
             {
-                p_sys->i_num_pmt++;
-                if ( p_sys->i_num_pmt > MAX_PMT )
-                {
-                    msg_Err( p_mux,
-             "Number of PMTs greater than compiled maximum (%d)", MAX_PMT );
-                    p_sys->i_num_pmt = MAX_PMT;
-                }
+                msg_Err( p_mux, "Number of PMTs > %d)", MAX_PMT );
+                p_sys->i_num_pmt = MAX_PMT;
             }
-            else
+        }
+        else
+        {
+            p_sys->pmtmap[p_sys->i_pmtslots].i_pid = i_pid;
+            p_sys->pmtmap[p_sys->i_pmtslots].i_prog = p_sys->i_num_pmt - 1;
+            if ( ++p_sys->i_pmtslots >= MAX_PMT_PID )
             {
-                p_sys->pmtmap[p_sys->i_pmtslots].i_pid = i_pid;
-                p_sys->pmtmap[p_sys->i_pmtslots].i_prog = p_sys->i_num_pmt - 1;
-                p_sys->i_pmtslots++;
-                if ( p_sys->i_pmtslots > MAX_PMT_PID )
-                {
-                    msg_Err( p_mux,
-             "Number of pids in PMT greater than compiled maximum (%d)",
-                             MAX_PMT_PID );
-                    p_sys->i_pmtslots = MAX_PMT_PID;
-                }
+                msg_Err( p_mux, "Number of pids in PMT > %d", MAX_PMT_PID );
+                p_sys->i_pmtslots = MAX_PMT_PID - 1;
             }
-
-            /* Now sort according to pids for fast search later on */
-            qsort( (void *)p_sys->pmtmap, p_sys->i_pmtslots,
-                   sizeof(pmt_map_t), pmtcompare );
-            if ( !*psz_next )
-                psz = NULL;
         }
-        free(muxpmt);
     }
+    /* Now sort according to pids for fast search later on */
+    qsort( (void *)p_sys->pmtmap, p_sys->i_pmtslots,
+            sizeof(pmt_map_t), pmtcompare );
+    free(muxpmt);
 
     unsigned short subi[3];
     vlc_rand_bytes(subi, sizeof(subi));
     p_sys->i_pat_version_number = nrand48(subi) & 0x1f;
-    p_sys->pat.i_pid = 0;
-    p_sys->pat.i_continuity_counter = 0;
-    p_sys->pat.b_discontinuity = false;
 
     vlc_value_t val;
     var_Get( p_mux, SOUT_CFG_PREFIX "tsid", &val );
@@ -592,22 +597,14 @@ static int Open( vlc_object_t *p_this )
     else
         p_sys->i_tsid = nrand48(subi) & 0xffff;
 
-    p_sys->i_netid = nrand48(subi) & 0xffff;
+    p_sys->sdt.i_netid = nrand48(subi) & 0xffff;
 
     var_Get( p_mux, SOUT_CFG_PREFIX "netid", &val );
     if ( val.i_int )
-        p_sys->i_netid = val.i_int;
+        p_sys->sdt.i_netid = val.i_int;
 
     p_sys->i_pmt_version_number = nrand48(subi) & 0x1f;
-    for (int i = 0; i < p_sys->i_num_pmt; i++ )
-    {
-        p_sys->pmt[i].i_continuity_counter = 0;
-        p_sys->pmt[i].b_discontinuity = false;
-    }
-
-    p_sys->sdt.i_pid = 0x11;
-    p_sys->sdt.i_continuity_counter = 0;
-    p_sys->sdt.b_discontinuity = false;
+    p_sys->sdt.ts.i_pid = 0x11;
 
     char *sdtdesc = var_GetNonEmptyString( p_mux, SOUT_CFG_PREFIX "sdtdesc" );
 
@@ -618,23 +615,16 @@ static int Open( vlc_object_t *p_this )
 
         char *psz_sdttoken = sdtdesc;
 
-        for (int i = 0; psz_sdttoken; i++)
+        for (int i = 0; i < MAX_SDT_DESC * 2 && psz_sdttoken; i++)
         {
             char *psz_end = strchr( psz_sdttoken, ',' );
-            if( psz_end != NULL )
-            {
+            if ( psz_end )
                 *psz_end++ = '\0';
-            }
-            if ( !(i % 2) )
-            {
-                p_sys->sdt_descriptors[i/2].psz_provider
-                    = strdup(psz_sdttoken);
-            }
+
+            if (i % 2)
+                p_sys->sdt.desc[i/2].psz_service_name = strdup(psz_sdttoken);
             else
-            {
-                p_sys->sdt_descriptors[i/2].psz_service_name
-                    = strdup(psz_sdttoken);
-            }
+                p_sys->sdt.desc[i/2].psz_provider = strdup(psz_sdttoken);
 
             psz_sdttoken = psz_end;
         }
@@ -643,7 +633,7 @@ static int Open( vlc_object_t *p_this )
 
     p_sys->b_data_alignment = var_GetBool( p_mux, SOUT_CFG_PREFIX "alignment" );
 
-    char *pgrpmt = var_GetNonEmptyString( p_mux, SOUT_CFG_PREFIX "program-pmt" );
+    char *pgrpmt = var_GetNonEmptyString(p_mux, SOUT_CFG_PREFIX "program-pmt");
     if( pgrpmt )
     {
         char *psz = pgrpmt;
@@ -659,7 +649,7 @@ static int Open( vlc_object_t *p_this )
 
             if( i_pid == 0 )
             {
-                if( i > MAX_PMT )
+                if( i >= MAX_PMT )
                     msg_Err( p_mux, "Number of PMTs > maximum (%d)", MAX_PMT );
             }
             else
@@ -673,40 +663,19 @@ static int Open( vlc_object_t *p_this )
     else
     {
         /* Option not specified, use 1, 2, 3... */
-        for (int i = 0; i < p_sys->i_num_pmt; i++ )
+        for (unsigned i = 0; i < p_sys->i_num_pmt; i++ )
             p_sys->i_pmt_program_number[i] = i + 1;
     }
 
     var_Get( p_mux, SOUT_CFG_PREFIX "pid-pmt", &val );
-    if( !val.i_int ) /* Does this make any sense? */
-        val.i_int = 0x42;
-    for (int i = 0; i < p_sys->i_num_pmt; i++ )
+    for (unsigned i = 0; i < p_sys->i_num_pmt; i++ )
         p_sys->pmt[i].i_pid = val.i_int + i;
 
-    p_sys->i_pid_free = p_sys->pmt[p_sys->i_num_pmt - 1].i_pid + 1;
-
     p_sys->i_pid_video = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-video" );
-    if ( p_sys->i_pid_video > p_sys->i_pid_free )
-    {
-        p_sys->i_pid_free = p_sys->i_pid_video + 1;
-    }
-
     p_sys->i_pid_audio = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-audio" );
-    if ( p_sys->i_pid_audio > p_sys->i_pid_free )
-    {
-        p_sys->i_pid_free = p_sys->i_pid_audio + 1;
-    }
-
     p_sys->i_pid_spu = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-spu" );
-    if ( p_sys->i_pid_spu > p_sys->i_pid_free )
-    {
-        p_sys->i_pid_free = p_sys->i_pid_spu + 1;
-    }
 
     p_sys->i_pcr_pid = 0x1fff;
-    p_sys->p_pcr_input = NULL;
-
-    p_sys->i_mpeg4_streams = 0;
 
     /* Allow to create constrained stream */
     p_sys->i_bitrate_min = var_GetInteger( p_mux, SOUT_CFG_PREFIX "bmin" );
@@ -756,11 +725,15 @@ static int Open( vlc_object_t *p_this )
 
     p_sys->b_use_key_frames = var_GetBool( p_mux, SOUT_CFG_PREFIX "use-key-frames" );
 
-    /* for TS generation */
-    p_sys->i_pcr = 0;
+    p_mux->p_sys        = p_sys;
 
     p_sys->csa = csaSetup(p_this);
 
+    p_mux->pf_control   = Control;
+    p_mux->pf_addstream = AddStream;
+    p_mux->pf_delstream = DelStream;
+    p_mux->pf_mux       = Mux;
+
     return VLC_SUCCESS;
 }
 
@@ -772,6 +745,11 @@ static void Close( vlc_object_t * p_this )
     sout_mux_t          *p_mux = (sout_mux_t*)p_this;
     sout_mux_sys_t      *p_sys = p_mux->p_sys;
 
+#if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0))
+    if( p_sys->p_dvbpsi )
+        dvbpsi_delete( p_sys->p_dvbpsi );
+#endif
+
     if( p_sys->csa )
     {
         var_DelCallback( p_mux, SOUT_CFG_PREFIX "csa-ck", ChangeKeyCallback, NULL );
@@ -781,13 +759,12 @@ static void Close( vlc_object_t * p_this )
         vlc_mutex_destroy( &p_sys->csa_lock );
     }
 
-    for (int i = 0; i < MAX_PMT; i++ )
+    for (int i = 0; i < MAX_SDT_DESC; i++ )
     {
-        free( p_sys->sdt_descriptors[i].psz_service_name );
-        free( p_sys->sdt_descriptors[i].psz_provider );
+        free( p_sys->sdt.desc[i].psz_service_name );
+        free( p_sys->sdt.desc[i].psz_provider );
     }
 
-    free( p_sys->dvbpmt );
     free( p_sys );
 }
 
@@ -902,37 +879,43 @@ static const char *GetIso639_2LangCode(const char *lang)
 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
 {
     sout_mux_sys_t      *p_sys = p_mux->p_sys;
-    ts_stream_t         *p_stream;
+    sout_input_sys_t    *p_stream;
 
-    p_input->p_sys = p_stream = calloc( 1, sizeof( ts_stream_t ) );
+    p_input->p_sys = p_stream = calloc( 1, sizeof( sout_input_sys_t ) );
     if( !p_stream )
         goto oom;
 
     if ( p_sys->b_es_id_pid )
-        p_stream->i_pid = p_input->p_fmt->i_id & 0x1fff;
+        p_stream->ts.i_pid = p_input->p_fmt->i_id & 0x1fff;
     else
-        p_stream->i_pid = AllocatePID( p_sys, p_input->p_fmt->i_cat );
+        p_stream->ts.i_pid = AllocatePID( p_mux, p_input->p_fmt->i_cat );
 
-    p_stream->i_codec = p_input->p_fmt->i_codec;
+    p_stream->pes.i_codec = p_input->p_fmt->i_codec;
 
-    p_stream->i_stream_type = -1;
+    p_stream->pes.i_stream_type = -1;
     switch( p_input->p_fmt->i_codec )
     {
     /* VIDEO */
 
     case VLC_CODEC_MPGV:
+    case VLC_CODEC_MP2V:
+    case VLC_CODEC_MP1V:
         /* TODO: do we need to check MPEG-I/II ? */
-        p_stream->i_stream_type = 0x02;
-        p_stream->i_stream_id = 0xe0;
+        p_stream->pes.i_stream_type = 0x02;
+        p_stream->pes.i_stream_id = 0xe0;
         break;
     case VLC_CODEC_MP4V:
-        p_stream->i_stream_type = 0x10;
-        p_stream->i_stream_id = 0xe0;
-        p_stream->i_es_id = p_stream->i_pid;
+        p_stream->pes.i_stream_type = 0x10;
+        p_stream->pes.i_stream_id = 0xe0;
+        p_stream->pes.i_es_id = p_stream->ts.i_pid;
+        break;
+    case VLC_CODEC_HEVC:
+        p_stream->pes.i_stream_type = 0x24;
+        p_stream->pes.i_stream_id = 0xe0;
         break;
     case VLC_CODEC_H264:
-        p_stream->i_stream_type = 0x1b;
-        p_stream->i_stream_id = 0xe0;
+        p_stream->pes.i_stream_type = 0x1b;
+        p_stream->pes.i_stream_id = 0xe0;
         break;
     /* XXX dirty dirty but somebody want crapy MS-codec XXX */
     case VLC_CODEC_H263I:
@@ -944,89 +927,93 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
     case VLC_CODEC_DIV2:
     case VLC_CODEC_DIV1:
     case VLC_CODEC_MJPG:
-        p_stream->i_stream_type = 0xa0; /* private */
-        p_stream->i_stream_id = 0xa0;   /* beurk */
-        p_stream->i_bih_codec  = p_input->p_fmt->i_codec;
-        p_stream->i_bih_width  = p_input->p_fmt->video.i_width;
-        p_stream->i_bih_height = p_input->p_fmt->video.i_height;
+        p_stream->pes.i_stream_type = 0xa0; /* private */
+        p_stream->pes.i_stream_id = 0xa0;   /* beurk */
+        p_stream->pes.i_bih_codec  = p_input->p_fmt->i_codec;
+        p_stream->pes.i_bih_width  = p_input->p_fmt->video.i_width;
+        p_stream->pes.i_bih_height = p_input->p_fmt->video.i_height;
         break;
     case VLC_CODEC_DIRAC:
         /* stream_id makes use of stream_id_extension */
-        p_stream->i_stream_id = (PES_EXTENDED_STREAM_ID << 8) | 0x60;
-        p_stream->i_stream_type = 0xd1;
+        p_stream->pes.i_stream_id = (PES_EXTENDED_STREAM_ID << 8) | 0x60;
+        p_stream->pes.i_stream_type = 0xd1;
         break;
 
     /* AUDIO */
 
     case VLC_CODEC_MPGA:
-        p_stream->i_stream_type =
+    case VLC_CODEC_MP3:
+        p_stream->pes.i_stream_type =
             p_input->p_fmt->audio.i_rate >= 32000 ? 0x03 : 0x04;
-        p_stream->i_stream_id = 0xc0;
+        p_stream->pes.i_stream_id = 0xc0;
         break;
     case VLC_CODEC_A52:
-        p_stream->i_stream_type = 0x81;
-        p_stream->i_stream_id = 0xbd;
-        break;
-    case VLC_CODEC_EAC3:
-        p_stream->i_stream_type = 0x06;
-        p_stream->i_stream_id = 0xbd;
+        p_stream->pes.i_stream_type = 0x81;
+        p_stream->pes.i_stream_id = 0xbd;
         break;
     case VLC_CODEC_DVD_LPCM:
-        p_stream->i_stream_type = 0x83;
-        p_stream->i_stream_id = 0xbd;
+        p_stream->pes.i_stream_type = 0x83;
+        p_stream->pes.i_stream_id = 0xbd;
         break;
+    case VLC_CODEC_OPUS:
+        if (p_input->p_fmt->audio.i_channels > 8) {
+            msg_Err(p_mux, "Too many opus channels (%d > 8)",
+                p_input->p_fmt->audio.i_channels);
+            break;
+        }
+    case VLC_CODEC_EAC3:
     case VLC_CODEC_DTS:
-        p_stream->i_stream_type = 0x06;
-        p_stream->i_stream_id = 0xbd;
+        p_stream->pes.i_stream_type = 0x06;
+        p_stream->pes.i_stream_id = 0xbd;
         break;
     case VLC_CODEC_MP4A:
         /* XXX: make that configurable in some way when LOAS
          * is implemented for AAC in TS */
-        //p_stream->i_stream_type = 0x11; /* LOAS/LATM */
-        p_stream->i_stream_type = 0x0f; /* ADTS */
-        p_stream->i_stream_id = 0xc0;
-        p_sys->i_mpeg4_streams++;
-        p_stream->i_es_id = p_stream->i_pid;
+        //p_stream->pes.i_stream_type = 0x11; /* LOAS/LATM */
+        p_stream->pes.i_stream_type = 0x0f; /* ADTS */
+        p_stream->pes.i_stream_id = 0xc0;
+        p_stream->pes.i_es_id = p_stream->ts.i_pid;
         break;
 
     /* TEXT */
 
     case VLC_CODEC_SPU:
-        p_stream->i_stream_type = 0x82;
-        p_stream->i_stream_id = 0xbd;
+        p_stream->pes.i_stream_type = 0x82;
+        p_stream->pes.i_stream_id = 0xbd;
         break;
     case VLC_CODEC_SUBT:
-        p_stream->i_stream_type = 0x12;
-        p_stream->i_stream_id = 0xfa;
-        p_sys->i_mpeg4_streams++;
-        p_stream->i_es_id = p_stream->i_pid;
+        p_stream->pes.i_stream_type = 0x12;
+        p_stream->pes.i_stream_id = 0xfa;
+        p_stream->pes.i_es_id = p_stream->ts.i_pid;
         break;
     case VLC_CODEC_DVBS:
-        p_stream->i_stream_type = 0x06;
-        p_stream->i_es_id = p_input->p_fmt->subs.dvb.i_id;
-        p_stream->i_stream_id = 0xbd;
+        p_stream->pes.i_stream_type = 0x06;
+        p_stream->pes.i_es_id = p_input->p_fmt->subs.dvb.i_id;
+        p_stream->pes.i_stream_id = 0xbd;
         break;
     case VLC_CODEC_TELETEXT:
-        p_stream->i_stream_type = 0x06;
-        p_stream->i_stream_id = 0xbd; /* FIXME */
+        p_stream->pes.i_stream_type = 0x06;
+        p_stream->pes.i_stream_id = 0xbd; /* FIXME */
         break;
     }
 
-    if (p_stream->i_stream_type == -1)
+    if (p_stream->pes.i_stream_type == -1)
     {
+        msg_Warn( p_mux, "rejecting stream with unsupported codec %4.4s",
+                  (char*)&p_stream->pes.i_codec );
         free( p_stream );
         return VLC_EGENERIC;
     }
 
-    p_stream->i_langs = 1 + p_input->p_fmt->i_extra_languages;
-    p_stream->lang = calloc(1, p_stream->i_langs * 4);
-    if( !p_stream->lang )
+    p_stream->pes.i_langs = 1 + p_input->p_fmt->i_extra_languages;
+    p_stream->pes.lang = calloc(1, p_stream->pes.i_langs * 4);
+    if( !p_stream->pes.lang )
         goto oom;
 
     msg_Dbg( p_mux, "adding input codec=%4.4s pid=%d",
-             (char*)&p_stream->i_codec, p_stream->i_pid );
+             (char*)&p_stream->pes.i_codec, p_stream->ts.i_pid );
 
-    for (int i = 0; i < p_stream->i_langs; i++) {
+    for (int i = 0; i < p_stream->pes.i_langs; i++) {
         char *lang = (i == 0)
             ? p_input->p_fmt->psz_language
             : p_input->p_fmt->p_extra_languages[i-1].psz_language;
@@ -1037,21 +1024,21 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
         const char *code = GetIso639_2LangCode(lang);
         if (*code)
         {
-            memcpy(&p_stream->lang[i*4], code, 3);
-            p_stream->lang[i*4+3] = 0x00; /* audio type: 0x00 undefined */
-            msg_Dbg( p_mux, "    - lang=%3.3s", &p_stream->lang[i*4] );
+            memcpy(&p_stream->pes.lang[i*4], code, 3);
+            p_stream->pes.lang[i*4+3] = 0x00; /* audio type: 0x00 undefined */
+            msg_Dbg( p_mux, "    - lang=%3.3s", &p_stream->pes.lang[i*4] );
         }
     }
 
     /* Create decoder specific info for subt */
-    if( p_stream->i_codec == VLC_CODEC_SUBT )
+    if( p_stream->pes.i_codec == VLC_CODEC_SUBT )
     {
-        p_stream->i_extra = 55;
-        p_stream->p_extra = malloc( p_stream->i_extra );
-        if (!p_stream->p_extra)
+        p_stream->pes.i_extra = 55;
+        p_stream->pes.p_extra = malloc( p_stream->pes.i_extra );
+        if (!p_stream->pes.p_extra)
             goto oom;
 
-        uint8_t *p = p_stream->p_extra;
+        uint8_t *p = p_stream->pes.p_extra;
         p[0] = 0x10;    /* textFormat, 0x10 for 3GPP TS 26.245 */
         p[1] = 0x00;    /* flags: 1b: associated video info flag
                                 3b: reserved
@@ -1096,17 +1083,17 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
         es_format_t *fmt = p_input->p_fmt;
         if( fmt->i_extra > 0 )
         {
-            p_stream->i_extra = fmt->i_extra;
-            p_stream->p_extra = malloc( fmt->i_extra );
-            if( !p_stream->p_extra )
+            p_stream->pes.i_extra = fmt->i_extra;
+            p_stream->pes.p_extra = malloc( fmt->i_extra );
+            if( !p_stream->pes.p_extra )
                 goto oom;
 
-            memcpy( p_stream->p_extra, fmt->p_extra, fmt->i_extra );
+            memcpy( p_stream->pes.p_extra, fmt->p_extra, fmt->i_extra );
         }
     }
 
     /* Init pes chain */
-    BufferChainInit( &p_stream->chain_pes );
+    BufferChainInit( &p_stream->state.chain_pes );
 
     /* We only change PMT version (PAT isn't changed) */
     p_sys->i_pmt_version_number = ( p_sys->i_pmt_version_number + 1 )%32;
@@ -1120,7 +1107,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
             /* There was already a PCR stream, so clean context */
             /* FIXME */
         }
-        p_sys->i_pcr_pid   = p_stream->i_pid;
+        p_sys->i_pcr_pid   = p_stream->ts.i_pid;
         p_sys->p_pcr_input = p_input;
 
         msg_Dbg( p_mux, "new PCR PID is %d", p_sys->i_pcr_pid );
@@ -1129,8 +1116,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
     return VLC_SUCCESS;
 
 oom:
-    free(p_stream->lang);
-    free(p_stream);
+    if(p_stream)
+    {
+        free(p_stream->pes.lang);
+        free(p_stream);
+    }
     return VLC_ENOMEM;
 }
 
@@ -1139,13 +1129,13 @@ oom:
  *****************************************************************************/
 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
 {
-    sout_mux_sys_t  *p_sys = p_mux->p_sys;
-    ts_stream_t     *p_stream = (ts_stream_t*)p_input->p_sys;
-    int              pid;
+    sout_mux_sys_t   *p_sys = p_mux->p_sys;
+    sout_input_sys_t *p_stream = (sout_input_sys_t*)p_input->p_sys;
+    int               pid;
 
-    msg_Dbg( p_mux, "removing input pid=%d", p_stream->i_pid );
+    msg_Dbg( p_mux, "removing input pid=%d", p_stream->ts.i_pid );
 
-    if( p_sys->i_pcr_pid == p_stream->i_pid )
+    if( p_sys->i_pcr_pid == p_stream->ts.i_pid )
     {
         /* Find a new pcr stream (Prefer Video Stream) */
         p_sys->i_pcr_pid = 0x1fff;
@@ -1160,7 +1150,7 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
             if( p_mux->pp_inputs[i]->p_fmt->i_cat == VIDEO_ES )
             {
                 p_sys->i_pcr_pid  =
-                    ((ts_stream_t*)p_mux->pp_inputs[i]->p_sys)->i_pid;
+                    ((sout_input_sys_t*)p_mux->pp_inputs[i]->p_sys)->ts.i_pid;
                 p_sys->p_pcr_input= p_mux->pp_inputs[i];
                 break;
             }
@@ -1168,7 +1158,7 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
                      p_sys->i_pcr_pid == 0x1fff )
             {
                 p_sys->i_pcr_pid  =
-                    ((ts_stream_t*)p_mux->pp_inputs[i]->p_sys)->i_pid;
+                    ((sout_input_sys_t*)p_mux->pp_inputs[i]->p_sys)->ts.i_pid;
                 p_sys->p_pcr_input= p_mux->pp_inputs[i];
             }
         }
@@ -1181,31 +1171,25 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
     }
 
     /* Empty all data in chain_pes */
-    BufferChainClean( &p_stream->chain_pes );
+    BufferChainClean( &p_stream->state.chain_pes );
 
-    free(p_stream->lang);
-    free( p_stream->p_extra );
-    if( p_stream->i_stream_id == 0xfa ||
-        p_stream->i_stream_id == 0xfb ||
-        p_stream->i_stream_id == 0xfe )
-    {
-        p_sys->i_mpeg4_streams--;
-    }
+    free(p_stream->pes.lang);
+    free( p_stream->pes.p_extra );
 
     pid = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-video" );
-    if ( pid > 0 && pid == p_stream->i_pid )
+    if ( pid > 0 && pid == p_stream->ts.i_pid )
     {
         p_sys->i_pid_video = pid;
         msg_Dbg( p_mux, "freeing video PID %d", pid);
     }
     pid = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-audio" );
-    if ( pid > 0 && pid == p_stream->i_pid )
+    if ( pid > 0 && pid == p_stream->ts.i_pid )
     {
         p_sys->i_pid_audio = pid;
         msg_Dbg( p_mux, "freeing audio PID %d", pid);
     }
     pid = var_GetInteger( p_mux, SOUT_CFG_PREFIX "pid-spu" );
-    if ( pid > 0 && pid == p_stream->i_pid )
+    if ( pid > 0 && pid == p_stream->ts.i_pid )
     {
         p_sys->i_pid_spu = pid;
         msg_Dbg( p_mux, "freeing spu PID %d", pid);
@@ -1220,15 +1204,41 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
     return VLC_SUCCESS;
 }
 
+static void SetHeader( sout_buffer_chain_t *c,
+                        int depth )
+{
+    block_t *p_ts = BufferChainPeek( c );
+    while( depth > 0 )
+    {
+        p_ts = p_ts->p_next;
+        depth--;
+    }
+    p_ts->i_flags |= BLOCK_FLAG_HEADER;
+}
+
+static block_t *Pack_Opus(block_t *p_data)
+{
+    lldiv_t d = lldiv(p_data->i_buffer, 255);
+    p_data = block_Realloc(p_data, 2 + d.quot + 1, p_data->i_buffer);
+    if (p_data) { /* no flags */
+        p_data->p_buffer[0] = 0x7f;
+        p_data->p_buffer[1] = 0xe0;
+        memset(&p_data->p_buffer[2], 0xff, d.quot);
+        p_data->p_buffer[2+d.quot] = d.rem;
+    }
+
+    return p_data;
+}
+
 /* returns true if needs more data */
 static bool MuxStreams(sout_mux_t *p_mux )
 {
     sout_mux_sys_t  *p_sys = p_mux->p_sys;
-    ts_stream_t *p_pcr_stream = (ts_stream_t*)p_sys->p_pcr_input->p_sys;
+    sout_input_sys_t *p_pcr_stream = (sout_input_sys_t*)p_sys->p_pcr_input->p_sys;
 
     sout_buffer_chain_t chain_ts;
-    mtime_t i_shaping_delay = p_pcr_stream->b_key_frame
-        ? p_pcr_stream->i_pes_length
+    mtime_t i_shaping_delay = p_pcr_stream->state.b_key_frame
+        ? p_pcr_stream->state.i_pes_length
         : p_sys->i_shaping_delay;
 
     bool b_ok = true;
@@ -1251,12 +1261,12 @@ static bool MuxStreams(sout_mux_t *p_mux )
             continue;
         else
             p_input = p_mux->pp_inputs[i];
-        ts_stream_t *p_stream = (ts_stream_t*)p_input->p_sys;
+        sout_input_sys_t *p_stream = (sout_input_sys_t*)p_input->p_sys;
 
         if( ( p_stream != p_pcr_stream ||
-              p_stream->i_pes_length >= i_shaping_delay ) &&
-            p_stream->i_pes_dts + p_stream->i_pes_length >=
-            p_pcr_stream->i_pes_dts + p_pcr_stream->i_pes_length )
+              p_stream->state.i_pes_length >= i_shaping_delay ) &&
+            p_stream->state.i_pes_dts + p_stream->state.i_pes_length >=
+            p_pcr_stream->state.i_pes_dts + p_pcr_stream->state.i_pes_length )
             continue;
 
         /* Need more data */
@@ -1278,18 +1288,18 @@ static bool MuxStreams(sout_mux_t *p_mux )
                 /* Don't mux the SPU yet if it is too early */
                 block_t *p_spu = block_FifoShow( p_input->p_fifo );
 
-                int64_t i_spu_delay = p_spu->i_dts - p_pcr_stream->i_pes_dts;
+                int64_t i_spu_delay = p_spu->i_dts - p_pcr_stream->state.i_pes_dts;
                 if( ( i_spu_delay > i_shaping_delay ) &&
-                    ( i_spu_delay < INT64_C(100000000) ) )
+                    ( i_spu_delay < 100 * CLOCK_FREQ ) )
                     continue;
 
-                if ( ( i_spu_delay >= INT64_C(100000000) ) ||
-                     ( i_spu_delay < INT64_C(10000) ) )
+                if ( ( i_spu_delay >= 100 * CLOCK_FREQ ) ||
+                     ( i_spu_delay < CLOCK_FREQ / 100 ) )
                 {
-                    BufferChainClean( &p_stream->chain_pes );
-                    p_stream->i_pes_dts = 0;
-                    p_stream->i_pes_used = 0;
-                    p_stream->i_pes_length = 0;
+                    BufferChainClean( &p_stream->state.chain_pes );
+                    p_stream->state.i_pes_dts = 0;
+                    p_stream->state.i_pes_used = 0;
+                    p_stream->state.i_pes_length = 0;
                     continue;
                 }
             }
@@ -1298,14 +1308,17 @@ static bool MuxStreams(sout_mux_t *p_mux )
 
         block_t *p_data;
         if( p_stream == p_pcr_stream || p_sys->b_data_alignment
-             || p_input->p_fmt->i_codec !=
-                 VLC_CODEC_MPGA )
+             || ((p_input->p_fmt->i_codec != VLC_CODEC_MPGA ) &&
+                 (p_input->p_fmt->i_codec != VLC_CODEC_MP3) ) )
         {
             p_data = block_FifoGet( p_input->p_fifo );
+            if (p_data->i_pts <= VLC_TS_INVALID)
+                p_data->i_pts = p_data->i_dts;
 
-            if( p_input->p_fmt->i_codec ==
-                    VLC_CODEC_MP4A )
+            if( p_input->p_fmt->i_codec == VLC_CODEC_MP4A )
                 p_data = Add_ADTS( p_data, p_input->p_fmt );
+            else if( p_input->p_fmt->i_codec == VLC_CODEC_OPUS )
+                p_data = Pack_Opus( p_data );
         }
         else
             p_data = FixPES( p_mux, p_input->p_fifo );
@@ -1320,32 +1333,35 @@ static bool MuxStreams(sout_mux_t *p_mux )
                    VLC_CODEC_SUBT )
             p_data->i_length = 1000;
 
-        if( ( p_pcr_stream->i_pes_dts > 0 &&
-              p_data->i_dts - 10000000 > p_pcr_stream->i_pes_dts +
-              p_pcr_stream->i_pes_length ) ||
-            p_data->i_dts < p_stream->i_pes_dts ||
-            ( p_stream->i_pes_dts > 0 &&
+        if (p_sys->first_dts == 0)
+            p_sys->first_dts = p_data->i_dts;
+
+        if( ( p_pcr_stream->state.i_pes_dts > 0 &&
+              p_data->i_dts - 10 * CLOCK_FREQ > p_pcr_stream->state.i_pes_dts +
+              p_pcr_stream->state.i_pes_length ) ||
+            p_data->i_dts < p_stream->state.i_pes_dts ||
+            ( p_stream->state.i_pes_dts > 0 &&
               p_input->p_fmt->i_cat != SPU_ES &&
-              p_data->i_dts - 10000000 > p_stream->i_pes_dts +
-              p_stream->i_pes_length ) )
+              p_data->i_dts - 10 * CLOCK_FREQ > p_stream->state.i_pes_dts +
+              p_stream->state.i_pes_length ) )
         {
             msg_Warn( p_mux, "packet with too strange dts "
                       "(dts=%"PRId64",old=%"PRId64",pcr=%"PRId64")",
-                      p_data->i_dts, p_stream->i_pes_dts,
-                      p_pcr_stream->i_pes_dts );
+                      p_data->i_dts, p_stream->state.i_pes_dts,
+                      p_pcr_stream->state.i_pes_dts );
             block_Release( p_data );
 
-            BufferChainClean( &p_stream->chain_pes );
-            p_stream->i_pes_dts = 0;
-            p_stream->i_pes_used = 0;
-            p_stream->i_pes_length = 0;
+            BufferChainClean( &p_stream->state.chain_pes );
+            p_stream->state.i_pes_dts = 0;
+            p_stream->state.i_pes_used = 0;
+            p_stream->state.i_pes_length = 0;
 
             if( p_input->p_fmt->i_cat != SPU_ES )
             {
-                BufferChainClean( &p_pcr_stream->chain_pes );
-                p_pcr_stream->i_pes_dts = 0;
-                p_pcr_stream->i_pes_used = 0;
-                p_pcr_stream->i_pes_length = 0;
+                BufferChainClean( &p_pcr_stream->state.chain_pes );
+                p_pcr_stream->state.i_pes_dts = 0;
+                p_pcr_stream->state.i_pes_used = 0;
+                p_pcr_stream->state.i_pes_length = 0;
             }
 
             continue;
@@ -1370,7 +1386,7 @@ static bool MuxStreams(sout_mux_t *p_mux )
             if( p_data->i_length > 0 &&
                 ( p_data->i_buffer != 1 || *p_data->p_buffer != ' ' ) )
             {
-                block_t *p_spu = block_New( p_mux, 3 );
+                block_t *p_spu = block_Alloc( 3 );
 
                 p_spu->i_dts = p_data->i_dts + p_data->i_length;
                 p_spu->i_pts = p_spu->i_dts;
@@ -1380,8 +1396,8 @@ static bool MuxStreams(sout_mux_t *p_mux )
                 p_spu->p_buffer[1] = 1;
                 p_spu->p_buffer[2] = ' ';
 
-                EStoPES( p_mux->p_sout, &p_spu, p_spu, p_input->p_fmt,
-                             p_stream->i_stream_id, 1, 0, 0, 0 );
+                EStoPES( &p_spu, p_input->p_fmt,
+                             p_stream->pes.i_stream_id, 1, 0, 0, 0, p_sys->first_dts );
                 p_data->p_next = p_spu;
             }
             break;
@@ -1404,14 +1420,14 @@ static bool MuxStreams(sout_mux_t *p_mux )
             p_data->i_length = 1000;
         }
 
-        p_stream->i_pes_length += p_data->i_length;
-        if( p_stream->i_pes_dts == 0 )
+        p_stream->state.i_pes_length += p_data->i_length;
+        if( p_stream->state.i_pes_dts == 0 )
         {
-            p_stream->i_pes_dts = p_data->i_dts;
+            p_stream->state.i_pes_dts = p_data->i_dts;
         }
 
         /* Convert to pes */
-        if( p_stream->i_stream_id == 0xa0 && p_data->i_pts <= 0 )
+        if( p_stream->pes.i_stream_id == 0xa0 && p_data->i_pts <= 0 )
         {
             /* XXX yes I know, it's awful, but it's needed,
              * so don't remove it ... */
@@ -1426,44 +1442,43 @@ static bool MuxStreams(sout_mux_t *p_mux )
             i_max_pes_size = INT_MAX;
         }
 
-         EStoPES ( p_mux->p_sout, &p_data, p_data,
-                       p_input->p_fmt, p_stream->i_stream_id,
+        EStoPES ( &p_data, p_input->p_fmt, p_stream->pes.i_stream_id,
                        1, b_data_alignment, i_header_size,
-                       i_max_pes_size );
+                       i_max_pes_size, p_sys->first_dts );
 
-        BufferChainAppend( &p_stream->chain_pes, p_data );
+        BufferChainAppend( &p_stream->state.chain_pes, p_data );
 
         if( p_sys->b_use_key_frames && p_stream == p_pcr_stream
             && (p_data->i_flags & BLOCK_FLAG_TYPE_I)
             && !(p_data->i_flags & BLOCK_FLAG_NO_KEYFRAME)
-            && (p_stream->i_pes_length > 400000) )
+            && (p_stream->state.i_pes_length > 400000) )
         {
-            i_shaping_delay = p_stream->i_pes_length;
-            p_stream->b_key_frame = 1;
+            i_shaping_delay = p_stream->state.i_pes_length;
+            p_stream->state.b_key_frame = 1;
         }
     }
 
     /* save */
-    const mtime_t i_pcr_length = p_pcr_stream->i_pes_length;
-    p_pcr_stream->b_key_frame = 0;
+    const mtime_t i_pcr_length = p_pcr_stream->state.i_pes_length;
+    p_pcr_stream->state.b_key_frame = 0;
 
     /* msg_Dbg( p_mux, "starting muxing %lldms", i_pcr_length / 1000 ); */
     /* 2: calculate non accurate total size of muxed ts */
     int i_packet_count = 0;
     for (int i = 0; i < p_mux->i_nb_inputs; i++ )
     {
-        ts_stream_t *p_stream = (ts_stream_t*)p_mux->pp_inputs[i]->p_sys;
+        sout_input_sys_t *p_stream = (sout_input_sys_t*)p_mux->pp_inputs[i]->p_sys;
 
         /* False for pcr stream but it will be enough to do PCR algo */
-        for (block_t *p_pes = p_stream->chain_pes.p_first; p_pes != NULL;
+        for (block_t *p_pes = p_stream->state.chain_pes.p_first; p_pes != NULL;
              p_pes = p_pes->p_next )
         {
             int i_size = p_pes->i_buffer;
             if( p_pes->i_dts + p_pes->i_length >
-                p_pcr_stream->i_pes_dts + p_pcr_stream->i_pes_length )
+                p_pcr_stream->state.i_pes_dts + p_pcr_stream->state.i_pes_length )
             {
-                mtime_t i_frag = p_pcr_stream->i_pes_dts +
-                    p_pcr_stream->i_pes_length - p_pes->i_dts;
+                mtime_t i_frag = p_pcr_stream->state.i_pes_dts +
+                    p_pcr_stream->state.i_pes_length - p_pes->i_dts;
                 if( i_frag < 0 )
                 {
                     /* Next stream */
@@ -1480,41 +1495,41 @@ static bool MuxStreams(sout_mux_t *p_mux )
     /* 3: mux PES into TS */
     BufferChainInit( &chain_ts );
     /* append PAT/PMT  -> FIXME with big pcr delay it won't have enough pat/pmt */
+    bool pat_was_previous = true; //This is to prevent unnecessary double PAT/PMT insertions
     GetPAT( p_mux, &chain_ts );
     GetPMT( p_mux, &chain_ts );
     int i_packet_pos = 0;
     i_packet_count += chain_ts.i_depth;
     /* msg_Dbg( p_mux, "estimated pck=%d", i_packet_count ); */
 
-    const mtime_t i_pcr_dts = p_pcr_stream->i_pes_dts;
+    const mtime_t i_pcr_dts = p_pcr_stream->state.i_pes_dts;
     for (;;)
     {
         int          i_stream = -1;
         mtime_t      i_dts = 0;
-        ts_stream_t  *p_stream;
+        sout_input_sys_t *p_stream;
 
         /* Select stream (lowest dts) */
         for (int i = 0; i < p_mux->i_nb_inputs; i++ )
         {
-            p_stream = (ts_stream_t*)p_mux->pp_inputs[i]->p_sys;
+            p_stream = (sout_input_sys_t*)p_mux->pp_inputs[i]->p_sys;
 
-            if( p_stream->i_pes_dts == 0 )
+            if( p_stream->state.i_pes_dts == 0 )
             {
                 continue;
             }
 
-            if( i_stream == -1 ||
-                p_stream->i_pes_dts < i_dts )
+            if( i_stream == -1 || p_stream->state.i_pes_dts < i_dts )
             {
                 i_stream = i;
-                i_dts = p_stream->i_pes_dts;
+                i_dts = p_stream->state.i_pes_dts;
             }
         }
         if( i_stream == -1 || i_dts > i_pcr_dts + i_pcr_length )
         {
             break;
         }
-        p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
+        p_stream = (sout_input_sys_t*)p_mux->pp_inputs[i_stream]->p_sys;
         sout_input_t *p_input = p_mux->pp_inputs[i_stream];
 
         /* do we need to issue pcr */
@@ -1538,6 +1553,24 @@ static bool MuxStreams(sout_mux_t *p_mux )
         }
         i_packet_pos++;
 
+        /* Write PAT/PMT before every keyframe if use-key-frames is enabled,
+         * this helps to do segmenting with livehttp-output so it can cut segment
+         * and start new one with pat,pmt,keyframe*/
+        if( ( p_sys->b_use_key_frames ) && ( p_ts->i_flags & BLOCK_FLAG_TYPE_I ) )
+        {
+            if( likely( !pat_was_previous ) )
+            {
+                int startcount = chain_ts.i_depth;
+                GetPAT( p_mux, &chain_ts );
+                GetPMT( p_mux, &chain_ts );
+                SetHeader( &chain_ts, startcount );
+                i_packet_count += (chain_ts.i_depth - startcount );
+            } else {
+                SetHeader( &chain_ts, 0); //We just inserted pat/pmt,so just flag it instead of adding new one
+            }
+        }
+        pat_was_previous = false;
+
         /* */
         BufferChainAppend( &chain_ts, p_ts );
     }
@@ -1587,8 +1620,8 @@ static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo )
     }
     else if( i_size > STD_PES_PAYLOAD )
     {
-        block_t *p_new = block_New( p_mux, STD_PES_PAYLOAD );
-        vlc_memcpy( p_new->p_buffer, p_data->p_buffer, STD_PES_PAYLOAD );
+        block_t *p_new = block_Alloc( STD_PES_PAYLOAD );
+        memcpy( p_new->p_buffer, p_data->p_buffer, STD_PES_PAYLOAD );
         p_new->i_pts = p_data->i_pts;
         p_new->i_dts = p_data->i_dts;
         p_new->i_length = p_data->i_length * STD_PES_PAYLOAD
@@ -1617,7 +1650,7 @@ static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo )
         }
         i_copy = __MIN( STD_PES_PAYLOAD - i_size, p_next->i_buffer );
 
-        vlc_memcpy( &p_data->p_buffer[i_size], p_next->p_buffer, i_copy );
+        memcpy( &p_data->p_buffer[i_size], p_next->p_buffer, i_copy );
         p_next->i_pts += p_next->i_length * i_copy / p_next->i_buffer;
         p_next->i_dts += p_next->i_length * i_copy / p_next->i_buffer;
         p_next->i_length -= p_next->i_length * i_copy / p_next->i_buffer;
@@ -1636,11 +1669,14 @@ static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo )
 
 static block_t *Add_ADTS( block_t *p_data, es_format_t *p_fmt )
 {
+#define ADTS_HEADER_SIZE 7 /* CRC needs 2 more bytes */
+
     uint8_t *p_extra = p_fmt->p_extra;
 
     if( !p_data || p_fmt->i_extra < 2 || !p_extra )
         return p_data; /* no data to construct the headers */
 
+    size_t frame_length = p_data->i_buffer + ADTS_HEADER_SIZE;
     int i_index = ( (p_extra[0] << 1) | (p_extra[1] >> 7) ) & 0x0f;
     int i_profile = (p_extra[0] >> 3) - 1; /* i_profile < 4 */
 
@@ -1649,29 +1685,15 @@ static block_t *Add_ADTS( block_t *p_data, es_format_t *p_fmt )
 
     int i_channels = (p_extra[i_index == 0x0f ? 4 : 1] >> 3) & 0x0f;
 
-#define ADTS_HEADER_SIZE 7 /* CRC needs 2 more bytes */
-
-
-    /* keep a copy in case block_Realloc() fails */
-    block_t *p_bak_block = block_Duplicate( p_data );
-    if( !p_bak_block ) /* OOM, block_Realloc() is likely to lose our block */
-        return p_data; /* the frame isn't correct but that's the best we have */
-
     block_t *p_new_block = block_Realloc( p_data, ADTS_HEADER_SIZE,
                                             p_data->i_buffer );
-    if( !p_new_block )
-        return p_bak_block; /* OOM, send the (incorrect) original frame */
-
-    block_Release( p_bak_block ); /* we don't need the copy anymore */
-
-
     uint8_t *p_buffer = p_new_block->p_buffer;
 
     /* fixed header */
     p_buffer[0] = 0xff;
     p_buffer[1] = 0xf1; /* 0xf0 | 0x00 | 0x00 | 0x01 */
     p_buffer[2] = (i_profile << 6) | ((i_index & 0x0f) << 2) | ((i_channels >> 2) & 0x01) ;
-    p_buffer[3] = (i_channels << 6) | ((p_data->i_buffer >> 11) & 0x03);
+    p_buffer[3] = (i_channels << 6) | ((frame_length >> 11) & 0x03);
 
     /* variable header (starts at last 2 bits of 4th byte) */
 
@@ -1679,8 +1701,8 @@ static block_t *Add_ADTS( block_t *p_data, es_format_t *p_fmt )
     /* XXX: We should check if it's CBR or VBR, but no known implementation
      * do that, and it's a pain to calculate this field */
 
-    p_buffer[4] = p_data->i_buffer >> 3;
-    p_buffer[5] = ((p_data->i_buffer & 0x07) << 5) | ((i_fullness >> 6) & 0x1f);
+    p_buffer[4] = frame_length >> 3;
+    p_buffer[5] = ((frame_length & 0x07) << 5) | ((i_fullness >> 6) & 0x1f);
     p_buffer[6] = ((i_fullness & 0x3f) << 2) /* | 0xfc */;
 
     return p_new_block;
@@ -1707,39 +1729,35 @@ static void TSSchedule( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
 
         BufferChainAppend( &new_chain, p_ts );
 
-        if( p_ts->i_dts &&
-            p_ts->i_dts + p_sys->i_dts_delay * 2/3 < i_new_dts )
+        if (!p_ts->i_dts || p_ts->i_dts + p_sys->i_dts_delay * 2/3 >= i_new_dts)
+            continue;
+
+        mtime_t i_max_diff = i_new_dts - p_ts->i_dts;
+        mtime_t i_cut_dts = p_ts->i_dts;
+
+        p_ts = BufferChainPeek( p_chain_ts );
+        i++;
+        i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
+        while ( p_ts != NULL && i_new_dts - p_ts->i_dts >= i_max_diff )
         {
-            mtime_t i_max_diff = i_new_dts - p_ts->i_dts;
-            mtime_t i_cut_dts = p_ts->i_dts;
+            p_ts = BufferChainGet( p_chain_ts );
+            i_max_diff = i_new_dts - p_ts->i_dts;
+            i_cut_dts = p_ts->i_dts;
+            BufferChainAppend( &new_chain, p_ts );
 
             p_ts = BufferChainPeek( p_chain_ts );
             i++;
             i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
-            while ( p_ts != NULL && i_new_dts - p_ts->i_dts >= i_max_diff )
-            {
-                p_ts = BufferChainGet( p_chain_ts );
-                i_max_diff = i_new_dts - p_ts->i_dts;
-                i_cut_dts = p_ts->i_dts;
-                BufferChainAppend( &new_chain, p_ts );
-
-                p_ts = BufferChainPeek( p_chain_ts );
-                i++;
-                i_new_dts = i_pcr_dts + i_pcr_length * i / i_packet_count;
-            }
-            msg_Dbg( p_mux, "adjusting rate at %"PRId64"/%"PRId64" (%d/%d)",
-                     i_cut_dts - i_pcr_dts, i_pcr_length, new_chain.i_depth,
-                     p_chain_ts->i_depth );
-            if ( new_chain.i_depth )
-                TSDate( p_mux, &new_chain,
-                        i_cut_dts - i_pcr_dts,
-                        i_pcr_dts );
-            if ( p_chain_ts->i_depth )
-                TSSchedule( p_mux,
-                            p_chain_ts, i_pcr_dts + i_pcr_length - i_cut_dts,
-                            i_cut_dts );
-            return;
         }
+        msg_Dbg( p_mux, "adjusting rate at %"PRId64"/%"PRId64" (%d/%d)",
+                 i_cut_dts - i_pcr_dts, i_pcr_length, new_chain.i_depth,
+                 p_chain_ts->i_depth );
+        if ( new_chain.i_depth )
+            TSDate( p_mux, &new_chain, i_cut_dts - i_pcr_dts, i_pcr_dts );
+        if ( p_chain_ts->i_depth )
+            TSSchedule( p_mux, p_chain_ts, i_pcr_dts + i_pcr_length - i_cut_dts,
+                        i_cut_dts );
+        return;
     }
 
     if ( new_chain.i_depth )
@@ -1783,7 +1801,7 @@ static void TSDate( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
         if( p_ts->i_flags & BLOCK_FLAG_CLOCK )
         {
             /* msg_Dbg( p_mux, "pcr=%lld ms", p_ts->i_dts / 1000 ); */
-            TSSetPCR( p_ts, p_ts->i_dts - p_sys->i_dts_delay );
+            TSSetPCR( p_ts, p_ts->i_dts - p_sys->i_dts_delay - p_sys->first_dts );
         }
         if( p_ts->i_flags & BLOCK_FLAG_SCRAMBLED )
         {
@@ -1799,22 +1817,22 @@ static void TSDate( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
     }
 }
 
-static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
+static block_t *TSNew( sout_mux_t *p_mux, sout_input_sys_t *p_stream,
                        bool b_pcr )
 {
     VLC_UNUSED(p_mux);
-    block_t *p_pes = p_stream->chain_pes.p_first;
+    block_t *p_pes = p_stream->state.chain_pes.p_first;
 
     bool b_new_pes = false;
     bool b_adaptation_field = false;
 
     int i_payload_max = 184 - ( b_pcr ? 8 : 0 );
 
-    if( p_stream->i_pes_used <= 0 )
+    if( p_stream->state.i_pes_used <= 0 )
     {
         b_new_pes = true;
     }
-    int i_payload = __MIN( (int)p_pes->i_buffer - p_stream->i_pes_used,
+    int i_payload = __MIN( (int)p_pes->i_buffer - p_stream->state.i_pes_used,
                        i_payload_max );
 
     if( b_pcr || i_payload < i_payload_max )
@@ -1822,7 +1840,7 @@ static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
         b_adaptation_field = true;
     }
 
-    block_t *p_ts = block_New( p_mux, 188 );
+    block_t *p_ts = block_Alloc( 188 );
 
     if (b_new_pes && !(p_pes->i_flags & BLOCK_FLAG_NO_KEYFRAME) && p_pes->i_flags & BLOCK_FLAG_TYPE_I)
     {
@@ -1833,13 +1851,13 @@ static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
 
     p_ts->p_buffer[0] = 0x47;
     p_ts->p_buffer[1] = ( b_new_pes ? 0x40 : 0x00 ) |
-        ( ( p_stream->i_pid >> 8 )&0x1f );
-    p_ts->p_buffer[2] = p_stream->i_pid & 0xff;
+        ( ( p_stream->ts.i_pid >> 8 )&0x1f );
+    p_ts->p_buffer[2] = p_stream->ts.i_pid & 0xff;
     p_ts->p_buffer[3] = ( b_adaptation_field ? 0x30 : 0x10 ) |
-        p_stream->i_continuity_counter;
+        p_stream->ts.i_continuity_counter;
 
-    p_stream->i_continuity_counter = (p_stream->i_continuity_counter+1)%16;
-    p_stream->b_discontinuity = p_pes->i_flags & BLOCK_FLAG_DISCONTINUITY;
+    p_stream->ts.i_continuity_counter = (p_stream->ts.i_continuity_counter+1)%16;
+    p_stream->ts.b_discontinuity = p_pes->i_flags & BLOCK_FLAG_DISCONTINUITY;
 
     if( b_adaptation_field )
     {
@@ -1849,67 +1867,54 @@ static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
             p_ts->i_flags |= BLOCK_FLAG_CLOCK;
 
             p_ts->p_buffer[4] = 7 + i_stuffing;
-            p_ts->p_buffer[5] = 0x10;   /* flags */
-            if( p_stream->b_discontinuity )
+            p_ts->p_buffer[5] = 1 << 4; /* PCR_flag */
+            if( p_stream->ts.b_discontinuity )
             {
                 p_ts->p_buffer[5] |= 0x80; /* flag TS dicontinuity */
-                p_stream->b_discontinuity = false;
-            }
-            p_ts->p_buffer[6] = 0 &0xff;
-            p_ts->p_buffer[7] = 0 &0xff;
-            p_ts->p_buffer[8] = 0 &0xff;
-            p_ts->p_buffer[9] = 0 &0xff;
-            p_ts->p_buffer[10]= ( 0 &0x80 ) | 0x7e;
-            p_ts->p_buffer[11]= 0;
-
-            for (int i = 12; i < 12 + i_stuffing; i++ )
-            {
-                p_ts->p_buffer[i] = 0xff;
+                p_stream->ts.b_discontinuity = false;
             }
+            memset(&p_ts->p_buffer[12], 0xff, i_stuffing);
         }
         else
         {
-            p_ts->p_buffer[4] = i_stuffing - 1;
-            if( i_stuffing > 1 )
+            p_ts->p_buffer[4] = --i_stuffing;
+            if( i_stuffing-- )
             {
-                p_ts->p_buffer[5] = 0x00;
-                for (int i = 6; i < 6 + i_stuffing - 2; i++ )
-                {
-                    p_ts->p_buffer[i] = 0xff;
-                }
+                p_ts->p_buffer[5] = 0;
+                memset(&p_ts->p_buffer[6], 0xff, i_stuffing);
             }
         }
     }
 
     /* copy payload */
     memcpy( &p_ts->p_buffer[188 - i_payload],
-            &p_pes->p_buffer[p_stream->i_pes_used], i_payload );
+            &p_pes->p_buffer[p_stream->state.i_pes_used], i_payload );
 
-    p_stream->i_pes_used += i_payload;
-    p_stream->i_pes_dts = p_pes->i_dts + p_pes->i_length *
-        p_stream->i_pes_used / p_pes->i_buffer;
-    p_stream->i_pes_length -= p_pes->i_length * i_payload / p_pes->i_buffer;
+    p_stream->state.i_pes_used += i_payload;
+    p_stream->state.i_pes_dts = p_pes->i_dts + p_pes->i_length *
+        p_stream->state.i_pes_used / p_pes->i_buffer;
+    p_stream->state.i_pes_length -= p_pes->i_length * i_payload / p_pes->i_buffer;
 
-    if( p_stream->i_pes_used >= (int)p_pes->i_buffer )
+    if( p_stream->state.i_pes_used >= (int)p_pes->i_buffer )
     {
-        block_Release(BufferChainGet( &p_stream->chain_pes ));
+        block_Release(BufferChainGet( &p_stream->state.chain_pes ));
 
-        p_pes = p_stream->chain_pes.p_first;
-        p_stream->i_pes_length = 0;
+        p_pes = p_stream->state.chain_pes.p_first;
+        p_stream->state.i_pes_length = 0;
         if( p_pes )
         {
-            p_stream->i_pes_dts = p_pes->i_dts;
+            p_stream->state.i_pes_dts = p_pes->i_dts;
             while( p_pes )
             {
-                p_stream->i_pes_length += p_pes->i_length;
+                p_stream->state.i_pes_length += p_pes->i_length;
                 p_pes = p_pes->p_next;
             }
         }
         else
         {
-            p_stream->i_pes_dts = 0;
+            p_stream->state.i_pes_dts = 0;
         }
-        p_stream->i_pes_used = 0;
+        p_stream->state.i_pes_used = 0;
     }
 
     return p_ts;
@@ -1923,490 +1928,48 @@ static void TSSetPCR( block_t *p_ts, mtime_t i_dts )
     p_ts->p_buffer[7]  = ( i_pcr >> 17 )&0xff;
     p_ts->p_buffer[8]  = ( i_pcr >> 9  )&0xff;
     p_ts->p_buffer[9]  = ( i_pcr >> 1  )&0xff;
-    p_ts->p_buffer[10]|= ( i_pcr << 7  )&0x80;
+    p_ts->p_buffer[10] = ( i_pcr << 7  )&0x80;
+    p_ts->p_buffer[10] |= 0x7e;
+    p_ts->p_buffer[11] = 0; /* we don't set PCR extension */
 }
 
-static void PEStoTS( sout_instance_t *p_sout,
-                     sout_buffer_chain_t *c, block_t *p_pes,
-                     ts_stream_t *p_stream )
-{
-    VLC_UNUSED(p_sout);
-    /* get PES total size */
-    uint8_t *p_data = p_pes->p_buffer;
-    int      i_size = p_pes->i_buffer;
-
-    bool    b_new_pes = true;
-
-    for (;;)
-    {
-        /* write header
-         * 8b   0x47    sync byte
-         * 1b           transport_error_indicator
-         * 1b           payload_unit_start
-         * 1b           transport_priority
-         * 13b          pid
-         * 2b           transport_scrambling_control
-         * 2b           if adaptation_field 0x03 else 0x01
-         * 4b           continuity_counter
-         */
-
-        int i_copy = __MIN( i_size, 184 );
-        bool b_adaptation_field = i_size < 184;
-        block_t *p_ts = block_New( p_sout, 188 );
-
-        p_ts->p_buffer[0] = 0x47;
-        p_ts->p_buffer[1] = ( b_new_pes ? 0x40 : 0x00 )|
-                            ( ( p_stream->i_pid >> 8 )&0x1f );
-        p_ts->p_buffer[2] = p_stream->i_pid & 0xff;
-        p_ts->p_buffer[3] = ( b_adaptation_field ? 0x30 : 0x10 )|
-                            p_stream->i_continuity_counter;
-
-        b_new_pes = false;
-        p_stream->i_continuity_counter = (p_stream->i_continuity_counter+1)%16;
-
-        if( b_adaptation_field )
-        {
-            int i_stuffing = 184 - i_copy;
-
-            p_ts->p_buffer[4] = i_stuffing - 1;
-            if( i_stuffing > 1 )
-            {
-                p_ts->p_buffer[5] = 0x00;
-                if( p_stream->b_discontinuity )
-                {
-                    p_ts->p_buffer[5] |= 0x80;
-                    p_stream->b_discontinuity = false;
-                }
-                for (int i = 6; i < 6 + i_stuffing - 2; i++ )
-                {
-                    p_ts->p_buffer[i] = 0xff;
-                }
-            }
-        }
-        /* copy payload */
-        memcpy( &p_ts->p_buffer[188 - i_copy], p_data, i_copy );
-        p_data += i_copy;
-        i_size -= i_copy;
-
-        BufferChainAppend( c, p_ts );
-
-        if( i_size <= 0 )
-        {
-            block_t *p_next = p_pes->p_next;
-
-            p_pes->p_next = NULL;
-            block_Release( p_pes );
-            if( p_next == NULL )
-                return;
-
-            b_new_pes = true;
-            p_pes = p_next;
-            i_size = p_pes->i_buffer;
-            p_data = p_pes->p_buffer;
-        }
-    }
-}
-
-static block_t *WritePSISection( sout_instance_t *p_sout,
-                                       dvbpsi_psi_section_t* p_section )
-{
-    VLC_UNUSED(p_sout);
-    block_t   *p_psi, *p_first = NULL;
-
-    while( p_section )
-    {
-        int i_size = (uint32_t)(p_section->p_payload_end - p_section->p_data) +
-                  (p_section->b_syntax_indicator ? 4 : 0);
-
-        p_psi = block_New( p_sout, i_size + 1 );
-        p_psi->i_pts = 0;
-        p_psi->i_dts = 0;
-        p_psi->i_length = 0;
-        p_psi->i_buffer = i_size + 1;
-
-        p_psi->p_buffer[0] = 0; /* pointer */
-        memcpy( p_psi->p_buffer + 1,
-                p_section->p_data,
-                i_size );
-
-        block_ChainAppend( &p_first, p_psi );
-
-        p_section = p_section->p_next;
-    }
-
-    return( p_first );
-}
-
-static void GetPAT( sout_mux_t *p_mux,
-                    sout_buffer_chain_t *c )
+void GetPAT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
 {
     sout_mux_sys_t       *p_sys = p_mux->p_sys;
-    block_t              *p_pat;
-    dvbpsi_pat_t         pat;
-    dvbpsi_psi_section_t *p_section;
-
-    dvbpsi_InitPAT( &pat, p_sys->i_tsid, p_sys->i_pat_version_number,
-                    1 );      /* b_current_next */
-    /* add all programs */
-    for (int i = 0; i < p_sys->i_num_pmt; i++ )
-        dvbpsi_PATAddProgram( &pat, p_sys->i_pmt_program_number[i],
-                              p_sys->pmt[i].i_pid );
-
-    p_section = dvbpsi_GenPATSections( &pat, 0 /* max program per section */ );
-
-    p_pat = WritePSISection( p_mux->p_sout, p_section );
-
-    PEStoTS( p_mux->p_sout, c, p_pat, &p_sys->pat );
-
-    dvbpsi_DeletePSISections( p_section );
-    dvbpsi_EmptyPAT( &pat );
-}
-
-static uint32_t GetDescriptorLength24b( int i_length )
-{
-    uint32_t i_l1, i_l2, i_l3;
-
-    i_l1 = i_length&0x7f;
-    i_l2 = ( i_length >> 7 )&0x7f;
-    i_l3 = ( i_length >> 14 )&0x7f;
-
-    return( 0x808000 | ( i_l3 << 16 ) | ( i_l2 << 8 ) | i_l1 );
-}
-
-static void GetPMTmpeg4(sout_mux_t *p_mux)
-{
-    sout_mux_sys_t *p_sys = p_mux->p_sys;
-    uint8_t iod[4096];
-    bits_buffer_t bits, bits_fix_IOD;
-
-    /* Make valgrind happy : it works at byte level not bit one so
-     * bit_write confuse it (but DON'T CHANGE the way that bit_write is
-     * working (needed when fixing some bits) */
-    memset( iod, 0, 4096 );
-
-    bits_initwrite( &bits, 4096, iod );
-    /* IOD_label_scope */
-    bits_write( &bits, 8,   0x11 );
-    /* IOD_label */
-    bits_write( &bits, 8,   0x01 );
-    /* InitialObjectDescriptor */
-    bits_align( &bits );
-    bits_write( &bits, 8,   0x02 );     /* tag */
-    bits_fix_IOD = bits;    /* save states to fix length later */
-    bits_write( &bits, 24,
-        GetDescriptorLength24b( 0 ) );  /* variable length (fixed later) */
-    bits_write( &bits, 10,  0x01 );     /* ObjectDescriptorID */
-    bits_write( &bits, 1,   0x00 );     /* URL Flag */
-    bits_write( &bits, 1,   0x00 );     /* includeInlineProfileLevelFlag */
-    bits_write( &bits, 4,   0x0f );     /* reserved */
-    bits_write( &bits, 8,   0xff );     /* ODProfile (no ODcapability ) */
-    bits_write( &bits, 8,   0xff );     /* sceneProfile */
-    bits_write( &bits, 8,   0xfe );     /* audioProfile (unspecified) */
-    bits_write( &bits, 8,   0xfe );     /* visualProfile( // ) */
-    bits_write( &bits, 8,   0xff );     /* graphicProfile (no ) */
-    for (int i_stream = 0; i_stream < p_mux->i_nb_inputs; i_stream++ )
-    {
-        ts_stream_t *p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
-
-        if( p_stream->i_stream_id != 0xfa && p_stream->i_stream_id != 0xfb &&
-            p_stream->i_stream_id != 0xfe )
-            continue;
-
-        bits_buffer_t bits_fix_ESDescr, bits_fix_Decoder;
-        /* ES descriptor */
-        bits_align( &bits );
-        bits_write( &bits, 8,   0x03 );     /* ES_DescrTag */
-        bits_fix_ESDescr = bits;
-        bits_write( &bits, 24,
-                    GetDescriptorLength24b( 0 ) ); /* variable size */
-        bits_write( &bits, 16,  p_stream->i_es_id );
-        bits_write( &bits, 1,   0x00 );     /* streamDependency */
-        bits_write( &bits, 1,   0x00 );     /* URL Flag */
-        bits_write( &bits, 1,   0x00 );     /* OCRStreamFlag */
-        bits_write( &bits, 5,   0x1f );     /* streamPriority */
-
-        /* DecoderConfigDesciptor */
-        bits_align( &bits );
-        bits_write( &bits, 8,   0x04 ); /* DecoderConfigDescrTag */
-        bits_fix_Decoder = bits;
-        bits_write( &bits, 24,  GetDescriptorLength24b( 0 ) );
-        if( p_stream->i_stream_type == 0x10 )
-        {
-            bits_write( &bits, 8, 0x20 );   /* Visual 14496-2 */
-            bits_write( &bits, 6, 0x04 );   /* VisualStream */
-        }
-        else if( p_stream->i_stream_type == 0x1b )
-        {
-            bits_write( &bits, 8, 0x21 );   /* Visual 14496-2 */
-            bits_write( &bits, 6, 0x04 );   /* VisualStream */
-        }
-        else if( p_stream->i_stream_type == 0x11 ||
-                 p_stream->i_stream_type == 0x0f )
-        {
-            bits_write( &bits, 8, 0x40 );   /* Audio 14496-3 */
-            bits_write( &bits, 6, 0x05 );   /* AudioStream */
-        }
-        else if( p_stream->i_stream_type == 0x12 &&
-                 p_stream->i_codec == VLC_CODEC_SUBT )
-        {
-            bits_write( &bits, 8, 0x0B );   /* Text Stream */
-            bits_write( &bits, 6, 0x04 );   /* VisualStream */
-        }
-        else
-        {
-            bits_write( &bits, 8, 0x00 );
-            bits_write( &bits, 6, 0x00 );
-
-            msg_Err( p_mux->p_sout,"Unsupported stream_type => "
-                     "broken IOD" );
-        }
-        bits_write( &bits, 1,   0x00 );         /* UpStream */
-        bits_write( &bits, 1,   0x01 );         /* reserved */
-        bits_write( &bits, 24,  1024 * 1024 );  /* bufferSizeDB */
-        bits_write( &bits, 32,  0x7fffffff );   /* maxBitrate */
-        bits_write( &bits, 32,  0 );            /* avgBitrate */
-
-        if( p_stream->i_extra > 0 )
-        {
-            /* DecoderSpecificInfo */
-            bits_align( &bits );
-            bits_write( &bits, 8,   0x05 ); /* tag */
-            bits_write( &bits, 24, GetDescriptorLength24b(
-                        p_stream->i_extra ) );
-            for (int i = 0; i < p_stream->i_extra; i++ )
-            {
-                bits_write( &bits, 8,
-                    ((uint8_t*)p_stream->p_extra)[i] );
-            }
-        }
-        /* fix Decoder length */
-        bits_write( &bits_fix_Decoder, 24,
-                    GetDescriptorLength24b( bits.i_data -
-                    bits_fix_Decoder.i_data - 3 ) );
-
-        /* SLConfigDescriptor : predefined (0x01) */
-        bits_align( &bits );
-        bits_write( &bits, 8,   0x06 ); /* tag */
-        bits_write( &bits, 24,  GetDescriptorLength24b( 8 ) );
-        bits_write( &bits, 8,   0x01 );/* predefined */
-        bits_write( &bits, 1,   0 );   /* durationFlag */
-        bits_write( &bits, 32,  0 );   /* OCRResolution */
-        bits_write( &bits, 8,   0 );   /* OCRLength */
-        bits_write( &bits, 8,   0 );   /* InstantBitrateLength */
-        bits_align( &bits );
-
-        /* fix ESDescr length */
-        bits_write( &bits_fix_ESDescr, 24,
-                    GetDescriptorLength24b( bits.i_data -
-                    bits_fix_ESDescr.i_data - 3 ) );
-    }
-    bits_align( &bits );
-    /* fix IOD length */
-    bits_write( &bits_fix_IOD, 24,
-                GetDescriptorLength24b(bits.i_data - bits_fix_IOD.i_data - 3 ));
 
-    dvbpsi_PMTAddDescriptor(&p_sys->dvbpmt[0], 0x1d, bits.i_data, bits.p_data);
+    BuildPAT( DVBPSI_HANDLE_PARAM(p_sys->p_dvbpsi)
+              c, (PEStoTSCallback)BufferChainAppend,
+              p_sys->i_tsid, p_sys->i_pat_version_number,
+              &p_sys->pat,
+              p_sys->i_num_pmt, p_sys->pmt, p_sys->i_pmt_program_number );
 }
 
 static void GetPMT( sout_mux_t *p_mux, sout_buffer_chain_t *c )
 {
     sout_mux_sys_t *p_sys = p_mux->p_sys;
-
-    if( p_sys->dvbpmt == NULL )
-    {
-        p_sys->dvbpmt = malloc( p_sys->i_num_pmt * sizeof(dvbpsi_pmt_t) );
-        if( p_sys->dvbpmt == NULL )
-            return;
-    }
-
-    dvbpsi_sdt_t sdt;
-    if( p_sys->b_sdt )
-        dvbpsi_InitSDT( &sdt, p_sys->i_tsid, 1, 1, p_sys->i_netid );
-
-    for (int i = 0; i < p_sys->i_num_pmt; i++ )
-    {
-        dvbpsi_InitPMT( &p_sys->dvbpmt[i],
-                        p_sys->i_pmt_program_number[i],   /* program number */
-                        p_sys->i_pmt_version_number,
-                        1,      /* b_current_next */
-                        p_sys->i_pcr_pid );
-
-        if( !p_sys->b_sdt )
-            continue;
-
-        dvbpsi_sdt_service_t *p_service = dvbpsi_SDTAddService( &sdt,
-            p_sys->i_pmt_program_number[i],  /* service id */
-            0,         /* eit schedule */
-            0,         /* eit present */
-            4,         /* running status ("4=RUNNING") */
-            0 );       /* free ca */
-
-        const char *psz_sdtprov = p_sys->sdt_descriptors[i].psz_provider;
-        const char *psz_sdtserv = p_sys->sdt_descriptors[i].psz_service_name;
-
-        if( !psz_sdtprov || !psz_sdtserv )
-            continue;
-        size_t provlen = VLC_CLIP(strlen(psz_sdtprov), 0, 255);
-        size_t servlen = VLC_CLIP(strlen(psz_sdtserv), 0, 255);
-
-        uint8_t psz_sdt_desc[3 + provlen + servlen];
-
-        psz_sdt_desc[0] = 0x01; /* digital television service */
-
-        /* service provider name length */
-        psz_sdt_desc[1] = (char)provlen;
-        memcpy( &psz_sdt_desc[2], psz_sdtprov, provlen );
-
-        /* service name length */
-        psz_sdt_desc[ 2 + provlen ] = (char)servlen;
-        memcpy( &psz_sdt_desc[3+provlen], psz_sdtserv, servlen );
-
-        dvbpsi_SDTServiceAddDescriptor( p_service, 0x48,
-                3 + provlen + servlen, psz_sdt_desc );
-    }
-
-    if( p_sys->i_mpeg4_streams > 0 )
-        GetPMTmpeg4(p_mux);
+    pes_mapped_stream_t mappeds[p_mux->i_nb_inputs];
 
     for (int i_stream = 0; i_stream < p_mux->i_nb_inputs; i_stream++ )
     {
-        ts_stream_t *p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
+        sout_input_t *p_input = p_mux->pp_inputs[i_stream];
+        sout_input_sys_t *p_stream = (sout_input_sys_t*)p_input->p_sys;
 
-        int i_pidinput = p_mux->pp_inputs[i_stream]->p_fmt->i_id;
+        int i_pidinput = p_input->p_fmt->i_id;
         pmt_map_t *p_usepid = bsearch( &i_pidinput, p_sys->pmtmap,
-                    p_sys->i_pmtslots, sizeof(pmt_map_t), intcompare );
-
-        dvbpsi_pmt_es_t *p_es;
-        if( p_usepid != NULL )
-            p_es = dvbpsi_PMTAddES( &p_sys->dvbpmt[p_usepid->i_prog],
-                    p_stream->i_stream_type, p_stream->i_pid );
-        else
-            /* If there's an error somewhere, dump it to the first pmt */
-            p_es = dvbpsi_PMTAddES( &p_sys->dvbpmt[0], p_stream->i_stream_type,
-                                    p_stream->i_pid );
-
-        if( p_stream->i_stream_id == 0xfa || p_stream->i_stream_id == 0xfb )
-        {
-            uint8_t     es_id[2];
-
-            /* SL descriptor */
-            es_id[0] = (p_stream->i_es_id >> 8)&0xff;
-            es_id[1] = (p_stream->i_es_id)&0xff;
-            dvbpsi_PMTESAddDescriptor( p_es, 0x1f, 2, es_id );
-        }
-        else if( p_stream->i_stream_type == 0xa0 )
-        {
-            uint8_t data[512];
-            int i_extra = __MIN( p_stream->i_extra, 502 );
-
-            /* private DIV3 descripor */
-            memcpy( &data[0], &p_stream->i_bih_codec, 4 );
-            data[4] = ( p_stream->i_bih_width >> 8 )&0xff;
-            data[5] = ( p_stream->i_bih_width      )&0xff;
-            data[6] = ( p_stream->i_bih_height>> 8 )&0xff;
-            data[7] = ( p_stream->i_bih_height     )&0xff;
-            data[8] = ( i_extra >> 8 )&0xff;
-            data[9] = ( i_extra      )&0xff;
-            if( i_extra > 0 )
-            {
-                memcpy( &data[10], p_stream->p_extra, i_extra );
-            }
-
-            /* 0xa0 is private */
-            dvbpsi_PMTESAddDescriptor( p_es, 0xa0, i_extra + 10, data );
-        }
-        else if( p_stream->i_stream_type == 0x81 )
-        {
-            uint8_t format[4] = { 'A', 'C', '-', '3'};
-
-            /* "registration" descriptor : "AC-3" */
-            dvbpsi_PMTESAddDescriptor( p_es, 0x05, 4, format );
-        }
-        else if( p_stream->i_codec == VLC_CODEC_DIRAC )
-        {
-            /* Dirac registration descriptor */
-
-            uint8_t data[4] = { 'd', 'r', 'a', 'c' };
-            dvbpsi_PMTESAddDescriptor( p_es, 0x05, 4, data );
-        }
-        else if( p_stream->i_codec == VLC_CODEC_DTS )
-        {
-            /* DTS registration descriptor (ETSI TS 101 154 Annex F) */
-
-            /* DTS format identifier, frame size 1024 - FIXME */
-            uint8_t data[4] = { 'D', 'T', 'S', '2' };
-            dvbpsi_PMTESAddDescriptor( p_es, 0x05, 4, data );
-        }
-        else if( p_stream->i_codec == VLC_CODEC_EAC3 )
-        {
-            uint8_t data[1] = { 0x00 };
-            dvbpsi_PMTESAddDescriptor( p_es, 0x7a, 1, data );
-        }
-        else if( p_stream->i_codec == VLC_CODEC_TELETEXT )
-        {
-            if( p_stream->i_extra )
-            {
-                dvbpsi_PMTESAddDescriptor( p_es, 0x56,
-                                           p_stream->i_extra,
-                                           p_stream->p_extra );
-            }
-            continue;
-        }
-        else if( p_stream->i_codec == VLC_CODEC_DVBS )
-        {
-            /* DVB subtitles */
-            if( p_stream->i_extra )
-            {
-                /* pass-through from the TS demux */
-                dvbpsi_PMTESAddDescriptor( p_es, 0x59,
-                                           p_stream->i_extra,
-                                           p_stream->p_extra );
-            }
-            else
-            {
-                /* from the dvbsub transcoder */
-                dvbpsi_subtitling_dr_t descr;
-                dvbpsi_subtitle_t sub;
-                dvbpsi_descriptor_t *p_descr;
-
-                memcpy( sub.i_iso6392_language_code, p_stream->lang, 3 );
-                sub.i_subtitling_type = 0x10; /* no aspect-ratio criticality */
-                sub.i_composition_page_id = p_stream->i_es_id & 0xFF;
-                sub.i_ancillary_page_id = p_stream->i_es_id >> 16;
-
-                descr.i_subtitles_number = 1;
-                descr.p_subtitle[0] = sub;
-
-                p_descr = dvbpsi_GenSubtitlingDr( &descr, 0 );
-                /* Work around bug in old libdvbpsi */ p_descr->i_length = 8;
-                dvbpsi_PMTESAddDescriptor( p_es, p_descr->i_tag,
-                                           p_descr->i_length, p_descr->p_data );
-            }
-            continue;
-        }
-
-        if( p_stream->i_langs )
-        {
-            dvbpsi_PMTESAddDescriptor( p_es, 0x0a, 4*p_stream->i_langs,
-                p_stream->lang);
-        }
-    }
-
-    for (int i = 0; i < p_sys->i_num_pmt; i++ )
-    {
-        dvbpsi_psi_section_t *sect = dvbpsi_GenPMTSections( &p_sys->dvbpmt[i] );
-        block_t *pmt = WritePSISection( p_mux->p_sout, sect );
-        PEStoTS( p_mux->p_sout, c, pmt, &p_sys->pmt[i] );
-        dvbpsi_DeletePSISections(sect);
-        dvbpsi_EmptyPMT( &p_sys->dvbpmt[i] );
-    }
-
-    if( p_sys->b_sdt )
-    {
-        dvbpsi_psi_section_t *sect = dvbpsi_GenSDTSections( &sdt );
-        block_t *p_sdt = WritePSISection( p_mux->p_sout, sect );
-        PEStoTS( p_mux->p_sout, c, p_sdt, &p_sys->sdt );
-        dvbpsi_DeletePSISections( sect );
-        dvbpsi_EmptySDT( &sdt );
-    }
+                                       p_sys->i_pmtslots, sizeof(pmt_map_t), intcompare );
+
+        /* If there's an error somewhere, dump it to the first pmt */
+        mappeds[i_stream].i_mapped_prog = p_usepid ? p_usepid->i_prog : 0;
+        mappeds[i_stream].fmt = p_input->p_fmt;
+        mappeds[i_stream].pes = &p_stream->pes;
+        mappeds[i_stream].ts = &p_stream->ts;
+    }
+
+    BuildPMT( DVBPSI_HANDLE_PARAM(p_sys->p_dvbpsi) VLC_OBJECT(p_mux),
+              c, (PEStoTSCallback)BufferChainAppend,
+              p_sys->i_tsid, p_sys->i_pmt_version_number,
+              p_sys->i_pcr_pid,
+              &p_sys->sdt,
+              p_sys->i_num_pmt, p_sys->pmt, p_sys->i_pmt_program_number,
+              p_mux->i_nb_inputs, mappeds );
 }