]> git.sesse.net Git - vlc/blobdiff - modules/demux/mp4/mp4.c
Tools: Fix SF URLs
[vlc] / modules / demux / mp4 / mp4.c
index 45ee4cdf76c2d1a0f04e3da3a5e93d36ecb91c9e..42c718d9f346c126ab73fc9c3d786ec173c65b73 100644 (file)
 # include "config.h"
 #endif
 
-#include <vlc_common.h>
+#include "mp4.h"
+
 #include <vlc_plugin.h>
 
 #include <vlc_demux.h>
 #include <vlc_charset.h>                           /* EnsureUTF8 */
 #include <vlc_meta.h>                              /* vlc_meta_t, vlc_meta_ */
 #include <vlc_input.h>
+#include <vlc_aout.h>
 #include <assert.h>
 
-#include "libmp4.h"
 #include "id3genres.h"                             /* for ATOM_gnre */
 
 /*****************************************************************************
@@ -61,6 +62,7 @@ vlc_module_end ()
 static int   Demux   ( demux_t * );
 static int   DemuxRef( demux_t *p_demux ){ (void)p_demux; return 0;}
 static int   DemuxFrg( demux_t * );
+static int   DemuxAsLeaf( demux_t * );
 static int   Seek    ( demux_t *, mtime_t );
 static int   Control ( demux_t *, int, va_list );
 
@@ -70,15 +72,32 @@ struct demux_sys_t
 
     mtime_t      i_pcr;
 
+    uint64_t     i_overall_duration; /* Full duration, including all fragments */
     uint64_t     i_time;         /* time position of the presentation
                                   * in movie timescale */
-    uint64_t     i_timescale;    /* movie time scale */
+    uint32_t     i_timescale;    /* movie time scale */
     uint64_t     i_duration;     /* movie duration */
     unsigned int i_tracks;       /* number of tracks */
     mp4_track_t  *track;         /* array of track */
     float        f_fps;          /* number of frame per seconds */
 
     bool         b_fragmented;   /* fMP4 */
+    bool         b_seekable;
+    bool         b_fastseekable;
+    bool         b_seekmode;
+    bool         b_smooth;       /* Is it Smooth Streaming? */
+
+    bool            b_index_probed;
+    bool            b_fragments_probed;
+    mp4_fragment_t  moovfragment; /* moov */
+    mp4_fragment_t *p_fragments;  /* known fragments (moof following moov) */
+
+    struct
+    {
+        mp4_fragment_t *p_fragment;
+        uint32_t        i_current_box_type;
+        uint32_t        i_mdatbytesleft;
+    } context;
 
     /* */
     MP4_Box_t    *p_tref_chap;
@@ -87,6 +106,8 @@ struct demux_sys_t
     input_title_t *p_title;
 };
 
+#define BOXDATA(type) type->data.type
+
 /*****************************************************************************
  * Declaration of local function
  *****************************************************************************/
@@ -94,18 +115,94 @@ static void MP4_TrackCreate ( demux_t *, mp4_track_t *, MP4_Box_t  *, bool b_for
 static int MP4_frg_TrackCreate( demux_t *, mp4_track_t *, MP4_Box_t *);
 static void MP4_TrackDestroy(  mp4_track_t * );
 
+static block_t * MP4_Block_Read( demux_t *, const mp4_track_t *, int );
+static void MP4_Block_Send( demux_t *, mp4_track_t *, block_t * );
+
 static int  MP4_TrackSelect ( demux_t *, mp4_track_t *, mtime_t );
 static void MP4_TrackUnselect(demux_t *, mp4_track_t * );
 
 static int  MP4_TrackSeek   ( demux_t *, mp4_track_t *, mtime_t );
 
 static uint64_t MP4_TrackGetPos    ( mp4_track_t * );
-static int      MP4_TrackSampleSize( mp4_track_t *, int * );
-static int      MP4_TrackNextSample( demux_t *, mp4_track_t *, int );
+static uint32_t MP4_TrackGetReadSize( mp4_track_t *, uint32_t * );
+static int      MP4_TrackNextSample( demux_t *, mp4_track_t *, uint32_t );
 static void     MP4_TrackSetELST( demux_t *, mp4_track_t *, int64_t );
 
 static void     MP4_UpdateSeekpoint( demux_t * );
-static const char *MP4_ConvertMacCode( uint16_t );
+
+static MP4_Box_t * MP4_GetTrexByTrackID( MP4_Box_t *p_moov, const uint32_t i_id );
+
+static bool AddFragment( demux_t *p_demux, MP4_Box_t *p_moox );
+static int  ProbeFragments( demux_t *p_demux, bool b_force );
+static int  ProbeIndex( demux_t *p_demux );
+static mp4_fragment_t *GetFragmentByPos( demux_t *p_demux, uint64_t i_pos, bool b_exact );
+static mp4_fragment_t *GetFragmentByTime( demux_t *p_demux, const mtime_t i_time );
+
+static int LeafIndexGetMoofPosByTime( demux_t *p_demux, const mtime_t i_target_time,
+                                      uint64_t *pi_pos, mtime_t *pi_mooftime );
+static mtime_t LeafGetFragmentTimeOffset( demux_t *p_demux, mp4_fragment_t * );
+static int LeafGetTrackAndChunkByMOOVPos( demux_t *p_demux, uint64_t *pi_pos,
+                                      mp4_track_t **pp_tk, unsigned int *pi_chunk );
+static int LeafMapTrafTrunContextes( demux_t *p_demux, MP4_Box_t *p_moof );
+
+/* Helpers */
+
+static uint32_t stream_ReadU32( stream_t *s, void *p_read, uint32_t i_toread )
+{
+    uint32_t i_return = 0;
+    if ( i_toread > INT32_MAX )
+    {
+        i_return = stream_Read( s, p_read, INT32_MAX );
+        if ( i_return < INT32_MAX )
+            return i_return;
+        else
+            i_toread -= INT32_MAX;
+    }
+    i_return += stream_Read( s, (uint8_t *)p_read + i_return, (int32_t) i_toread );
+    return i_return;
+}
+
+static bool MP4_stream_Tell( stream_t *s, uint64_t *pi_pos )
+{
+    int64_t i_pos = stream_Tell( s );
+    if ( i_pos < 0 )
+        return false;
+    else
+    {
+        *pi_pos = (uint64_t) i_pos;
+        return true;
+    }
+}
+
+static MP4_Box_t * MP4_GetTrexByTrackID( MP4_Box_t *p_moov, const uint32_t i_id )
+{
+    MP4_Box_t *p_trex = MP4_BoxGet( p_moov, "mvex/trex" );
+    while( p_trex )
+    {
+        if ( p_trex->i_type == ATOM_trex &&
+             BOXDATA(p_trex) && BOXDATA(p_trex)->i_track_ID == i_id )
+                break;
+        else
+            p_trex = p_trex->p_next;
+    }
+    return p_trex;
+}
+
+static MP4_Box_t * MP4_GetTrakByTrackID( MP4_Box_t *p_moov, const uint32_t i_id )
+{
+    MP4_Box_t *p_trak = MP4_BoxGet( p_moov, "trak" );
+    MP4_Box_t *p_tkhd;
+    while( p_trak )
+    {
+        if( p_trak->i_type == ATOM_trak &&
+            (p_tkhd = MP4_BoxGet( p_trak, "tkhd" )) && BOXDATA(p_tkhd) &&
+            BOXDATA(p_tkhd)->i_track_ID == i_id )
+                break;
+        else
+            p_trak = p_trak->p_next;
+    }
+    return p_trak;
+}
 
 /* Return time in microsecond of a track */
 static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
@@ -141,7 +238,7 @@ static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
     if( p_track->p_elst )
     {
         demux_sys_t         *p_sys = p_demux->p_sys;
-        MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
+        MP4_Box_data_elst_t *elst = p_track->BOXDATA(p_elst);
 
         /* convert to offset */
         if( ( elst->i_media_rate_integer[p_track->i_elst] > 0 ||
@@ -158,7 +255,7 @@ static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
         if( i_dts < 0 ) i_dts = 0;
     }
 
-    return INT64_C(1000000) * i_dts / p_track->i_timescale;
+    return CLOCK_FREQ * i_dts / p_track->i_timescale;
 }
 
 static inline int64_t MP4_TrackGetPTSDelta( demux_t *p_demux, mp4_track_t *p_track )
@@ -179,7 +276,7 @@ static inline int64_t MP4_TrackGetPTSDelta( demux_t *p_demux, mp4_track_t *p_tra
     for( i_index = 0;; i_index++ )
     {
         if( i_sample < ck->p_sample_count_pts[i_index] )
-            return ck->p_sample_offset_pts[i_index] * INT64_C(1000000) /
+            return ck->p_sample_offset_pts[i_index] * CLOCK_FREQ /
                    (int64_t)p_track->i_timescale;
 
         i_sample -= ck->p_sample_count_pts[i_index];
@@ -188,16 +285,16 @@ static inline int64_t MP4_TrackGetPTSDelta( demux_t *p_demux, mp4_track_t *p_tra
 
 static inline int64_t MP4_GetMoviePTS(demux_sys_t *p_sys )
 {
-    return INT64_C(1000000) * p_sys->i_time / p_sys->i_timescale;
+    return CLOCK_FREQ * p_sys->i_time / p_sys->i_timescale;
 }
 
 static void LoadChapter( demux_t  *p_demux );
 
-static int LoadInitFrag( demux_t *p_demux, const bool b_smooth )
+static int LoadInitFrag( demux_t *p_demux )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
 
-    if( b_smooth ) /* Smooth Streaming */
+    if( p_sys->b_smooth ) /* Smooth Streaming */
     {
         if( ( p_sys->p_root = MP4_BoxGetSmooBox( p_demux->s ) ) == NULL )
         {
@@ -213,13 +310,17 @@ static int LoadInitFrag( demux_t *p_demux, const bool b_smooth )
             for( int i = 0; i < 3; i++ )
             {
                 MP4_Box_t *p_stra = MP4_BoxGet( p_smoo, "uuid[%d]", i );
-                if( p_stra && p_stra->data.p_stra->i_track_ID )
+                if( p_stra && BOXDATA(p_stra) && BOXDATA(p_stra)->i_track_ID )
                     p_sys->i_tracks++;
                 /* Get timescale and duration of the video track; */
                 if( p_sys->i_timescale == 0 )
                 {
-                    p_sys->i_timescale = p_stra->data.p_stra->i_timescale;
-                    p_sys->i_duration = p_stra->data.p_stra->i_duration;
+                    if ( p_stra && BOXDATA(p_stra) )
+                    {
+                        p_sys->i_timescale = BOXDATA(p_stra)->i_timescale;
+                        p_sys->i_duration = BOXDATA(p_stra)->i_duration;
+                        p_sys->i_overall_duration = BOXDATA(p_stra)->i_duration;
+                    }
                     if( p_sys->i_timescale == 0 )
                     {
                         msg_Err( p_demux, "bad timescale" );
@@ -279,7 +380,7 @@ static void CreateTracksFromSmooBox( demux_t *p_demux )
     for( int i = 0; i < 3; i++ )
     {
         MP4_Box_t *p_stra = MP4_BoxGet( p_smoo, "uuid[%d]", i );
-        if( !p_stra || p_stra->data.p_stra->i_track_ID == 0 )
+        if( !p_stra || !BOXDATA(p_stra) || BOXDATA(p_stra)->i_track_ID == 0 )
             continue;
         else
         {
@@ -290,6 +391,101 @@ static void CreateTracksFromSmooBox( demux_t *p_demux )
     }
 }
 
+static block_t * MP4_EIA608_Convert( block_t * p_block )
+{
+    /* Rebuild codec data from encap */
+    size_t i_copied = 0;
+    size_t i_remaining = p_block->i_buffer;
+    uint32_t i_bytes = 0;
+    block_t *p_newblock;
+
+    if ( i_remaining < 10 ||
+         !(i_bytes = GetDWBE(p_block->p_buffer)) ||
+         (i_bytes + 8 > i_remaining) ||
+         memcmp("cdat", &p_block->p_buffer[4], 4) ||
+         !(p_newblock = block_Alloc( i_remaining * 3 - 8 )) )
+    {
+        p_block->i_buffer = 0;
+        return p_block;
+    }
+
+    uint8_t *p_write = p_newblock->p_buffer;
+    uint8_t *p_read = &p_block->p_buffer[8];
+    i_bytes -= 8;
+    i_remaining -= 8;
+
+    do
+    {
+        p_write[i_copied++] = 0; /* cc1 == field 0 */
+        p_write[i_copied++] = p_read[0];
+        p_write[i_copied++] = p_read[1];
+        p_read += 2;
+        i_bytes -= 2;
+        i_remaining -= 2;
+    } while( i_bytes >= 2 );
+
+    if ( i_remaining >= 10 &&
+         (i_bytes = GetDWBE(p_read)) &&
+         (i_bytes + 8 <= i_remaining) &&
+         !memcmp("cdt2", &p_read[4], 4) )
+    {
+        p_read += 8;
+        i_bytes -= 8;
+        i_remaining -= 8;
+        do
+        {
+            p_write[i_copied++] = 0; /* cc1 == field 0 */
+            p_write[i_copied++] = p_read[0];
+            p_write[i_copied++] = p_read[1];
+            p_read += 2;
+            i_bytes -= 2;
+        } while( i_bytes >= 2 );
+    }
+
+    block_Release( p_block );
+    p_newblock->i_buffer = i_copied;
+    return p_newblock;
+}
+
+static block_t * MP4_Block_Read( demux_t *p_demux, const mp4_track_t *p_track, int i_size )
+{
+    block_t *p_block = stream_Block( p_demux->s, i_size );
+    if ( !p_block )
+        return NULL;
+
+    /* might have some encap */
+    if( p_track->fmt.i_cat == SPU_ES )
+    {
+        switch( p_track->fmt.i_codec )
+        {
+            case VLC_CODEC_TX3G:
+            case VLC_CODEC_SPU:
+            /* accept as-is */
+            break;
+            case VLC_CODEC_EIA608_1:
+                p_block = MP4_EIA608_Convert( p_block );
+            break;
+        default:
+            p_block->i_buffer = 0;
+            break;
+        }
+    }
+
+    return p_block;
+}
+
+static void MP4_Block_Send( demux_t *p_demux, mp4_track_t *p_track, block_t *p_block )
+{
+    if ( p_track->b_chans_reorder && aout_BitsPerSample( p_track->fmt.i_codec ) )
+    {
+        aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer,
+                             p_track->fmt.audio.i_channels,
+                             p_track->rgi_chans_reordering,
+                             p_track->fmt.i_codec );
+    }
+    es_out_Send( p_demux->out, p_track->p_es, p_block );
+}
+
 /*****************************************************************************
  * Open: check file and initializes MP4 structures
  *****************************************************************************/
@@ -306,7 +502,6 @@ static int Open( vlc_object_t * p_this )
     MP4_Box_t       *p_trak;
 
     unsigned int    i;
-    bool      b_seekable;
     bool      b_enabled_es;
 
     /* A little test to see if it could be a mp4 */
@@ -334,78 +529,88 @@ static int Open( vlc_object_t * p_this )
             return VLC_EGENERIC;
     }
 
+    /* create our structure that will contains all data */
+    p_sys = calloc( 1, sizeof( demux_sys_t ) );
+    if ( !p_sys )
+        return VLC_EGENERIC;
+
     /* I need to seek */
-    stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_seekable );
-    if( !b_seekable )
+    stream_Control( p_demux->s, STREAM_CAN_SEEK, &p_sys->b_seekable );
+    if( !p_sys->b_seekable )
     {
         msg_Warn( p_demux, "MP4 plugin discarded (not seekable)" );
+        free( p_sys );
         return VLC_EGENERIC;
     }
+    stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &p_sys->b_fastseekable );
+    p_sys->b_seekmode = p_sys->b_fastseekable;
 
     /*Set exported functions */
     p_demux->pf_demux = Demux;
     p_demux->pf_control = Control;
 
-    /* create our structure that will contains all data */
-    p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
+    p_demux->p_sys = p_sys;
 
-    /* Is it Smooth Streaming? */
-    bool b_smooth = false;
     if( stream_Peek( p_demux->s, &p_peek, 24 ) < 24 ) return VLC_EGENERIC;
     if( !CmpUUID( (UUID_t *)(p_peek + 8), &SmooBoxUUID ) )
     {
-        b_smooth = true;
+        p_sys->b_smooth = true;
         p_sys->b_fragmented = true;
     }
 
-    if( LoadInitFrag( p_demux, b_smooth ) != VLC_SUCCESS )
+    if( LoadInitFrag( p_demux ) != VLC_SUCCESS )
         goto error;
 
-    if( MP4_BoxCount( p_sys->p_root, "/moov/mvex" ) > 0 &&
-        MP4_BoxCount( p_sys->p_root, "/moof" ) > 0 )
+    if( MP4_BoxCount( p_sys->p_root, "/moov/mvex" ) > 0 )
     {
-        p_sys->b_fragmented = true;
+        if ( p_sys->b_seekable )
+        {
+            /* Probe remaining to check if there's really fragments
+               or if that file is just ready to append fragments */
+            ProbeFragments( p_demux, false );
+            p_sys->b_fragmented = !!MP4_BoxCount( p_sys->p_root, "/moof" );
+        }
+        else
+            p_sys->b_fragmented = true;
+
+        if ( p_sys->b_fragmented && !p_sys->i_overall_duration )
+            ProbeFragments( p_demux, true );
     }
-    if( p_sys->b_fragmented )
+
+    if ( !p_sys->moovfragment.p_moox )
+        AddFragment( p_demux, MP4_BoxGet( p_sys->p_root, "/moov" ) );
+
+    /* we always need a moov entry, but smooth has a workaround */
+    if ( !p_sys->moovfragment.p_moox && !p_sys->b_smooth )
+        goto error;
+
+    if ( p_sys->b_smooth )
     {
         p_demux->pf_demux = DemuxFrg;
     }
+    else if( p_sys->b_fragmented )
+    {
+        p_demux->pf_demux = DemuxAsLeaf;
+    }
 
-    stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &b_seekable );
-    if( b_smooth )
+    if( p_sys->b_smooth )
     {
         if( InitTracks( p_demux ) != VLC_SUCCESS )
             goto error;
         CreateTracksFromSmooBox( p_demux );
         return VLC_SUCCESS;
     }
-    else if( p_sys->b_fragmented && b_seekable )
-    {
-        /* We are not yet able to demux a fragmented MP4 file, using the 'mfra'
-         * box. So if STREAM_CAN_FASTSEEK is true, we're assuming we've got such
-         * a file, and we let avformat do the job. */
-        msg_Warn( p_demux, "MP4 plugin discarded "\
-                "(fast-seekable and fragmented, let avformat demux it)" );
-        stream_Seek( p_demux->s, 0 ); /* rewind, for other demux */
-        goto error;
-    }
-    else if( !p_sys->b_fragmented && !b_seekable )
-    {
-        msg_Warn( p_demux, "MP4 plugin discarded (not fast-seekable)" );
-        stream_Seek( p_demux->s, 0 ); /* rewind, for other demux */
-        goto error;
-    }
 
     MP4_BoxDumpStructure( p_demux->s, p_sys->p_root );
 
     if( ( p_ftyp = MP4_BoxGet( p_sys->p_root, "/ftyp" ) ) )
     {
-        switch( p_ftyp->data.p_ftyp->i_major_brand )
+        switch( BOXDATA(p_ftyp)->i_major_brand )
         {
             case( ATOM_isom ):
                 msg_Dbg( p_demux,
                          "ISO Media file (isom) version %d.",
-                         p_ftyp->data.p_ftyp->i_minor_version );
+                         BOXDATA(p_ftyp)->i_minor_version );
                 break;
             case( ATOM_3gp4 ):
             case( VLC_FOURCC( '3', 'g', 'p', '5' ) ):
@@ -413,9 +618,9 @@ static int Open( vlc_object_t * p_this )
             case( VLC_FOURCC( '3', 'g', 'p', '7' ) ):
                 msg_Dbg( p_demux, "3GPP Media file Release: %c",
 #ifdef WORDS_BIGENDIAN
-                        p_ftyp->data.p_ftyp->i_major_brand
+                        BOXDATA(p_ftyp)->i_major_brand
 #else
-                        p_ftyp->data.p_ftyp->i_major_brand >> 24
+                        BOXDATA(p_ftyp)->i_major_brand >> 24
 #endif
                         );
                 break;
@@ -428,7 +633,7 @@ static int Open( vlc_object_t * p_this )
             default:
                 msg_Dbg( p_demux,
                          "unrecognized major file specification (%4.4s).",
-                          (char*)&p_ftyp->data.p_ftyp->i_major_brand );
+                          (char*)&BOXDATA(p_ftyp)->i_major_brand );
                 break;
         }
     }
@@ -438,7 +643,8 @@ static int Open( vlc_object_t * p_this )
     }
 
     /* the file need to have one moov box */
-    if( MP4_BoxCount( p_sys->p_root, "/moov" ) <= 0 )
+    p_sys->moovfragment.p_moox = MP4_BoxGet( p_sys->p_root, "/moov", 0 );
+    if( !p_sys->moovfragment.p_moox )
     {
         MP4_Box_t *p_foov = MP4_BoxGet( p_sys->p_root, "/foov" );
 
@@ -449,6 +655,7 @@ static int Open( vlc_object_t * p_this )
         }
         /* we have a free box as a moov, rename it */
         p_foov->i_type = ATOM_moov;
+        p_sys->moovfragment.p_moox = p_foov;
     }
 
     if( ( p_rmra = MP4_BoxGet( p_sys->p_root,  "/moov/rmra" ) ) )
@@ -469,11 +676,11 @@ static int Open( vlc_object_t * p_this )
             char      *psz_ref;
             uint32_t  i_ref_type;
 
-            if( !p_rdrf || !( psz_ref = strdup( p_rdrf->data.p_rdrf->psz_ref ) ) )
+            if( !p_rdrf || !BOXDATA(p_rdrf) || !( psz_ref = strdup( BOXDATA(p_rdrf)->psz_ref ) ) )
             {
                 continue;
             }
-            i_ref_type = p_rdrf->data.p_rdrf->i_ref_type;
+            i_ref_type = BOXDATA(p_rdrf)->i_ref_type;
 
             msg_Dbg( p_demux, "new ref=`%s' type=%4.4s",
                      psz_ref, (char*)&i_ref_type );
@@ -521,7 +728,7 @@ static int Open( vlc_object_t * p_this )
             else
             {
                 msg_Err( p_demux, "unknown ref type=%4.4s FIXME (send a bug report)",
-                         (char*)&p_rdrf->data.p_rdrf->i_ref_type );
+                         (char*)&BOXDATA(p_rdrf)->i_ref_type );
             }
             free( psz_ref );
         }
@@ -545,13 +752,22 @@ static int Open( vlc_object_t * p_this )
     }
     else
     {
-        p_sys->i_timescale = p_mvhd->data.p_mvhd->i_timescale;
+        p_sys->i_timescale = BOXDATA(p_mvhd)->i_timescale;
         if( p_sys->i_timescale == 0 )
         {
             msg_Err( p_this, "bad timescale" );
             goto error;
         }
-        p_sys->i_duration = p_mvhd->data.p_mvhd->i_duration;
+    }
+
+    if ( p_sys->i_overall_duration == 0 )
+    {
+        /* Try in mehd if fragmented */
+        MP4_Box_t *p_mehd = MP4_BoxGet( p_demux->p_sys->p_root, "moov/mvex/mehd");
+        if ( p_mehd && p_mehd->data.p_mehd )
+            p_sys->i_overall_duration = p_mehd->data.p_mehd->i_fragment_duration;
+        else
+            p_sys->i_overall_duration = p_sys->moovfragment.i_duration;
     }
 
     if( !( p_sys->i_tracks = MP4_BoxCount( p_sys->p_root, "/moov/trak" ) ) )
@@ -576,11 +792,12 @@ static int Open( vlc_object_t * p_this )
 
 
         MP4_Box_t *p_tkhd = MP4_BoxGet( p_trak, "tkhd" );
-        if( p_tkhd && (p_tkhd->data.p_tkhd->i_flags&MP4_TRACK_ENABLED) )
+        if( p_tkhd && BOXDATA(p_tkhd) && (BOXDATA(p_tkhd)->i_flags&MP4_TRACK_ENABLED) )
             b_enabled_es = true;
 
         MP4_Box_t *p_chap = MP4_BoxGet( p_trak, "tref/chap", i );
-        if( p_chap && p_chap->data.p_tref_generic->i_entry_count > 0 && !p_sys->p_tref_chap )
+        if( p_chap && p_chap->data.p_tref_generic &&
+            p_chap->data.p_tref_generic->i_entry_count > 0 && !p_sys->p_tref_chap )
             p_sys->p_tref_chap = p_chap;
     }
 
@@ -630,6 +847,15 @@ static int Open( vlc_object_t * p_this )
         }
     }
 
+    mp4_fragment_t *p_fragment = &p_sys->moovfragment;
+    while ( p_fragment )
+    {
+        msg_Dbg( p_demux, "fragment offset %"PRId64", data %"PRIu64"<->%"PRIu64", duration %"PRId64,
+                 p_fragment->p_moox->i_pos, p_fragment->i_chunk_range_min_offset,
+                 p_fragment->i_chunk_range_max_offset, CLOCK_FREQ * p_fragment->i_duration / p_sys->i_timescale );
+        p_fragment = p_fragment->p_next;
+    }
+
     /* */
     LoadChapter( p_demux );
 
@@ -692,8 +918,8 @@ static int Demux( demux_t *p_demux )
         p_sys->i_time += __MAX( p_sys->i_timescale / 10 , 1 );
         if( p_sys->i_timescale > 0 )
         {
-            int64_t i_length = (mtime_t)1000000 *
-                               (mtime_t)p_sys->i_duration /
+            int64_t i_length = CLOCK_FREQ *
+                               (mtime_t)p_sys->moovfragment.i_duration /
                                (mtime_t)p_sys->i_timescale;
             if( MP4_GetMoviePTS( p_sys ) >= i_length )
                 return 0;
@@ -710,120 +936,145 @@ static int Demux( demux_t *p_demux )
     /* first wait for the good time to read a packet */
     p_sys->i_pcr = MP4_GetMoviePTS( p_sys );
 
-    /* we will read 100ms for each stream so ...*/
-    mtime_t i_targettime = p_sys->i_pcr + CLOCK_FREQ/10;
     bool b_data_sent = false;
 
+    /* Find next track matching contiguous data */
+    mp4_track_t *tk = NULL;
+    uint64_t i_candidate_pos = UINT64_MAX;
+    mtime_t i_candidate_dts = INT64_MAX;
     for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )
     {
-        mp4_track_t *tk = &p_sys->track[i_track];
-
-        if( !tk->b_ok || tk->b_chapter || !tk->b_selected || tk->i_sample >= tk->i_sample_count )
+        mp4_track_t *tk_tmp = &p_sys->track[i_track];
+        if( !tk_tmp->b_ok || tk_tmp->b_chapter || !tk_tmp->b_selected || tk_tmp->i_sample >= tk_tmp->i_sample_count )
             continue;
 
-        while( MP4_TrackGetDTS( p_demux, tk ) < i_targettime )
+        if ( p_sys->b_seekmode )
         {
-#if 0
-            msg_Dbg( p_demux, "tk(%i)=%lld mv=%lld", i_track,
-                     MP4_TrackGetDTS( p_demux, tk ),
-                     MP4_GetMoviePTS( p_sys ) );
-#endif
-            int i_nb_samples = 0;
-            int i_samplessize = MP4_TrackSampleSize( tk, &i_nb_samples );
-            if( i_samplessize > 0 )
+            mtime_t i_dts = MP4_TrackGetDTS( p_demux, tk_tmp );
+            if ( i_dts <= i_candidate_dts )
             {
-                block_t *p_block;
-                int64_t i_delta, i_newpos;
+                tk = tk_tmp;
+                i_candidate_dts = i_dts;
+                i_candidate_pos = MP4_TrackGetPos( tk_tmp );
+            }
+        }
+        else
+        {
+            /* Try to avoid seeking on non fastseekable. Will fail with non interleaved content */
+            uint64_t i_pos = MP4_TrackGetPos( tk_tmp );
+            if ( i_pos <= i_candidate_pos )
+            {
+                i_candidate_pos = i_pos;
+                tk = tk_tmp;
+            }
+        }
+    }
 
-                /* go,go go ! */
-                i_newpos = MP4_TrackGetPos( tk );
-                if( stream_Tell( p_demux->s ) != i_newpos )
-                {
-                    if( stream_Seek( p_demux->s, i_newpos ) )
-                    {
-                        msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)",
-                                  tk->i_track_ID );
-                        MP4_TrackUnselect( p_demux, tk );
-                        break;
-                    }
-                }
+    if ( !tk )
+    {
+        msg_Dbg( p_demux, "Could not select track by data position" );
+        goto end;
+    }
+    else if ( p_sys->b_seekmode )
+    {
+        if( stream_Seek( p_demux->s, i_candidate_pos ) )
+        {
+            msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)",
+                      tk->i_track_ID );
+            MP4_TrackUnselect( p_demux, tk );
+            goto end;
+        }
+    }
 
-                /* now read pes */
-                if( !(p_block = stream_Block( p_demux->s, i_samplessize )) )
-                {
-                    msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)",
-                              tk->i_track_ID );
-                    MP4_TrackUnselect( p_demux, tk );
-                    break;
-                }
+#if 0
+    msg_Dbg( p_demux, "tk(%i)=%"PRId64" mv=%"PRId64" pos=%"PRIu64, i_track,
+             MP4_TrackGetDTS( p_demux, tk ),
+             MP4_GetMoviePTS( p_sys ), i_candidate_pos );
+#endif
 
-                else if( tk->fmt.i_cat == SPU_ES )
-                {
-                    if( tk->fmt.i_codec == VLC_CODEC_SUBT &&
-                        p_block->i_buffer >= 2 )
-                    {
-                        size_t i_size = GetWBE( p_block->p_buffer );
+    uint32_t i_nb_samples = 0;
+    uint32_t i_samplessize = MP4_TrackGetReadSize( tk, &i_nb_samples );
+    if( i_samplessize > 0 )
+    {
+        block_t *p_block;
+        int64_t i_delta;
+        uint64_t i_current_pos;
 
-                        if( i_size + 2 <= p_block->i_buffer )
-                        {
-                            char *p;
-                            /* remove the length field, and append a '\0' */
-                            memmove( &p_block->p_buffer[0],
-                                     &p_block->p_buffer[2], i_size );
-                            p_block->p_buffer[i_size] = '\0';
-                            p_block->i_buffer = i_size + 1;
-
-                            /* convert \r -> \n */
-                            while( ( p = strchr((char *) p_block->p_buffer, '\r' ) ) )
-                            {
-                                *p = '\n';
-                            }
-                        }
-                        else
-                        {
-                            /* Invalid */
-                            p_block->i_buffer = 0;
-                        }
-                    }
-                }
-                /* dts */
-                p_block->i_dts = VLC_TS_0 + MP4_TrackGetDTS( p_demux, tk );
-                /* pts */
-                i_delta = MP4_TrackGetPTSDelta( p_demux, tk );
-                if( i_delta != -1 )
-                    p_block->i_pts = p_block->i_dts + i_delta;
-                else if( tk->fmt.i_cat != VIDEO_ES )
-                    p_block->i_pts = p_block->i_dts;
-                else
-                    p_block->i_pts = VLC_TS_INVALID;
+        /* go,go go ! */
+        if ( !MP4_stream_Tell( p_demux->s, &i_current_pos ) )
+            goto end;
 
-                if ( !b_data_sent )
-                {
-                    es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_pcr );
-                    b_data_sent = true;
-                }
-                es_out_Send( p_demux->out, tk->p_es, p_block );
+        if( i_current_pos != i_candidate_pos )
+        {
+            if( stream_Seek( p_demux->s, i_candidate_pos ) )
+            {
+                msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)"
+                          ": Failed to seek to %"PRIu64,
+                          tk->i_track_ID, i_candidate_pos );
+                MP4_TrackUnselect( p_demux, tk );
+                goto end;
             }
+            i_current_pos = i_candidate_pos;
+        }
 
-            /* Next sample */
-            if( MP4_TrackNextSample( p_demux, tk, i_nb_samples ) )
-                break;
+        /* now read pes */
+        if( !(p_block = MP4_Block_Read( p_demux, tk, i_samplessize )) )
+        {
+            msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)"
+                      ": Failed to read %d bytes sample at %"PRIu64,
+                      tk->i_track_ID, i_samplessize, i_current_pos );
+            MP4_TrackUnselect( p_demux, tk );
+            goto end;
         }
+
+        /* dts */
+        p_block->i_dts = VLC_TS_0 + MP4_TrackGetDTS( p_demux, tk );
+        /* pts */
+        i_delta = MP4_TrackGetPTSDelta( p_demux, tk );
+        if( i_delta != -1 )
+            p_block->i_pts = p_block->i_dts + i_delta;
+        else if( tk->fmt.i_cat != VIDEO_ES )
+            p_block->i_pts = p_block->i_dts;
+        else
+            p_block->i_pts = VLC_TS_INVALID;
+
+        if ( !b_data_sent )
+        {
+            es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_pcr );
+            b_data_sent = true;
+        }
+        MP4_Block_Send( p_demux, tk, p_block );
     }
 
+    /* Next sample */
+    if ( i_nb_samples ) /* sample size could be 0, need to go fwd. see return */
+        MP4_TrackNextSample( p_demux, tk, i_nb_samples );
+
+end:
     if ( b_data_sent )
     {
         p_sys->i_pcr = INT64_MAX;
         for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )
         {
             mp4_track_t *tk = &p_sys->track[i_track];
-            if ( !tk->b_ok || !tk->b_selected ) continue;
-            p_sys->i_pcr = __MIN( MP4_TrackGetDTS( p_demux, tk ), p_sys->i_pcr );
+            if ( !tk->b_ok || !tk->b_selected  ||
+                 (tk->fmt.i_cat != AUDIO_ES && tk->fmt.i_cat != VIDEO_ES) )
+                continue;
+
+            mtime_t i_dts = MP4_TrackGetDTS( p_demux, tk );
+            p_sys->i_pcr = __MIN( i_dts, p_sys->i_pcr );
+
+            if ( !p_sys->b_seekmode && i_dts > p_sys->i_pcr + 2*CLOCK_FREQ )
+            {
+                msg_Dbg( p_demux, "that media doesn't look interleaved, will need to seek");
+                p_sys->b_seekmode = true;
+            }
+
             p_sys->i_time = p_sys->i_pcr * p_sys->i_timescale / CLOCK_FREQ;
         }
     }
 
-    return b_data_sent;
+    return b_data_sent || ( i_samplessize == 0 && i_nb_samples );
 }
 
 static void MP4_UpdateSeekpoint( demux_t *p_demux )
@@ -856,7 +1107,7 @@ static int Seek( demux_t *p_demux, mtime_t i_date )
     unsigned int i_track;
 
     /* First update global time */
-    p_sys->i_time = i_date * p_sys->i_timescale / 1000000;
+    p_sys->i_time = i_date * p_sys->i_timescale / CLOCK_FREQ;
     p_sys->i_pcr  = VLC_TS_INVALID;
 
     /* Now for each stream try to go to this time */
@@ -872,6 +1123,143 @@ static int Seek( demux_t *p_demux, mtime_t i_date )
     return VLC_SUCCESS;
 }
 
+static int LeafSeekIntoFragment( demux_t *p_demux, mp4_fragment_t *p_fragment )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    uint64_t i64 = p_fragment->i_chunk_range_min_offset;
+
+    if ( p_fragment->p_moox->i_type == ATOM_moov )
+    {
+        mp4_track_t *p_track;
+        unsigned int i_chunk;
+        int i_ret = LeafGetTrackAndChunkByMOOVPos( p_demux, &i64, &p_track, &i_chunk );
+        if ( i_ret == VLC_EGENERIC )
+        {
+            msg_Dbg( p_demux, "moov seek failed to identify %"PRIu64, i64 );
+            return i_ret;
+        }
+        msg_Dbg( p_demux, "moov seeking to %"PRIu64, i64 );
+    }
+    else
+    {
+        i64 = p_fragment->i_chunk_range_min_offset;
+        msg_Dbg( p_demux, "moof seeking to %"PRIu64, i64 );
+    }
+
+    if( stream_Seek( p_demux->s, i64 ) )
+    {
+        msg_Err( p_demux, "seek failed to %"PRIu64, i64 );
+        return VLC_EGENERIC;
+    }
+
+    /* map context */
+    p_sys->context.p_fragment = p_fragment;
+    p_sys->context.i_current_box_type = ATOM_mdat;
+    LeafMapTrafTrunContextes( p_demux, p_fragment->p_moox );
+    p_sys->context.i_mdatbytesleft = p_fragment->i_chunk_range_max_offset - i64;
+
+    mtime_t i_time_base = LeafGetFragmentTimeOffset( p_demux, p_fragment );
+    for( unsigned int i_track = 0; i_track < p_sys->i_tracks; i_track++ )
+    {
+        p_sys->track[i_track].i_time = i_time_base * p_sys->track[i_track].i_timescale / p_sys->i_timescale;
+    }
+    p_sys->i_time = i_time_base;
+    p_sys->i_pcr  = VLC_TS_INVALID;
+
+    return VLC_SUCCESS;
+}
+
+static int LeafSeekToTime( demux_t *p_demux, mtime_t i_nztime )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    mp4_fragment_t *p_fragment;
+    uint64_t i64 = 0;
+    if ( !p_sys->i_timescale || !p_sys->i_overall_duration || !p_sys->b_seekable )
+         return VLC_EGENERIC;
+
+    if ( !p_sys->b_fragments_probed && !p_sys->b_index_probed && p_sys->b_seekable )
+    {
+        ProbeIndex( p_demux );
+        p_sys->b_index_probed = true;
+    }
+
+    p_fragment = GetFragmentByTime( p_demux, i_nztime );
+    if ( !p_fragment )
+    {
+        mtime_t i_mooftime;
+        msg_Dbg( p_demux, "seek can't find matching fragment for %"PRId64", trying index", i_nztime );
+        if ( LeafIndexGetMoofPosByTime( p_demux, i_nztime, &i64, &i_mooftime ) == VLC_SUCCESS )
+        {
+            msg_Dbg( p_demux, "seek trying to go to unknown but indexed fragment at %"PRId64, i64 );
+            if( stream_Seek( p_demux->s, i64 ) )
+            {
+                msg_Err( p_demux, "seek to moof failed %"PRId64, i64 );
+                return VLC_EGENERIC;
+            }
+            p_sys->context.i_current_box_type = 0;
+            p_sys->context.i_mdatbytesleft = 0;
+            p_sys->context.p_fragment = NULL;
+            for( unsigned int i_track = 0; i_track < p_sys->i_tracks; i_track++ )
+            {
+                p_sys->track[i_track].i_time = i_mooftime / CLOCK_FREQ * p_sys->track[i_track].i_timescale;
+            }
+            p_sys->i_time = i_mooftime / CLOCK_FREQ * p_sys->i_timescale;
+            p_sys->i_pcr  = VLC_TS_INVALID;
+        }
+        else
+        {
+            msg_Warn( p_demux, "seek by index failed" );
+            return VLC_EGENERIC;
+        }
+    }
+    else
+    {
+        msg_Dbg( p_demux, "seeking to fragment data starting at %"PRIu64" for time %"PRId64,
+                           p_fragment->i_chunk_range_min_offset, i_nztime );
+        if ( LeafSeekIntoFragment( p_demux, p_fragment ) != VLC_SUCCESS )
+            return VLC_EGENERIC;
+    }
+
+    /* And set next display time in that trun/fragment */
+    es_out_Control( p_demux->out, ES_OUT_SET_NEXT_DISPLAY_TIME, VLC_TS_0 + i_nztime );
+    return VLC_SUCCESS;
+}
+
+static int LeafSeekToPos( demux_t *p_demux, double f )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    if ( !p_sys->b_seekable )
+        return VLC_EGENERIC;
+
+    if ( p_sys->i_timescale && p_sys->i_overall_duration )
+    {
+        return LeafSeekToTime( p_demux,
+                    (mtime_t)( f * CLOCK_FREQ * p_sys->i_overall_duration /
+                               p_sys->i_timescale ) );
+    }
+
+    if ( !p_sys->b_fragments_probed && !p_sys->b_index_probed && p_sys->b_seekable )
+    {
+        ProbeIndex( p_demux );
+        p_sys->b_index_probed = true;
+    }
+
+    /* Blind seek to pos only */
+    uint64_t i64 = (uint64_t) stream_Size( p_demux->s ) * f;
+    mp4_fragment_t *p_fragment = GetFragmentByPos( p_demux, i64, false );
+    if ( p_fragment )
+    {
+        msg_Dbg( p_demux, "Seeking to fragment data starting at %"PRIu64" for pos %"PRIu64,
+                 p_fragment->i_chunk_range_min_offset, i64 );
+        return LeafSeekIntoFragment( p_demux, p_fragment );
+    }
+    else
+    {
+        msg_Dbg( p_demux, "Cant get fragment for data starting at %"PRIu64, i64 );
+        return VLC_EGENERIC;
+    }
+}
+
 static int MP4_frg_Seek( demux_t *p_demux, double f )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
@@ -884,7 +1272,7 @@ static int MP4_frg_Seek( demux_t *p_demux, double f )
     else
     {
         /* update global time */
-        p_sys->i_time = (uint64_t)(f * (double)p_sys->i_duration);
+        p_sys->i_time = (uint64_t)(f * (double)p_sys->moovfragment.i_duration);
         p_sys->i_pcr  = MP4_GetMoviePTS( p_sys );
 
         for( unsigned i_track = 0; i_track < p_sys->i_tracks; i_track++ )
@@ -920,9 +1308,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
     {
         case DEMUX_GET_POSITION:
             pf = (double*)va_arg( args, double * );
-            if( p_sys->i_duration > 0 )
+            if( p_sys->i_overall_duration > 0 )
             {
-                *pf = (double)p_sys->i_time / (double)p_sys->i_duration;
+                *pf = (double)p_sys->i_time / (double)p_sys->i_overall_duration;
             }
             else
             {
@@ -932,24 +1320,24 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
 
         case DEMUX_SET_POSITION:
             f = (double)va_arg( args, double );
-            if( p_sys->b_fragmented )
-            {
+            if ( p_demux->pf_demux == DemuxAsLeaf )
+                return LeafSeekToPos( p_demux, f );
+            else if ( p_demux->pf_demux == DemuxFrg )
                 return MP4_frg_Seek( p_demux, f );
-            }
             else if( p_sys->i_timescale > 0 )
             {
-                i64 = (int64_t)( f * (double)1000000 *
-                                 (double)p_sys->i_duration /
+                i64 = (int64_t)( f * CLOCK_FREQ *
+                                 (double)p_sys->i_overall_duration /
                                  (double)p_sys->i_timescale );
                 return Seek( p_demux, i64 );
             }
-            else return VLC_SUCCESS;
+            else return VLC_EGENERIC;
 
         case DEMUX_GET_TIME:
             pi64 = (int64_t*)va_arg( args, int64_t * );
             if( p_sys->i_timescale > 0 )
             {
-                *pi64 = (mtime_t)1000000 *
+                *pi64 = CLOCK_FREQ *
                         (mtime_t)p_sys->i_time /
                         (mtime_t)p_sys->i_timescale;
             }
@@ -958,14 +1346,17 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
 
         case DEMUX_SET_TIME:
             i64 = (int64_t)va_arg( args, int64_t );
-            return Seek( p_demux, i64 );
+            if ( p_demux->pf_demux == DemuxAsLeaf )
+                return LeafSeekToTime( p_demux, i64 );
+            else
+                return Seek( p_demux, i64 );
 
         case DEMUX_GET_LENGTH:
             pi64 = (int64_t*)va_arg( args, int64_t * );
             if( p_sys->i_timescale > 0 )
             {
-                *pi64 = (mtime_t)1000000 *
-                        (mtime_t)p_sys->i_duration /
+                *pi64 = CLOCK_FREQ *
+                        (mtime_t)p_sys->i_overall_duration /
                         (mtime_t)p_sys->i_timescale;
             }
             else *pi64 = 0;
@@ -976,31 +1367,101 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
             *pf = p_sys->f_fps;
             return VLC_SUCCESS;
 
-        case DEMUX_GET_META:
+        case DEMUX_GET_ATTACHMENTS:
+        {
+            input_attachment_t ***ppp_attach = va_arg( args, input_attachment_t*** );
+            int *pi_int = va_arg( args, int * );
+
+            MP4_Box_t  *p_covr = MP4_BoxGet( p_sys->p_root, "/moov/udta/meta/ilst/covr" );
+            if ( !p_covr ) return VLC_EGENERIC;
+            MP4_Box_t  *p_box;
+            int i_count = 0;
+
+            for( p_box = p_covr->p_first; p_box != NULL; p_box = p_box->p_next )
+            {
+                if ( p_box->i_type == ATOM_data && p_box->data.p_data->i_blob >= 16 )
+                    i_count++;
+            }
+
+            if ( i_count == 0 )
+                return VLC_EGENERIC;
+
+            *ppp_attach = (input_attachment_t**)
+                    malloc( sizeof(input_attachment_t*) * i_count );
+            if( !(*ppp_attach) ) return VLC_ENOMEM;
+            char *psz_mime;
+            char *psz_filename;
+            i_count = 0;
+            for( p_box = p_covr->p_first; p_box != NULL; p_box = p_box->p_next )
+            {
+                if ( p_box->i_type != ATOM_data || p_box->data.p_data->i_blob < 16 )
+                    continue;
+
+                if ( !memcmp( p_box->data.p_data->p_blob,
+                              "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A", 8 ) )
+                {
+                    psz_mime = strdup( "image/png" );
+                }
+                else if ( !memcmp( p_box->data.p_data->p_blob, "\xFF\xD8", 2 ) )
+                {
+                    psz_mime = strdup( "image/jpeg" );
+                }
+                else
+                {
+                    continue;
+                }
+
+                if ( asprintf( &psz_filename, "picture%u", i_count ) >= 0 )
+                {
+                    (*ppp_attach)[i_count++] =
+                        vlc_input_attachment_New( psz_filename, psz_mime, NULL,
+                            p_box->data.p_data->p_blob, p_box->data.p_data->i_blob );
+                    free( psz_filename );
+                }
+
+                free( psz_mime );
+            }
+
+            if ( i_count == 0 )
+            {
+                free( *ppp_attach );
+                return VLC_EGENERIC;
+            }
+
+            *pi_int = i_count;
+
+            return VLC_SUCCESS;
+        }
+
+        case DEMUX_GET_META:
         {
             vlc_meta_t *p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t*);
             MP4_Box_t  *p_0xa9xxx;
 
+            MP4_Box_t *p_covr = MP4_BoxGet( p_sys->p_root, "/moov/udta/meta/ilst/covr/data[0]" );
+            if ( p_covr )
+                vlc_meta_SetArtURL( p_meta, "attachment://picture0" );
+
             MP4_Box_t  *p_udta = MP4_BoxGet( p_sys->p_root, "/moov/udta/meta/ilst" );
             if( p_udta == NULL )
             {
                 p_udta = MP4_BoxGet( p_sys->p_root, "/moov/udta" );
-                if( p_udta == NULL )
-                {
+                if( p_udta == NULL && p_covr == NULL )
                     return VLC_EGENERIC;
-                }
+                else
+                    return VLC_SUCCESS;
             }
 
             for( p_0xa9xxx = p_udta->p_first; p_0xa9xxx != NULL;
                  p_0xa9xxx = p_0xa9xxx->p_next )
             {
 
-                if( !p_0xa9xxx || !p_0xa9xxx->data.p_0xa9xxx )
+                if( !p_0xa9xxx || !BOXDATA(p_0xa9xxx) )
                     continue;
 
                 /* FIXME FIXME: should convert from whatever the character
                  * encoding of MP4 meta data is to UTF-8. */
-#define SET(fct) do { char *psz_utf = strdup( p_0xa9xxx->data.p_0xa9xxx->psz_text ? p_0xa9xxx->data.p_0xa9xxx->psz_text : "" ); \
+#define SET(fct) do { char *psz_utf = strdup( BOXDATA(p_0xa9xxx)->psz_text ? BOXDATA(p_0xa9xxx)->psz_text : "" ); \
     if( psz_utf ) { EnsureUTF8( psz_utf );  \
                     fct( p_meta, psz_utf ); free( psz_utf ); } } while(0)
 
@@ -1121,7 +1582,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
                 {
                     if( p_0xa9xxx->i_type == xa9typetoextrameta[i].xa9_type )
                     {
-                        char *psz_utf = strdup( p_0xa9xxx->data.p_0xa9xxx->psz_text ? p_0xa9xxx->data.p_0xa9xxx->psz_text : "" );
+                        char *psz_utf = strdup( BOXDATA(p_0xa9xxx)->psz_text ? BOXDATA(p_0xa9xxx)->psz_text : "" );
                         if( psz_utf )
                         {
                              EnsureUTF8( psz_utf );
@@ -1170,7 +1631,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
         case DEMUX_SET_NEXT_DEMUX_TIME:
         case DEMUX_SET_GROUP:
         case DEMUX_HAS_UNSUPPORTED_META:
-        case DEMUX_GET_ATTACHMENTS:
         case DEMUX_GET_PTS_DELAY:
         case DEMUX_CAN_RECORD:
             return VLC_EGENERIC;
@@ -1202,6 +1662,13 @@ static void Close ( vlc_object_t * p_this )
     if( p_sys->p_title )
         vlc_input_title_Delete( p_sys->p_title );
 
+    while( p_sys->moovfragment.p_next )
+    {
+        mp4_fragment_t *p_fragment = p_sys->moovfragment.p_next->p_next;
+        free( p_sys->moovfragment.p_next );
+        p_sys->moovfragment.p_next = p_fragment;
+    }
+
     free( p_sys );
 }
 
@@ -1217,13 +1684,13 @@ static void LoadChapterGpac( demux_t  *p_demux, MP4_Box_t *p_chpl )
     int i;
 
     p_sys->p_title = vlc_input_title_New();
-    for( i = 0; i < p_chpl->data.p_chpl->i_chapter; i++ )
+    for( i = 0; i < BOXDATA(p_chpl)->i_chapter; i++ )
     {
         seekpoint_t *s = vlc_seekpoint_New();
 
-        s->psz_name = strdup( p_chpl->data.p_chpl->chapter[i].psz_name );
+        s->psz_name = strdup( BOXDATA(p_chpl)->chapter[i].psz_name );
         EnsureUTF8( s->psz_name );
-        s->i_time_offset = p_chpl->data.p_chpl->chapter[i].i_start / 10;
+        s->i_time_offset = BOXDATA(p_chpl)->chapter[i].i_start / 10;
         TAB_APPEND( p_sys->p_title->i_seekpoint, p_sys->p_title->seekpoint, s );
     }
 }
@@ -1235,14 +1702,15 @@ static void LoadChapterApple( demux_t  *p_demux, mp4_track_t *tk )
     {
         const int64_t i_dts = MP4_TrackGetDTS( p_demux, tk );
         const int64_t i_pts_delta = MP4_TrackGetPTSDelta( p_demux, tk );
-        int i_nb_samples = 0;
-        const unsigned int i_size = MP4_TrackSampleSize( tk, &i_nb_samples );
+        uint32_t i_nb_samples = 0;
+        const uint32_t i_size = MP4_TrackGetReadSize( tk, &i_nb_samples );
 
         if( i_size > 0 && !stream_Seek( p_demux->s, MP4_TrackGetPos( tk ) ) )
         {
             char p_buffer[256];
-            const int i_read = stream_Read( p_demux->s, p_buffer, __MIN( sizeof(p_buffer), i_size ) );
-            const int i_len = __MIN( GetWBE(p_buffer), i_read-2 );
+            const uint32_t i_read = stream_ReadU32( p_demux->s, p_buffer,
+                                                    __MIN( sizeof(p_buffer), i_size ) );
+            const uint32_t i_len = __MIN( GetWBE(p_buffer), i_read-2 );
 
             if( i_len > 0 )
             {
@@ -1268,7 +1736,8 @@ static void LoadChapter( demux_t  *p_demux )
     demux_sys_t *p_sys = p_demux->p_sys;
     MP4_Box_t *p_chpl;
 
-    if( ( p_chpl = MP4_BoxGet( p_sys->p_root, "/moov/udta/chpl" ) ) && p_chpl->data.p_chpl->i_chapter > 0 )
+    if( ( p_chpl = MP4_BoxGet( p_sys->p_root, "/moov/udta/chpl" ) ) &&
+          BOXDATA(p_chpl) && BOXDATA(p_chpl)->i_chapter > 0 )
     {
         LoadChapterGpac( p_demux, p_chpl );
     }
@@ -1298,8 +1767,8 @@ static void LoadChapter( demux_t  *p_demux )
     /* Add duration if titles are enabled */
     if( p_sys->p_title )
     {
-        p_sys->p_title->i_length = (uint64_t)1000000 *
-                       (uint64_t)p_sys->i_duration / (uint64_t)p_sys->i_timescale;
+        p_sys->p_title->i_length = CLOCK_FREQ *
+                       (uint64_t)p_sys->i_overall_duration / (uint64_t)p_sys->i_timescale;
     }
 }
 
@@ -1308,8 +1777,6 @@ static int TrackCreateChunksIndex( demux_t *p_demux,
                                    mp4_track_t *p_demux_track )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
-    if( p_sys->b_fragmented )
-        return VLC_SUCCESS;
 
     MP4_Box_t *p_co64; /* give offset for each chunk, same for stco and co64 */
     MP4_Box_t *p_stsc;
@@ -1324,11 +1791,10 @@ static int TrackCreateChunksIndex( demux_t *p_demux,
         return( VLC_EGENERIC );
     }
 
-    p_demux_track->i_chunk_count = p_co64->data.p_co64->i_entry_count;
+    p_demux_track->i_chunk_count = BOXDATA(p_co64)->i_entry_count;
     if( !p_demux_track->i_chunk_count )
     {
         msg_Warn( p_demux, "no chunk defined" );
-        return( VLC_EGENERIC );
     }
     p_demux_track->chunk = calloc( p_demux_track->i_chunk_count,
                                    sizeof( mp4_chunk_t ) );
@@ -1342,7 +1808,7 @@ static int TrackCreateChunksIndex( demux_t *p_demux,
     {
         mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
 
-        ck->i_offset = p_co64->data.p_co64->i_chunk_offset[i_chunk];
+        ck->i_offset = BOXDATA(p_co64)->i_chunk_offset[i_chunk];
 
         ck->i_first_dts = 0;
         ck->p_sample_count_dts = NULL;
@@ -1355,16 +1821,11 @@ static int TrackCreateChunksIndex( demux_t *p_demux,
         to be used for the sample XXX begin to 1
         We construct it begining at the end */
     i_last = p_demux_track->i_chunk_count; /* last chunk proceded */
-    i_index = p_stsc->data.p_stsc->i_entry_count;
-    if( !i_index )
-    {
-        msg_Warn( p_demux, "cannot read chunk table or table empty" );
-        return( VLC_EGENERIC );
-    }
+    i_index = BOXDATA(p_stsc)->i_entry_count;
 
-    while( i_index-- )
+    while( i_index-- > 0 )
     {
-        for( i_chunk = p_stsc->data.p_stsc->i_first_chunk[i_index] - 1;
+        for( i_chunk = BOXDATA(p_stsc)->i_first_chunk[i_index] - 1;
              i_chunk < i_last; i_chunk++ )
         {
             if( i_chunk >= p_demux_track->i_chunk_count )
@@ -1374,24 +1835,81 @@ static int TrackCreateChunksIndex( demux_t *p_demux,
             }
 
             p_demux_track->chunk[i_chunk].i_sample_description_index =
-                    p_stsc->data.p_stsc->i_sample_description_index[i_index];
+                    BOXDATA(p_stsc)->i_sample_description_index[i_index];
             p_demux_track->chunk[i_chunk].i_sample_count =
-                    p_stsc->data.p_stsc->i_samples_per_chunk[i_index];
+                    BOXDATA(p_stsc)->i_samples_per_chunk[i_index];
         }
-        i_last = p_stsc->data.p_stsc->i_first_chunk[i_index] - 1;
+        i_last = BOXDATA(p_stsc)->i_first_chunk[i_index] - 1;
     }
 
-    p_demux_track->chunk[0].i_sample_first = 0;
-    for( i_chunk = 1; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
+    if ( p_demux_track->i_chunk_count )
     {
-        p_demux_track->chunk[i_chunk].i_sample_first =
-            p_demux_track->chunk[i_chunk-1].i_sample_first +
-                p_demux_track->chunk[i_chunk-1].i_sample_count;
+        p_demux_track->chunk[0].i_sample_first = 0;
+        for( i_chunk = 1; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
+        {
+            p_demux_track->chunk[i_chunk].i_sample_first =
+                p_demux_track->chunk[i_chunk-1].i_sample_first +
+                    p_demux_track->chunk[i_chunk-1].i_sample_count;
+        }
     }
 
     msg_Dbg( p_demux, "track[Id 0x%x] read %d chunk",
              p_demux_track->i_track_ID, p_demux_track->i_chunk_count );
 
+    if ( p_demux_track->i_chunk_count && (
+             p_sys->moovfragment.i_chunk_range_min_offset == 0 ||
+             p_sys->moovfragment.i_chunk_range_min_offset > p_demux_track->chunk[0].i_offset
+             ) )
+        p_sys->moovfragment.i_chunk_range_min_offset = p_demux_track->chunk[0].i_offset;
+
+    return VLC_SUCCESS;
+}
+
+static int xTTS_CountEntries( demux_t *p_demux, uint32_t *pi_entry /* out */,
+                              const uint32_t i_index,
+                              uint32_t i_index_samples_left,
+                              uint32_t i_sample_count,
+                              const uint32_t *pi_index_sample_count,
+                              const uint32_t i_table_count )
+{
+    uint32_t i_array_offset;
+    while( i_sample_count > 0 )
+    {
+        if ( likely((UINT32_MAX - i_index) >= *pi_entry) )
+            i_array_offset = i_index + *pi_entry;
+        else
+            return VLC_EGENERIC;
+
+        if ( i_array_offset >= i_table_count )
+        {
+            msg_Err( p_demux, "invalid index counting total samples %u %u", i_array_offset,  i_table_count );
+            return VLC_EGENERIC;
+        }
+
+        if ( i_index_samples_left )
+        {
+            if ( i_index_samples_left > i_sample_count )
+            {
+                i_index_samples_left -= i_sample_count;
+                i_sample_count = 0;
+                *pi_entry +=1; /* No samples left, go copy */
+                break;
+            }
+            else
+            {
+                i_sample_count -= i_index_samples_left;
+                i_index_samples_left = 0;
+                *pi_entry += 1;
+                continue;
+            }
+        }
+        else
+        {
+            i_sample_count -= __MIN( i_sample_count, pi_index_sample_count[i_array_offset] );
+            *pi_entry += 1;
+        }
+    }
+
     return VLC_SUCCESS;
 }
 
@@ -1399,21 +1917,11 @@ static int TrackCreateSamplesIndex( demux_t *p_demux,
                                     mp4_track_t *p_demux_track )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
-    if( p_sys->b_fragmented )
-        return VLC_SUCCESS;
 
     MP4_Box_t *p_box;
     MP4_Box_data_stsz_t *stsz;
-    MP4_Box_data_stts_t *stts;
     /* TODO use also stss and stsh table for seeking */
     /* FIXME use edit table */
-    int64_t i_sample;
-    int64_t i_chunk;
-
-    int64_t i_index;
-    int64_t i_index_sample_used;
-
-    int64_t i_next_dts;
 
     /* Find stsz
      *  Gives the sample size for each samples. There is also a stz2 table
@@ -1427,17 +1935,6 @@ static int TrackCreateSamplesIndex( demux_t *p_demux,
     }
     stsz = p_box->data.p_stsz;
 
-    /* Find stts
-     *  Gives mapping between sample and decoding time
-     */
-    p_box = MP4_BoxGet( p_demux_track->p_stbl, "stts" );
-    if( !p_box )
-    {
-        msg_Warn( p_demux, "cannot find STTS box" );
-        return VLC_EGENERIC;
-    }
-    stts = p_box->data.p_stts;
-
     /* Use stsz table to create a sample number -> sample size table */
     p_demux_track->i_sample_count = stsz->i_sample_count;
     if( stsz->i_sample_size )
@@ -1455,158 +1952,249 @@ static int TrackCreateSamplesIndex( demux_t *p_demux,
         if( p_demux_track->p_sample_size == NULL )
             return VLC_ENOMEM;
 
-        for( i_sample = 0; i_sample < p_demux_track->i_sample_count; i_sample++ )
+        for( uint32_t i_sample = 0; i_sample < p_demux_track->i_sample_count; i_sample++ )
         {
             p_demux_track->p_sample_size[i_sample] =
                     stsz->i_entry_size[i_sample];
         }
     }
 
+    if ( p_demux_track->i_chunk_count )
+    {
+        mp4_chunk_t *lastchunk = &p_demux_track->chunk[p_demux_track->i_chunk_count - 1];
+        uint64_t i_total_size = lastchunk->i_offset;
+        for( uint32_t i=0; i<lastchunk->i_sample_count; i++)
+        {
+            if( p_demux_track->i_sample_size == 0 )
+                i_total_size += stsz->i_entry_size[i];
+            else
+                i_total_size += p_demux_track->i_sample_size;
+        }
+
+        if ( i_total_size > p_sys->moovfragment.i_chunk_range_max_offset )
+            p_sys->moovfragment.i_chunk_range_max_offset = i_total_size;
+    }
+
     /* Use stts table to create a sample number -> dts table.
      * XXX: if we don't want to waste too much memory, we can't expand
      *  the box! so each chunk will contain an "extract" of this table
      *  for fast research (problem with raw stream where a sample is sometime
      *  just channels*bits_per_sample/8 */
 
-    i_next_dts = 0;
-    i_index = 0; i_index_sample_used = 0;
-    for( i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
+     /* FIXME: refactor STTS & CTTS, STTS having now only few extra lines and
+      *        differing in 2/2 fields and 1 signedness */
+
+    mtime_t i_next_dts = 0;
+    /* Find stts
+     *  Gives mapping between sample and decoding time
+     */
+    p_box = MP4_BoxGet( p_demux_track->p_stbl, "stts" );
+    if( !p_box )
     {
-        mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
-        int64_t i_entry, i_sample_count, i;
+        msg_Warn( p_demux, "cannot find STTS box" );
+        return VLC_EGENERIC;
+    }
+    else
+    {
+        MP4_Box_data_stts_t *stts = p_box->data.p_stts;
 
-        /* save first dts */
-        ck->i_first_dts = i_next_dts;
-        ck->i_last_dts  = i_next_dts;
+        msg_Warn( p_demux, "STTS table of %"PRIu32" entries", stts->i_entry_count );
 
-        /* count how many entries are needed for this chunk
-         * for p_sample_delta_dts and p_sample_count_dts */
-        i_sample_count = ck->i_sample_count;
+        /* Create sample -> dts table per chunk */
+        uint32_t i_index = 0;
+        uint32_t i_current_index_samples_left = 0;
 
-        i_entry = 0;
-        while( i_sample_count > 0 )
+        for( uint32_t i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
         {
-            i_sample_count -= stts->i_sample_count[i_index+i_entry];
-            /* don't count already used sample in this entry */
-            if( i_entry == 0 )
-                i_sample_count += i_index_sample_used;
-
-            i_entry++;
-        }
-
-        /* allocate them */
-        ck->p_sample_count_dts = calloc( i_entry, sizeof( uint32_t ) );
-        ck->p_sample_delta_dts = calloc( i_entry, sizeof( uint32_t ) );
-
-        if( !ck->p_sample_count_dts || !ck->p_sample_delta_dts )
-            return VLC_ENOMEM;
+            mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
+            uint32_t i_entry, i_sample_count;
 
-        /* now copy */
-        i_sample_count = ck->i_sample_count;
-        for( i = 0; i < i_entry; i++ )
-        {
-            int64_t i_used;
-            int64_t i_rest;
+            /* save first dts */
+            ck->i_first_dts = i_next_dts;
+            ck->i_last_dts  = i_next_dts;
 
-            i_rest = stts->i_sample_count[i_index] - i_index_sample_used;
+            /* count how many entries are needed for this chunk
+             * for p_sample_delta_dts and p_sample_count_dts */
+            i_entry = 0;
 
-            i_used = __MIN( i_rest, i_sample_count );
+            int i_ret = xTTS_CountEntries( p_demux, &i_entry, i_index,
+                                           i_current_index_samples_left,
+                                           ck->i_sample_count,
+                                           stts->pi_sample_count,
+                                           stts->i_entry_count );
+            if ( i_ret != VLC_SUCCESS )
+                return i_ret;
 
-            i_index_sample_used += i_used;
-            i_sample_count -= i_used;
-            i_next_dts += i_used * stts->i_sample_delta[i_index];
+            /* allocate them */
+            ck->p_sample_count_dts = calloc( i_entry, sizeof( uint32_t ) );
+            ck->p_sample_delta_dts = calloc( i_entry, sizeof( uint32_t ) );
+            if( !ck->p_sample_count_dts || !ck->p_sample_delta_dts )
+            {
+                msg_Err( p_demux, "can't allocate memory for i_entry=%"PRIu32, i_entry );
+                return VLC_ENOMEM;
+            }
 
-            ck->p_sample_count_dts[i] = i_used;
-            ck->p_sample_delta_dts[i] = stts->i_sample_delta[i_index];
-            if( i_used > 0 )
-                ck->i_last_dts = i_next_dts - ck->p_sample_delta_dts[i];
+            /* now copy */
+            i_sample_count = ck->i_sample_count;
 
-            if( i_index_sample_used >= stts->i_sample_count[i_index] )
+            for( uint32_t i = 0; i < i_entry; i++ )
             {
-                i_index++;
-                i_index_sample_used = 0;
+                if ( i_current_index_samples_left )
+                {
+                    if ( i_current_index_samples_left > i_sample_count )
+                    {
+                        if ( i_sample_count ) ck->i_last_dts = i_next_dts;
+                        ck->p_sample_count_dts[i] = i_sample_count;
+                        ck->p_sample_delta_dts[i] = stts->pi_sample_delta[i_index];
+                        i_next_dts += ck->p_sample_count_dts[i] * stts->pi_sample_delta[i_index];
+                        i_current_index_samples_left -= i_sample_count;
+                        i_sample_count = 0;
+                        assert( i == i_entry - 1 );
+                        break;
+                    }
+                    else
+                    {
+                        if ( i_current_index_samples_left ) ck->i_last_dts = i_next_dts;
+                        ck->p_sample_count_dts[i] = i_current_index_samples_left;
+                        ck->p_sample_delta_dts[i] = stts->pi_sample_delta[i_index];
+                        i_next_dts += ck->p_sample_count_dts[i] * stts->pi_sample_delta[i_index];
+                        i_sample_count -= i_current_index_samples_left;
+                        i_current_index_samples_left = 0;
+                        i_index++;
+                    }
+                }
+                else
+                {
+                    if ( stts->pi_sample_count[i_index] > i_sample_count )
+                    {
+                        if ( i_sample_count ) ck->i_last_dts = i_next_dts;
+                        ck->p_sample_count_dts[i] = i_sample_count;
+                        ck->p_sample_delta_dts[i] = stts->pi_sample_delta[i_index];
+                        i_next_dts += ck->p_sample_count_dts[i] * stts->pi_sample_delta[i_index];
+                        i_current_index_samples_left = stts->pi_sample_count[i_index] - i_sample_count;
+                        i_sample_count = 0;
+                        assert( i == i_entry - 1 );
+                        // keep building from same index
+                    }
+                    else
+                    {
+                        if ( stts->pi_sample_count[i_index] ) ck->i_last_dts = i_next_dts;
+                        ck->p_sample_count_dts[i] = stts->pi_sample_count[i_index];
+                        ck->p_sample_delta_dts[i] = stts->pi_sample_delta[i_index];
+                        i_next_dts += ck->p_sample_count_dts[i] * stts->pi_sample_delta[i_index];
+                        i_sample_count -= stts->pi_sample_count[i_index];
+                        i_index++;
+                    }
+                }
+
             }
         }
     }
 
+
     /* Find ctts
      *  Gives the delta between decoding time (dts) and composition table (pts)
      */
     p_box = MP4_BoxGet( p_demux_track->p_stbl, "ctts" );
-    if( p_box )
+    if( p_box && p_box->data.p_ctts )
     {
         MP4_Box_data_ctts_t *ctts = p_box->data.p_ctts;
 
-        msg_Warn( p_demux, "CTTS table" );
+        msg_Warn( p_demux, "CTTS table of %"PRIu32" entries", ctts->i_entry_count );
 
         /* Create pts-dts table per chunk */
-        i_index = 0; i_index_sample_used = 0;
-        for( i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
+        uint32_t i_index = 0;
+        uint32_t i_current_index_samples_left = 0;
+
+        for( uint32_t i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
         {
             mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
-            int64_t i_entry, i_sample_count, i;
+            uint32_t i_entry, i_sample_count;
 
             /* count how many entries are needed for this chunk
-             * for p_sample_delta_dts and p_sample_count_dts */
-            i_sample_count = ck->i_sample_count;
-
+             * for p_sample_offset_pts and p_sample_count_pts */
             i_entry = 0;
-            while( i_sample_count > 0 )
-            {
-                i_sample_count -= ctts->i_sample_count[i_index+i_entry];
-
-                /* don't count already used sample in this entry */
-                if( i_entry == 0 )
-                    i_sample_count += i_index_sample_used;
-
-                i_entry++;
-            }
+            int i_ret = xTTS_CountEntries( p_demux, &i_entry, i_index,
+                                           i_current_index_samples_left,
+                                           ck->i_sample_count,
+                                           ctts->pi_sample_count,
+                                           ctts->i_entry_count );
+            if ( i_ret != VLC_SUCCESS )
+                return i_ret;
 
             /* allocate them */
             ck->p_sample_count_pts = calloc( i_entry, sizeof( uint32_t ) );
             ck->p_sample_offset_pts = calloc( i_entry, sizeof( int32_t ) );
             if( !ck->p_sample_count_pts || !ck->p_sample_offset_pts )
+            {
+                msg_Err( p_demux, "can't allocate memory for i_entry=%"PRIu32, i_entry );
                 return VLC_ENOMEM;
+            }
 
             /* now copy */
             i_sample_count = ck->i_sample_count;
-            for( i = 0; i < i_entry; i++ )
-            {
-                int64_t i_used;
-                int64_t i_rest;
-
-                i_rest = ctts->i_sample_count[i_index] -
-                    i_index_sample_used;
-
-                i_used = __MIN( i_rest, i_sample_count );
 
-                i_index_sample_used += i_used;
-                i_sample_count -= i_used;
-
-                ck->p_sample_count_pts[i] = i_used;
-                ck->p_sample_offset_pts[i] = ctts->i_sample_offset[i_index];
-
-                if( i_index_sample_used >= ctts->i_sample_count[i_index] )
+            for( uint32_t i = 0; i < i_entry; i++ )
+            {
+                if ( i_current_index_samples_left )
+                {
+                    if ( i_current_index_samples_left > i_sample_count )
+                    {
+                        ck->p_sample_count_pts[i] = i_sample_count;
+                        ck->p_sample_offset_pts[i] = ctts->pi_sample_offset[i_index];
+                        i_current_index_samples_left -= i_sample_count;
+                        i_sample_count = 0;
+                        assert( i == i_entry - 1 );
+                        break;
+                    }
+                    else
+                    {
+                        ck->p_sample_count_pts[i] = i_current_index_samples_left;
+                        ck->p_sample_offset_pts[i] = ctts->pi_sample_offset[i_index];
+                        i_sample_count -= i_current_index_samples_left;
+                        i_current_index_samples_left = 0;
+                        i_index++;
+                    }
+                }
+                else
                 {
-                    i_index++;
-                    i_index_sample_used = 0;
+                    if ( ctts->pi_sample_count[i_index] > i_sample_count )
+                    {
+                        ck->p_sample_count_pts[i] = i_sample_count;
+                        ck->p_sample_offset_pts[i] = ctts->pi_sample_offset[i_index];
+                        i_current_index_samples_left = ctts->pi_sample_count[i_index] - i_sample_count;
+                        i_sample_count = 0;
+                        assert( i == i_entry - 1 );
+                        // keep building from same index
+                    }
+                    else
+                    {
+                        ck->p_sample_count_pts[i] = ctts->pi_sample_count[i_index];
+                        ck->p_sample_offset_pts[i] = ctts->pi_sample_offset[i_index];
+                        i_sample_count -= ctts->pi_sample_count[i_index];
+                        i_index++;
+                    }
                 }
+
+
             }
         }
     }
 
-    msg_Dbg( p_demux, "track[Id 0x%x] read %d samples length:%"PRId64"s",
+    msg_Dbg( p_demux, "track[Id 0x%x] read %"PRIu32" samples length:%"PRId64"s",
              p_demux_track->i_track_ID, p_demux_track->i_sample_count,
              i_next_dts / p_demux_track->i_timescale );
 
     return VLC_SUCCESS;
 }
 
+
 /**
  * It computes the sample rate for a video track using the given sample
  * description index
  */
-static void TrackGetESSampleRate( unsigned *pi_num, unsigned *pi_den,
+static void TrackGetESSampleRate( demux_t *p_demux,
+                                  unsigned *pi_num, unsigned *pi_den,
                                   const mp4_track_t *p_track,
                                   unsigned i_sd_index,
                                   unsigned i_chunk )
@@ -1614,6 +2202,18 @@ static void TrackGetESSampleRate( unsigned *pi_num, unsigned *pi_den,
     *pi_num = 0;
     *pi_den = 0;
 
+    MP4_Box_t *p_trak = MP4_GetTrakByTrackID( MP4_BoxGet( p_demux->p_sys->p_root, "/moov" ),
+                                              p_track->i_track_ID );
+    MP4_Box_t *p_mdhd = MP4_BoxGet( p_trak, "mdia/mdhd" );
+    if ( p_mdhd && BOXDATA(p_mdhd) )
+    {
+        vlc_ureduce( pi_num, pi_den,
+                     (uint64_t) BOXDATA(p_mdhd)->i_timescale * p_track->i_sample_count,
+                     (uint64_t) BOXDATA(p_mdhd)->i_duration,
+                     UINT16_MAX );
+        return;
+    }
+
     if( p_track->i_chunk_count <= 0 )
         return;
 
@@ -1680,7 +2280,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                             i_sample_description_index - 1 );
 
     if( !p_sample ||
-        ( !p_sample->data.p_data && p_track->fmt.i_cat != SPU_ES ) )
+        ( !p_sample->data.p_payload && p_track->fmt.i_cat != SPU_ES ) )
     {
         msg_Warn( p_demux, "cannot find SampleEntry (track[Id 0x%x])",
                   p_track->i_track_ID );
@@ -1689,7 +2289,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
 
     p_track->p_sample = p_sample;
 
-    if( ( p_frma = MP4_BoxGet( p_track->p_sample, "sinf/frma" ) ) )
+    if( ( p_frma = MP4_BoxGet( p_track->p_sample, "sinf/frma" ) ) && p_frma->data.p_frma )
     {
         msg_Warn( p_demux, "Original Format Box: %4.4s", (char *)&p_frma->data.p_frma->i_type );
 
@@ -1706,6 +2306,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
     switch( p_track->fmt.i_cat )
     {
     case VIDEO_ES:
+        if ( !p_sample->data.p_sample_vide || p_sample->i_handler != ATOM_vide )
+            break;
         p_track->fmt.video.i_width = p_sample->data.p_sample_vide->i_width;
         p_track->fmt.video.i_height = p_sample->data.p_sample_vide->i_height;
         p_track->fmt.video.i_bits_per_pixel =
@@ -1737,9 +2339,11 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
         p_track->fmt.video.i_visible_height = p_track->fmt.video.i_height;
 
         /* Frame rate */
-        TrackGetESSampleRate( &p_track->fmt.video.i_frame_rate,
+        TrackGetESSampleRate( p_demux,
+                              &p_track->fmt.video.i_frame_rate,
                               &p_track->fmt.video.i_frame_rate_base,
                               p_track, i_sample_description_index, i_chunk );
+
         p_demux->p_sys->f_fps = (float)p_track->fmt.video.i_frame_rate /
                                 (float)p_track->fmt.video.i_frame_rate_base;
 
@@ -1759,6 +2363,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
         break;
 
     case AUDIO_ES:
+        if ( !p_sample->data.p_sample_soun || p_sample->i_handler != ATOM_soun )
+            break;
         p_track->fmt.audio.i_channels =
             p_sample->data.p_sample_soun->i_channelcount;
         p_track->fmt.audio.i_rate =
@@ -1769,11 +2375,12 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
         p_track->fmt.audio.i_bitspersample =
             p_sample->data.p_sample_soun->i_samplesize;
 
+        MP4_Box_data_sample_soun_t *p_soun = p_sample->data.p_sample_soun;
+
+        p_track->fmt.i_original_fourcc = p_sample->i_type;
+
         if( ( p_track->i_sample_size == 1 || p_track->i_sample_size == 2 ) )
         {
-            MP4_Box_data_sample_soun_t *p_soun;
-            p_soun = p_sample->data.p_sample_soun;
-
             if( p_soun->i_qt_version == 0 )
             {
                 switch( p_sample->i_type )
@@ -1823,8 +2430,6 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
         }
         else if( p_sample->data.p_sample_soun->i_qt_version == 1 )
         {
-            MP4_Box_data_sample_soun_t *p_soun = p_sample->data.p_sample_soun;
-
             switch( p_sample->i_type )
             {
                 case( VLC_FOURCC( '.', 'm', 'p', '3' ) ):
@@ -1834,8 +2439,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                             p_soun->i_qt_version = 0;
                         break;
                     }
-                case( VLC_FOURCC( 'a', 'c', '-', '3' ) ):
-                case( VLC_FOURCC( 'e', 'c', '-', '3' ) ):
+                case( ATOM_ac3 ):
+                case( ATOM_eac3 ):
                 case( VLC_FOURCC( 'm', 's', 0x20, 0x00 ) ):
                     p_soun->i_qt_version = 0;
                     break;
@@ -1851,13 +2456,48 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             msg_Err( p_demux, "Invalid sample per packet value for qt_version 1. Broken muxer!" );
             p_sample->data.p_sample_soun->i_qt_version = 0;
         }
+
+        /* Lookup for then channels extension */
+        const MP4_Box_t *p_chan = MP4_BoxGet( p_sample, "chan" );
+        if ( p_chan )
+        {
+            if ( BOXDATA(p_chan)->layout.i_channels_layout_tag == MP4_CHAN_USE_CHANNELS_BITMAP )
+            {
+                uint32_t rgi_chans_sequence[AOUT_CHAN_MAX + 1];
+                uint16_t i_vlc_mapping = 0;
+                uint8_t i_channels = 0;
+                const uint32_t i_bitmap = BOXDATA(p_chan)->layout.i_channels_bitmap;
+                for (uint8_t i=0;i<MP4_CHAN_BITMAP_MAPPING_COUNT;i++)
+                {
+                    if ( chan_bitmap_mapping[i].i_bitmap & i_bitmap )
+                    {
+                        i_channels++;
+                        if ( (chan_bitmap_mapping[i].i_vlc & i_vlc_mapping) ||
+                             i_channels > AOUT_CHAN_MAX )
+                        {
+                            /* double mapping or unsupported number of channels */
+                            i_vlc_mapping = 0;
+                            msg_Warn( p_demux, "discarding chan mapping" );
+                            break;
+                        }
+                        i_vlc_mapping |= chan_bitmap_mapping[i].i_vlc;
+                        rgi_chans_sequence[i_channels - 1] = chan_bitmap_mapping[i].i_vlc;
+                    }
+                }
+                rgi_chans_sequence[i_channels] = 0;
+                p_track->b_chans_reorder = !!
+                        aout_CheckChannelReorder( rgi_chans_sequence, NULL, i_vlc_mapping,
+                                                  p_track->rgi_chans_reordering );
+            }
+
+        }
+
         break;
 
     default:
         break;
     }
 
-
     /* It's a little ugly but .. there are special cases */
     switch( p_sample->i_type )
     {
@@ -1867,12 +2507,25 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             p_track->fmt.i_codec = VLC_CODEC_MPGA;
             break;
         }
-        case( VLC_FOURCC( 'a', 'c', '-', '3' ) ):
+        case( ATOM_eac3 ):
+        {
+            const MP4_Box_t *p_dec3 = MP4_BoxGet(  p_sample, "dec3", 0 );
+
+            p_track->fmt.i_codec = VLC_CODEC_EAC3;
+            if( p_dec3 && BOXDATA(p_dec3) )
+            {
+                p_track->fmt.audio.i_channels = 0;
+                p_track->fmt.i_bitrate = BOXDATA(p_dec3)->i_data_rate * 1000;
+                p_track->fmt.audio.i_bitspersample = 0;
+            }
+            break;
+        }
+        case( ATOM_ac3 ):
         {
-            MP4_Box_t *p_dac3_box = MP4_BoxGet(  p_sample, "dac3", 0 );
+            const MP4_Box_t *p_dac3 = MP4_BoxGet(  p_sample, "dac3", 0 );
 
             p_track->fmt.i_codec = VLC_CODEC_A52;
-            if( p_dac3_box )
+            if( p_dac3 && BOXDATA(p_dac3) )
             {
                 static const int pi_bitrate[] = {
                      32,  40,  48,  56,
@@ -1881,24 +2534,20 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                     256, 320, 384, 448,
                     512, 576, 640,
                 };
-                MP4_Box_data_dac3_t *p_dac3 = p_dac3_box->data.p_dac3;
                 p_track->fmt.audio.i_channels = 0;
                 p_track->fmt.i_bitrate = 0;
-                if( p_dac3->i_bitrate_code < sizeof(pi_bitrate)/sizeof(*pi_bitrate) )
-                    p_track->fmt.i_bitrate = pi_bitrate[p_dac3->i_bitrate_code] * 1000;
+                if( BOXDATA(p_dac3)->i_bitrate_code < sizeof(pi_bitrate)/sizeof(*pi_bitrate) )
+                    p_track->fmt.i_bitrate = pi_bitrate[BOXDATA(p_dac3)->i_bitrate_code] * 1000;
                 p_track->fmt.audio.i_bitspersample = 0;
             }
             break;
         }
-        case( VLC_FOURCC( 'e', 'c', '-', '3' ) ):
-        {
-            p_track->fmt.i_codec = VLC_CODEC_EAC3;
-            break;
-        }
 
         case( VLC_FOURCC( 'r', 'a', 'w', ' ' ) ):
         case( VLC_FOURCC( 'N', 'O', 'N', 'E' ) ):
         {
+            if ( p_sample->i_handler != ATOM_soun )
+                break;
             MP4_Box_data_sample_soun_t *p_soun = p_sample->data.p_sample_soun;
 
             if(p_soun && (p_soun->i_samplesize+7)/8 == 1 )
@@ -1910,10 +2559,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             if( p_sample->data.p_sample_soun && (p_track->i_timescale !=
                 p_sample->data.p_sample_soun->i_sampleratehi) )
             {
-                MP4_Box_data_sample_soun_t *p_soun =
-                    p_sample->data.p_sample_soun;
-
-                msg_Warn( p_demux, "i_timescale (%"PRIu64") != i_sampleratehi "
+                msg_Warn( p_demux, "i_timescale (%"PRId32") != i_sampleratehi "
                           "(%u), making both equal (report any problem).",
                           p_track->i_timescale, p_soun->i_sampleratehi );
 
@@ -1929,17 +2575,48 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             p_track->fmt.i_codec = VLC_CODEC_H263;
             break;
 
+        case( ATOM_c608 ): /* EIA608 closed captions */
+        //case( ATOM_c708 ): /* EIA708 closed captions */
+            p_track->fmt.i_codec = VLC_CODEC_EIA608_1;
+            p_track->fmt.i_cat = SPU_ES;
+            break;
+
         case( VLC_FOURCC( 't', 'e', 'x', 't' ) ):
         case( VLC_FOURCC( 't', 'x', '3', 'g' ) ):
-            p_track->fmt.i_codec = VLC_CODEC_SUBT;
-            /* FIXME: Not true, could be UTF-16 with a Byte Order Mark (0xfeff) */
+        {
+            if ( p_sample->i_handler != ATOM_text )
+                break;
+            p_track->fmt.i_codec = VLC_CODEC_TX3G;
+            MP4_Box_data_sample_text_t *p_text = p_sample->data.p_sample_text;
+            if ( p_text )
+            {
+                text_style_t *p_style = text_style_New();
+                if ( p_style )
+                {
+                    if ( p_text->i_font_size ) /* !WARN: % in absolute storage */
+                        p_style->i_font_size = p_text->i_font_size;
+                    if ( p_text->i_font_color )
+                    {
+                        p_style->i_font_color = p_text->i_font_color >> 8;
+                        p_style->i_font_alpha = p_text->i_font_color & 0xFF;
+                    }
+                    if ( p_text->i_background_color[3] >> 8 )
+                    {
+                        p_style->i_background_color = p_text->i_background_color[0] >> 8;
+                        p_style->i_background_color |= p_text->i_background_color[1] >> 8;
+                        p_style->i_background_color |= p_text->i_background_color[2] >> 8;
+                        p_style->i_background_alpha = p_text->i_background_color[3] >> 8;
+                    }
+                }
+                p_track->fmt.subs.p_style = p_style;
+            }
             /* FIXME UTF-8 doesn't work here ? */
             if( p_track->b_mac_encoding )
                 p_track->fmt.subs.psz_encoding = strdup( "MAC" );
             else
                 p_track->fmt.subs.psz_encoding = strdup( "UTF-8" );
             break;
-
+        }
         case VLC_FOURCC('y','v','1','2'):
             p_track->fmt.i_codec = VLC_CODEC_YV12;
             break;
@@ -1948,26 +2625,27 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             break;
 
         case VLC_FOURCC('i','n','2','4'):
-            p_track->fmt.i_codec = p_enda && p_enda->data.p_enda->i_little_endian == 1 ?
+            p_track->fmt.i_codec = p_enda && BOXDATA(p_enda)->i_little_endian == 1 ?
                                     VLC_FOURCC('4','2','n','i') : VLC_FOURCC('i','n','2','4');
             break;
         case VLC_FOURCC('i','n','3','2'):
-            p_track->fmt.i_codec = p_enda && p_enda->data.p_enda->i_little_endian == 1 ?
+            p_track->fmt.i_codec = p_enda && BOXDATA(p_enda)->i_little_endian == 1 ?
                                     VLC_CODEC_S32L : VLC_CODEC_S32B;
             break;
         case VLC_FOURCC('f','l','3','2'):
-            p_track->fmt.i_codec = p_enda && p_enda->data.p_enda->i_little_endian == 1 ?
+            p_track->fmt.i_codec = p_enda && BOXDATA(p_enda)->i_little_endian == 1 ?
                                     VLC_CODEC_F32L : VLC_CODEC_F32B;
             break;
         case VLC_FOURCC('f','l','6','4'):
-            p_track->fmt.i_codec = p_enda && p_enda->data.p_enda->i_little_endian == 1 ?
+            p_track->fmt.i_codec = p_enda && BOXDATA(p_enda)->i_little_endian == 1 ?
                                     VLC_CODEC_F64L : VLC_CODEC_F64B;
             break;
         case VLC_CODEC_DVD_LPCM:
         {
+            if ( p_sample->i_handler != ATOM_soun )
+                break;
             MP4_Box_data_sample_soun_t *p_soun = p_sample->data.p_sample_soun;
-            if( p_soun->i_qt_version == 2 &&
-                p_soun->i_qt_description > 20 + 28 )
+            if( p_soun->i_qt_version == 2 )
             {
                 /* Flags:
                  *  0x01: IsFloat
@@ -2005,17 +2683,16 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
 
                     {0, 0, 0, 0}
                 };
-                uint32_t i_bits  = GetDWBE(&p_soun->p_qt_description[20 + 20]);
-                uint32_t i_flags = GetDWBE(&p_soun->p_qt_description[20 + 24]);
 
                 for( int i = 0; p_formats[i].i_codec; i++ )
                 {
-                    if( p_formats[i].i_bits == i_bits &&
-                        (i_flags & p_formats[i].i_mask) == p_formats[i].i_flags )
+                    if( p_formats[i].i_bits == p_soun->i_constbitsperchannel &&
+                        (p_soun->i_formatflags & p_formats[i].i_mask) == p_formats[i].i_flags )
                     {
                         p_track->fmt.i_codec = p_formats[i].i_codec;
-                        p_track->fmt.audio.i_bitspersample = i_bits;
-                        p_track->fmt.audio.i_blockalign = p_soun->i_channelcount * i_bits / 8;
+                        p_track->fmt.audio.i_bitspersample = p_soun->i_constbitsperchannel;
+                        p_track->fmt.audio.i_blockalign =
+                                p_soun->i_channelcount * p_soun->i_constbitsperchannel / 8;
                         p_track->i_sample_size = p_track->fmt.audio.i_blockalign;
 
                         p_soun->i_qt_version = 0;
@@ -2032,6 +2709,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
 
     /* now see if esds is present and if so create a data packet
         with decoder_specific_info  */
+
+    /* Only if MP4V */
 #define p_decconfig p_esds->data.p_esds->es_descriptor.p_decConfigDescr
     if( ( ( p_esds = MP4_BoxGet( p_sample, "esds" ) ) ||
           ( p_esds = MP4_BoxGet( p_sample, "wave/esds" ) ) )&&
@@ -2039,7 +2718,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
         ( p_decconfig ) )
     {
         /* First update information based on i_objectTypeIndication */
-        switch( p_decconfig->i_objectTypeIndication )
+        switch( p_decconfig->i_objectProfileIndication )
         {
             case( 0x20 ): /* MPEG4 VIDEO */
                 p_track->fmt.i_codec = VLC_CODEC_MP4V;
@@ -2132,8 +2811,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             default:
                 /* Unknown entry, but don't touch i_fourcc */
                 msg_Warn( p_demux,
-                          "unknown objectTypeIndication(0x%x) (Track[ID 0x%x])",
-                          p_decconfig->i_objectTypeIndication,
+                          "unknown objectProfileIndication(0x%x) (Track[ID 0x%x])",
+                          p_decconfig->i_objectProfileIndication,
                           p_track->i_track_ID );
                 break;
         }
@@ -2144,6 +2823,16 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             memcpy( p_track->fmt.p_extra, p_decconfig->p_decoder_specific_info,
                     p_track->fmt.i_extra );
         }
+        if( p_track->fmt.i_codec == VLC_CODEC_SPU &&
+            p_track->fmt.i_extra >= 16 * 4 )
+        {
+            for( int i = 0; i < 16; i++ )
+            {
+                p_track->fmt.subs.spu.palette[1 + i] =
+                            GetDWBE((char*)p_track->fmt.p_extra + i * 4);
+            }
+            p_track->fmt.subs.spu.palette[0] = 0xBeef;
+        }
     }
     else
     {
@@ -2170,6 +2859,9 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             case VLC_FOURCC( 'V', 'P', '3', '1' ):
             case VLC_FOURCC( '3', 'I', 'V', '1' ):
             case VLC_FOURCC( 'Z', 'y', 'G', 'o' ):
+            {
+                if ( p_sample->i_handler != ATOM_vide )
+                    break;
                 p_track->fmt.i_extra =
                     p_sample->data.p_sample_vide->i_qt_image_description;
                 if( p_track->fmt.i_extra > 0 )
@@ -2180,6 +2872,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                             p_track->fmt.i_extra);
                 }
                 break;
+            }
 
             case VLC_CODEC_AMR_NB:
                 p_track->fmt.audio.i_rate = 8000;
@@ -2190,6 +2883,9 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             case VLC_FOURCC( 'Q', 'D', 'M', 'C' ):
             case VLC_CODEC_QDM2:
             case VLC_CODEC_ALAC:
+            {
+                if ( p_sample->i_handler != ATOM_soun )
+                    break;
                 p_track->fmt.i_extra =
                     p_sample->data.p_sample_soun->i_qt_description;
                 if( p_track->fmt.i_extra > 0 )
@@ -2205,17 +2901,17 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                     p_track->fmt.audio.i_rate = GetDWBE((uint8_t*)p_track->fmt.p_extra + 52);
                 }
                 break;
-
+            }
             case VLC_FOURCC( 'v', 'c', '-', '1' ):
             {
                 MP4_Box_t *p_dvc1 = MP4_BoxGet( p_sample, "dvc1" );
-                if( p_dvc1 )
+                if( p_dvc1 && BOXDATA(p_dvc1) )
                 {
-                    p_track->fmt.i_extra = p_dvc1->data.p_dvc1->i_vc1;
+                    p_track->fmt.i_extra = BOXDATA(p_dvc1)->i_vc1;
                     if( p_track->fmt.i_extra > 0 )
                     {
-                        p_track->fmt.p_extra = malloc( p_dvc1->data.p_dvc1->i_vc1 );
-                        memcpy( p_track->fmt.p_extra, p_dvc1->data.p_dvc1->p_vc1,
+                        p_track->fmt.p_extra = malloc( BOXDATA(p_dvc1)->i_vc1 );
+                        memcpy( p_track->fmt.p_extra, BOXDATA(p_dvc1)->p_vc1,
                                 p_track->fmt.i_extra );
                     }
                 }
@@ -2231,13 +2927,13 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             {
                 MP4_Box_t *p_avcC = MP4_BoxGet( p_sample, "avcC" );
 
-                if( p_avcC )
+                if( p_avcC && BOXDATA(p_avcC) )
                 {
-                    p_track->fmt.i_extra = p_avcC->data.p_avcC->i_avcC;
+                    p_track->fmt.i_extra = BOXDATA(p_avcC)->i_avcC;
                     if( p_track->fmt.i_extra > 0 )
                     {
-                        p_track->fmt.p_extra = malloc( p_avcC->data.p_avcC->i_avcC );
-                        memcpy( p_track->fmt.p_extra, p_avcC->data.p_avcC->p_avcC,
+                        p_track->fmt.p_extra = malloc( BOXDATA(p_avcC)->i_avcC );
+                        memcpy( p_track->fmt.p_extra, BOXDATA(p_avcC)->p_avcC,
                                 p_track->fmt.i_extra );
                     }
                 }
@@ -2248,16 +2944,17 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                 break;
             }
             case VLC_FOURCC( 'h', 'v', 'c', '1' ):
+            case VLC_FOURCC( 'h', 'e', 'v', '1' ):
             {
                 MP4_Box_t *p_hvcC = MP4_BoxGet( p_sample, "hvcC" );
 
-                if( p_hvcC )
+                if( p_hvcC && BOXDATA(p_hvcC) )
                 {
-                    p_track->fmt.i_extra = p_hvcC->data.p_hvcC->i_hvcC;
+                    p_track->fmt.i_extra = BOXDATA(p_hvcC)->i_hvcC;
                     if( p_track->fmt.i_extra > 0 )
                     {
-                        p_track->fmt.p_extra = malloc( p_hvcC->data.p_hvcC->i_hvcC );
-                        memcpy( p_track->fmt.p_extra, p_hvcC->data.p_hvcC->p_hvcC,
+                        p_track->fmt.p_extra = malloc( BOXDATA(p_hvcC)->i_hvcC );
+                        memcpy( p_track->fmt.p_extra, BOXDATA(p_hvcC)->p_hvcC,
                                 p_track->fmt.i_extra );
                     }
                     p_track->fmt.i_codec = VLC_CODEC_HEVC;
@@ -2273,8 +2970,11 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             case VLC_CODEC_ADPCM_MS:
             case VLC_CODEC_ADPCM_IMA_WAV:
             case VLC_CODEC_QCELP:
-                p_track->fmt.audio.i_blockalign = p_sample->data.p_sample_soun->i_bytes_per_frame;
+            {
+                if ( p_sample->i_handler == ATOM_soun )
+                    p_track->fmt.audio.i_blockalign = p_sample->data.p_sample_soun->i_bytes_per_frame;
                 break;
+            }
 
             default:
                 msg_Dbg( p_demux, "Unrecognized FourCC %4.4s", (char *)&p_sample->i_type );
@@ -2310,14 +3010,14 @@ static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
 
     /* handle elst (find the correct one) */
     MP4_TrackSetELST( p_demux, p_track, i_start );
-    if( p_track->p_elst && p_track->p_elst->data.p_elst->i_entry_count > 0 )
+    if( p_track->p_elst && p_track->BOXDATA(p_elst)->i_entry_count > 0 )
     {
-        MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
-        int64_t i_mvt= i_start * p_sys->i_timescale / (int64_t)1000000;
+        MP4_Box_data_elst_t *elst = p_track->BOXDATA(p_elst);
+        int64_t i_mvt= i_start * p_sys->i_timescale / CLOCK_FREQ;
 
         /* now calculate i_start for this elst */
         /* offset */
-        i_start -= p_track->i_elst_time * INT64_C(1000000) / p_sys->i_timescale;
+        i_start -= p_track->i_elst_time * CLOCK_FREQ / p_sys->i_timescale;
         if( i_start < 0 )
         {
             *pi_chunk = 0;
@@ -2326,7 +3026,7 @@ static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
             return VLC_SUCCESS;
         }
         /* to track time scale */
-        i_start  = i_start * p_track->i_timescale / (int64_t)1000000;
+        i_start  = i_start * p_track->i_timescale / CLOCK_FREQ;
         /* add elst offset */
         if( ( elst->i_media_rate_integer[p_track->i_elst] > 0 ||
              elst->i_media_rate_fraction[p_track->i_elst] > 0 ) &&
@@ -2343,7 +3043,7 @@ static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
     else
     {
         /* convert absolute time to in timescale unit */
-        i_start = i_start * p_track->i_timescale / (int64_t)1000000;
+        i_start = i_start * p_track->i_timescale / CLOCK_FREQ;
     }
 
     /* we start from sample 0/chunk 0, hope it won't take too much time */
@@ -2414,7 +3114,7 @@ static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
                 i_sample < p_stss->i_sample_number[i_index+1] )
             {
                 unsigned i_sync_sample = p_stss->i_sample_number[i_index];
-                msg_Dbg( p_demux, "stts gives %d --> %d (sample number)",
+                msg_Dbg( p_demux, "stss gives %d --> %d (sample number)",
                          i_sample, i_sync_sample );
 
                 if( i_sync_sample <= i_sample )
@@ -2533,15 +3233,15 @@ static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
 
     /* do we launch this track by default ? */
     p_track->b_enable =
-        ( ( p_tkhd->data.p_tkhd->i_flags&MP4_TRACK_ENABLED ) != 0 );
+        ( ( BOXDATA(p_tkhd)->i_flags&MP4_TRACK_ENABLED ) != 0 );
     if( !p_track->b_enable )
         p_track->fmt.i_priority = ES_PRIORITY_NOT_DEFAULTABLE;
 
-    p_track->i_track_ID = p_tkhd->data.p_tkhd->i_track_ID;
+    p_track->i_track_ID = BOXDATA(p_tkhd)->i_track_ID;
 
-    p_track->i_width = p_tkhd->data.p_tkhd->i_width / 65536;
-    p_track->i_height = p_tkhd->data.p_tkhd->i_height / 65536;
-    p_track->f_rotation = p_tkhd->data.p_tkhd->f_rotation;
+    p_track->i_width = BOXDATA(p_tkhd)->i_width / BLOCK16x16;
+    p_track->i_height = BOXDATA(p_tkhd)->i_height / BLOCK16x16;
+    p_track->f_rotation = BOXDATA(p_tkhd)->f_rotation;
 
     if( p_tref )
     {
@@ -2556,23 +3256,12 @@ static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
         return;
     }
 
-    p_track->i_timescale = p_mdhd->data.p_mdhd->i_timescale;
+    p_track->i_timescale = BOXDATA(p_mdhd)->i_timescale;
     if( p_track->i_timescale == 0 )
         return;
 
-    if( p_mdhd->data.p_mdhd->i_language_code < 0x400 )
-    {
-        strcpy( language, MP4_ConvertMacCode( p_mdhd->data.p_mdhd->i_language_code ) );
-        p_track->b_mac_encoding = true;
-    }
-    else if( p_mdhd->data.p_mdhd->i_language_code == 0x7fff )
-        p_track->b_mac_encoding = true;
-    else
-    {
-        for( unsigned i = 0; i < 3; i++ )
-            language[i] = p_mdhd->data.p_mdhd->i_language[i];
-        language[3] = '\0';
-    }
+    memcpy( &language, BOXDATA(p_mdhd)->rgs_language, 3 );
+    p_track->b_mac_encoding = BOXDATA(p_mdhd)->b_mac_encoding;
 
     switch( p_hdlr->data.p_hdlr->i_handler_type )
     {
@@ -2592,10 +3281,16 @@ static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
             p_track->fmt.i_cat = VIDEO_ES;
             break;
 
+        case( ATOM_tx3g ):
         case( ATOM_text ):
         case( ATOM_subp ):
-        case( ATOM_tx3g ):
         case( ATOM_sbtl ):
+            p_track->fmt.i_codec = VLC_CODEC_TX3G;
+            p_track->fmt.i_cat = SPU_ES;
+            break;
+
+        /* closed captions */
+        case( ATOM_clcp ):
             p_track->fmt.i_cat = SPU_ES;
             break;
 
@@ -2607,7 +3302,7 @@ static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
     p_track->i_elst_time = 0;
     if( ( p_track->p_elst = p_elst = MP4_BoxGet( p_box_trak, "edts/elst" ) ) )
     {
-        MP4_Box_data_elst_t *elst = p_elst->data.p_elst;
+        MP4_Box_data_elst_t *elst = BOXDATA(p_elst);
         unsigned int i;
 
         msg_Warn( p_demux, "elst box found" );
@@ -2666,6 +3361,7 @@ static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
     if( TrackCreateChunksIndex( p_demux,p_track  ) ||
         TrackCreateSamplesIndex( p_demux, p_track ) )
     {
+        msg_Err( p_demux, "cannot create chunks index" );
         return; /* cannot create chunks index */
     }
 
@@ -2835,7 +3531,6 @@ static int MP4_TrackSeek( demux_t *p_demux, mp4_track_t *p_track,
     }
 
     p_track->b_selected = true;
-
     if( !TrackGotoChunkSample( p_demux, p_track, i_chunk, i_sample ) )
         p_track->b_selected = true;
 
@@ -2848,54 +3543,93 @@ static int MP4_TrackSeek( demux_t *p_demux, mp4_track_t *p_track,
  *
  */
 #define QT_V0_MAX_SAMPLES 1024
-static int MP4_TrackSampleSize( mp4_track_t *p_track, int *pi_nb_samples )
+static uint32_t MP4_TrackGetReadSize( mp4_track_t *p_track, uint32_t *pi_nb_samples )
 {
-    int i_size;
-    MP4_Box_data_sample_soun_t *p_soun;
-
-    if( p_track->i_sample_size == 0 )
-    {
-        /* most simple case */
-        return p_track->p_sample_size[p_track->i_sample];
-    }
-    if( p_track->fmt.i_cat != AUDIO_ES )
-    {
-        return p_track->i_sample_size;
-    }
+    uint32_t i_size = 0;
+    *pi_nb_samples = 0;
 
-    p_soun = p_track->p_sample->data.p_sample_soun;
+    if ( p_track->i_sample == p_track->i_sample_count )
+        return 0;
 
-    if( p_soun->i_qt_version == 1 )
+    if ( p_track->fmt.i_cat != AUDIO_ES )
     {
-        int i_samples = p_track->chunk[p_track->i_chunk].i_sample_count;
-        if( p_track->fmt.audio.i_blockalign > 1 )
-            i_samples = p_soun->i_sample_per_packet;
+        *pi_nb_samples = 1;
 
-        i_size = i_samples / p_soun->i_sample_per_packet * p_soun->i_bytes_per_frame;
-    }
-    else if( p_track->i_sample_size > 256 )
-    {
-        /* We do that so we don't read too much data
-         * (in this case we are likely dealing with compressed data) */
-        i_size = p_track->i_sample_size;
+        if( p_track->i_sample_size == 0 ) /* all sizes are different */
+            return p_track->p_sample_size[p_track->i_sample];
+        else
+            return p_track->i_sample_size;
     }
     else
     {
-        mp4_chunk_t *p_chunk = &p_track->chunk[p_track->i_chunk];
-        int64_t i_length = CLOCK_FREQ / 10;
-        int i_samples = 1;
-        int64_t i_maxsamples = 1;
-        for( uint32_t i=p_track->i_sample; i<p_chunk->i_sample_count; i++ )
+        const MP4_Box_data_sample_soun_t *p_soun = p_track->p_sample->data.p_sample_soun;
+        const mp4_chunk_t *p_chunk = &p_track->chunk[p_track->i_chunk];
+        uint32_t i_max_samples = p_chunk->i_sample_count - p_chunk->i_sample + 1;
+
+        /* Group audio packets so we don't call demux for single sample unit */
+        if( p_track->fmt.i_original_fourcc == VLC_CODEC_DVD_LPCM &&
+            p_soun->i_constLPCMframesperaudiopacket &&
+            p_soun->i_constbytesperaudiopacket )
+        {
+            /* uncompressed case */
+            uint32_t i_packets = i_max_samples / p_soun->i_constLPCMframesperaudiopacket;
+            if ( UINT32_MAX / p_soun->i_constbytesperaudiopacket < i_packets )
+                i_packets = UINT32_MAX / p_soun->i_constbytesperaudiopacket;
+            *pi_nb_samples = i_packets * p_soun->i_constLPCMframesperaudiopacket;
+            return i_packets * p_soun->i_constbytesperaudiopacket;
+        }
+
+        /* all samples have a different size */
+        if( p_track->i_sample_size == 0 )
+        {
+            *pi_nb_samples = 1;
+            return p_track->p_sample_size[p_track->i_sample];
+        }
+
+        if( p_soun->i_qt_version == 1 )
         {
-            i_length -= CLOCK_FREQ * p_chunk->p_sample_delta_dts[i] / p_track->i_timescale;
-            if ( i_length < 0 ) break;
-            i_maxsamples++;
+            if ( p_soun->i_compressionid != 0 || p_soun->i_bytes_per_sample > 1 ) /* compressed */
+            {
+                /* in this case we are dealing with compressed data
+                   -2 in V1: additional fields are meaningless (VBR and such) */
+                *pi_nb_samples = i_max_samples;//p_track->chunk[p_track->i_chunk].i_sample_count;
+                if( p_track->fmt.audio.i_blockalign > 1 )
+                    *pi_nb_samples = p_soun->i_sample_per_packet;
+                i_size = *pi_nb_samples / p_soun->i_sample_per_packet * p_soun->i_bytes_per_frame;
+                return i_size;
+            }
+            else /* uncompressed case */
+            {
+                uint32_t i_packets;
+                if( p_track->fmt.audio.i_blockalign > 1 )
+                    i_packets = 1;
+                else
+                    i_packets = i_max_samples / p_soun->i_sample_per_packet;
+
+                if ( UINT32_MAX / p_soun->i_bytes_per_frame < i_packets )
+                    i_packets = UINT32_MAX / p_soun->i_bytes_per_frame;
+
+                *pi_nb_samples = i_packets * p_soun->i_sample_per_packet;
+                i_size = i_packets * p_soun->i_bytes_per_frame;
+                return i_size;
+            }
         }
 
-        i_samples = __MIN( QT_V0_MAX_SAMPLES, i_samples );
-        i_samples = __MIN( i_maxsamples, i_samples );
-        i_size = i_samples * p_track->i_sample_size;
-        *pi_nb_samples = i_samples;
+        /* uncompressed v0 */
+        *pi_nb_samples = 0;
+        for( uint32_t i=p_track->i_sample;
+             i<p_chunk->i_sample_first+p_chunk->i_sample_count &&
+             i<p_track->i_sample_count;
+             i++ )
+        {
+            (*pi_nb_samples)++;
+            if ( p_track->i_sample_size == 0 )
+                i_size += p_track->p_sample_size[i];
+            else
+                i_size += p_track->i_sample_size;
+            if ( *pi_nb_samples == QT_V0_MAX_SAMPLES )
+                break;
+        }
     }
 
     //fprintf( stderr, "size=%d\n", i_size );
@@ -2940,47 +3674,16 @@ static uint64_t MP4_TrackGetPos( mp4_track_t *p_track )
     return i_pos;
 }
 
-static int MP4_TrackNextSample( demux_t *p_demux, mp4_track_t *p_track, int i_samples )
+static int MP4_TrackNextSample( demux_t *p_demux, mp4_track_t *p_track, uint32_t i_samples )
 {
-    if( p_track->fmt.i_cat == AUDIO_ES && p_track->i_sample_size != 0 )
-    {
-        MP4_Box_data_sample_soun_t *p_soun;
-
-        p_soun = p_track->p_sample->data.p_sample_soun;
-
-        if( p_soun->i_qt_version == 1 )
-        {
-            /* we read chunk by chunk unless a blockalign is requested */
-            if( p_track->fmt.audio.i_blockalign > 1 )
-                p_track->i_sample += p_soun->i_sample_per_packet;
-            else
-                p_track->i_sample += p_track->chunk[p_track->i_chunk].i_sample_count;
-        }
-        else if( p_track->i_sample_size > 256 )
-        {
-            /* We do that so we don't read too much data
-             * (in this case we are likely dealing with compressed data) */
-            p_track->i_sample += 1;
-        }
-        else
-        {
-            /* FIXME */
-            p_track->i_sample += i_samples;
-            if( p_track->i_sample >
-                p_track->chunk[p_track->i_chunk].i_sample_first +
-                p_track->chunk[p_track->i_chunk].i_sample_count )
-            {
-                p_track->i_sample =
-                    p_track->chunk[p_track->i_chunk].i_sample_first +
-                    p_track->chunk[p_track->i_chunk].i_sample_count;
-            }
-        }
-    }
-    else
+    if ( UINT32_MAX - p_track->i_sample < i_samples )
     {
-        p_track->i_sample++;
+        p_track->i_sample = UINT32_MAX;
+        return VLC_EGENERIC;
     }
 
+    p_track->i_sample += i_samples;
+
     if( p_track->i_sample >= p_track->i_sample_count )
         return VLC_EGENERIC;
 
@@ -3000,12 +3703,12 @@ static int MP4_TrackNextSample( demux_t *p_demux, mp4_track_t *p_track, int i_sa
     }
 
     /* Have we changed elst */
-    if( p_track->p_elst && p_track->p_elst->data.p_elst->i_entry_count > 0 )
+    if( p_track->p_elst && p_track->BOXDATA(p_elst)->i_entry_count > 0 )
     {
         demux_sys_t *p_sys = p_demux->p_sys;
-        MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
+        MP4_Box_data_elst_t *elst = p_track->BOXDATA(p_elst);
         uint64_t i_mvt = MP4_TrackGetDTS( p_demux, p_track ) *
-                        p_sys->i_timescale / (int64_t)1000000;
+                        p_sys->i_timescale / CLOCK_FREQ;
 
         if( (unsigned int)p_track->i_elst < elst->i_entry_count &&
             i_mvt >= p_track->i_elst_time +
@@ -3028,10 +3731,10 @@ static void MP4_TrackSetELST( demux_t *p_demux, mp4_track_t *tk,
     /* handle elst (find the correct one) */
     tk->i_elst      = 0;
     tk->i_elst_time = 0;
-    if( tk->p_elst && tk->p_elst->data.p_elst->i_entry_count > 0 )
+    if( tk->p_elst && tk->BOXDATA(p_elst)->i_entry_count > 0 )
     {
-        MP4_Box_data_elst_t *elst = tk->p_elst->data.p_elst;
-        int64_t i_mvt= i_time * p_sys->i_timescale / (int64_t)1000000;
+        MP4_Box_data_elst_t *elst = tk->BOXDATA(p_elst);
+        int64_t i_mvt= i_time * p_sys->i_timescale / CLOCK_FREQ;
 
         for( tk->i_elst = 0; (unsigned int)tk->i_elst < elst->i_entry_count; tk->i_elst++ )
         {
@@ -3063,47 +3766,6 @@ static void MP4_TrackSetELST( demux_t *p_demux, mp4_track_t *tk,
     }
 }
 
-/* */
-static const char *MP4_ConvertMacCode( uint16_t i_code )
-{
-    static const struct { const char psz_iso639_1[3]; uint16_t i_code; } p_cvt[] = {
-        { "en",   0 }, { "fr",   1 }, { "de",   2 }, { "it",   3 }, { "nl",   4 },
-        { "sv",   5 }, { "es",   6 }, { "da",   7 }, { "pt",   8 }, { "no",   9 },
-        { "he",  10 }, { "ja",  11 }, { "ar",  12 }, { "fi",  13 }, { "el",  14 },
-        { "is",  15 }, { "mt",  16 }, { "tr",  17 }, { "hr",  18 }, { "zh",  19 },
-        { "ur",  20 }, { "hi",  21 }, { "th",  22 }, { "ko",  23 }, { "lt",  24 },
-        { "pl",  25 }, { "hu",  26 }, { "et",  27 }, { "lv",  28 }, //{ "??",  29 },
-        { "fo",  30 }, { "fa",  31 }, { "ru",  32 }, { "zh",  33 }, { "nl",  34 },
-        { "ga",  35 }, { "sq",  36 }, { "ro",  37 }, { "cs",  38 }, { "sk",  39 },
-        { "sl",  40 }, { "yi",  41 }, { "sr",  42 }, { "mk",  43 }, { "bg",  44 },
-        { "uk",  45 }, { "be",  46 }, { "uz",  47 }, { "az",  48 }, { "kk",  48 },
-        { "az",  50 }, { "hy",  51 }, { "ka",  52 }, { "mo",  53 }, { "ky",  54 },
-        { "tg",  55 }, { "tk",  56 }, { "mn",  57 }, { "mn",  58 }, { "ps",  59 },
-        { "ku",  60 }, { "ks",  61 }, { "sd",  62 }, { "bo",  63 }, { "ne",  64 },
-        { "sa",  65 }, { "mr",  66 }, { "bn",  67 }, { "as",  68 }, { "gu",  69 },
-        { "pa",  70 }, { "or",  71 }, { "ml",  72 }, { "kn",  73 }, { "ta",  74 },
-        { "te",  75 }, { "si",  76 }, { "my",  77 }, { "km",  78 }, { "lo",  79 },
-        { "vi",  80 }, { "id",  81 }, { "tl",  82 }, { "ms",  83 }, { "ms",  84 },
-        { "am",  85 }, { "ti",  86 }, { "om",  87 }, { "so",  88 }, { "sw",  89 },
-        { "rw",  90 }, { "rn",  91 }, { "ny",  92 }, { "mg",  93 }, { "eo",  94 },
-
-                                                     { "cy", 128 }, { "eu", 129 },
-        { "ca", 130 }, { "la", 131 }, { "qu", 132 }, { "gn", 133 }, { "ay", 134 },
-        { "tt", 135 }, { "ug", 136 }, { "dz", 137 }, { "jv", 138 }, { "su", 139 },
-        { "gl", 140 }, { "af", 141 }, { "br", 142 }, { "iu", 143 }, { "gd", 144 },
-        { "gv", 145 }, { "ga", 146 }, { "to", 147 }, { "el", 148 },
-        /* */
-        { "", 0 }
-    };
-    int i;
-    for( i = 0; *p_cvt[i].psz_iso639_1; i++ )
-    {
-        if( p_cvt[i].i_code == i_code )
-            return p_cvt[i].psz_iso639_1;
-    }
-    return "";
-}
-
 /******************************************************************************
  *     Here are the functions used for fragmented MP4
  *****************************************************************************/
@@ -3219,7 +3881,7 @@ static int MP4_frg_TrackCreate( demux_t *p_demux, mp4_track_t *p_track, MP4_Box_
 {
     demux_sys_t *p_sys = p_demux->p_sys;
     int ret;
-    MP4_Box_data_stra_t *p_data = p_stra->data.p_stra;
+    MP4_Box_data_stra_t *p_data = BOXDATA(p_stra);
     if( !p_data )
         return VLC_EGENERIC;
 
@@ -3308,7 +3970,7 @@ static int MP4_frg_TrackCreate( demux_t *p_demux, mp4_track_t *p_track, MP4_Box_
 /**
  * Return the track identified by tid
  */
-static mp4_track_t *MP4_frg_GetTrack( demux_t *p_demux, const uint32_t tid )
+static mp4_track_t *MP4_frg_GetTrackByID( demux_t *p_demux, const uint32_t tid )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
 
@@ -3316,8 +3978,6 @@ static mp4_track_t *MP4_frg_GetTrack( demux_t *p_demux, const uint32_t tid )
     for( unsigned i = 0; i < p_sys->i_tracks; i++ )
     {
         ret = &p_sys->track[i];
-        if( !ret )
-            return NULL;
         if( ret->i_track_ID == tid )
             return ret;
     }
@@ -3358,7 +4018,7 @@ static void FlushChunk( demux_t *p_demux, mp4_track_t *tk )
         else
             p_block->i_pts = VLC_TS_INVALID;
 
-        es_out_Send( p_demux->out, tk->p_es, p_block );
+        MP4_Block_Send( p_demux, tk, p_block );
 
         tk->i_sample++;
     }
@@ -3446,18 +4106,18 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
         return VLC_EGENERIC;
     }
 
-    uint32_t i_track_ID = p_tfhd->data.p_tfhd->i_track_ID;
+    uint32_t i_track_ID = BOXDATA(p_tfhd)->i_track_ID;
     *i_tk_id = i_track_ID;
     assert( i_track_ID > 0 );
     msg_Dbg( p_demux, "GetChunk: track ID is %"PRIu32"", i_track_ID );
 
-    mp4_track_t *p_track = MP4_frg_GetTrack( p_demux, i_track_ID );
+    mp4_track_t *p_track = MP4_frg_GetTrackByID( p_demux, i_track_ID );
     if( !p_track )
         return VLC_EGENERIC;
 
     mp4_chunk_t *ret = p_track->cchunk;
 
-    if( p_tfhd->data.p_tfhd->b_empty )
+    if( BOXDATA(p_tfhd)->b_empty )
         msg_Warn( p_demux, "No samples in this chunk!" );
 
     /* Usually we read 100 ms of each track. However, suppose we have two tracks,
@@ -3479,12 +4139,12 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
         FreeAndResetChunk( ret );
 
     uint32_t default_duration = 0;
-    if( p_tfhd->data.p_tfhd->i_flags & MP4_TFHD_DFLT_SAMPLE_DURATION )
-        default_duration = p_tfhd->data.p_tfhd->i_default_sample_duration;
+    if( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DFLT_SAMPLE_DURATION )
+        default_duration = BOXDATA(p_tfhd)->i_default_sample_duration;
 
     uint32_t default_size = 0;
-    if( p_tfhd->data.p_tfhd->i_flags & MP4_TFHD_DFLT_SAMPLE_SIZE )
-        default_size = p_tfhd->data.p_tfhd->i_default_sample_size;
+    if( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DFLT_SAMPLE_SIZE )
+        default_size = BOXDATA(p_tfhd)->i_default_sample_size;
 
     MP4_Box_t *p_trun = MP4_BoxGet( p_traf, "trun");
     if( p_trun == NULL)
@@ -3508,9 +4168,12 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
      * more than one subsegment. */
     if( !default_duration )
     {
-        if( p_sidx )
+        MP4_Box_t *p_trex = MP4_GetTrexByTrackID( p_moof, i_track_ID );
+        if ( p_trex )
+            default_duration = BOXDATA(p_trex)->i_default_sample_duration;
+        else if( p_sidx )
         {
-            MP4_Box_data_sidx_t *p_sidx_data = p_sidx->data.p_sidx;
+            MP4_Box_data_sidx_t *p_sidx_data = BOXDATA(p_sidx);
             assert( p_sidx_data->i_reference_count == 1 );
 
             if( p_sidx_data->i_timescale == 0 )
@@ -3550,11 +4213,16 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
     if( !ret->p_sample_data )
         return VLC_ENOMEM;
 
-    uint32_t dur = 0, len;
+    uint32_t dur = 0, i_mdatlen = 0, len;
     uint32_t chunk_duration = 0, chunk_size = 0;
 
     /* Skip header of mdat */
-    stream_Read( p_demux->s, NULL, 8 );
+    uint8_t mdat[8];
+    int i_read = stream_Read( p_demux->s, &mdat, 8 );
+    i_mdatlen = GetDWBE( mdat );
+    if ( i_read < 8 || i_mdatlen < 8 ||
+         VLC_FOURCC( mdat[4], mdat[5], mdat[6], mdat[7] ) != ATOM_mdat )
+        return VLC_EGENERIC;
 
     for( uint32_t i = 0; i < ret->i_sample_count; i++)
     {
@@ -3569,8 +4237,10 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
 
         if( ret->p_sample_offset_pts )
         {
-            ret->p_sample_offset_pts[i] =
-                        p_trun_data->p_samples[i].i_composition_time_offset;
+            if ( p_trun_data->i_version == 0 )
+                ret->p_sample_offset_pts[i] = (int32_t) p_trun_data->p_samples[i].i_composition_time_offset;
+            else
+                ret->p_sample_offset_pts[i] = __MIN( INT32_MAX, p_trun_data->p_samples[i].i_composition_time_offset );
         }
 
         if( p_trun_data->i_flags & MP4_TRUN_SAMPLE_SIZE )
@@ -3578,11 +4248,14 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
         else
             len = ret->p_sample_size[i] = default_size;
 
+        if ( chunk_size + len > ( i_mdatlen - 8 ) )
+            return VLC_EGENERIC;
+
         ret->p_sample_data[i] = malloc( len );
         if( ret->p_sample_data[i] == NULL )
             return VLC_ENOMEM;
-        int read = stream_Read( p_demux->s, ret->p_sample_data[i], len );
-        if( read < (int)len )
+        uint32_t i_read = stream_ReadU32( p_demux->s, ret->p_sample_data[i], len );
+        if( i_read < len )
             return VLC_EGENERIC;
         chunk_size += len;
     }
@@ -3593,16 +4266,21 @@ static int MP4_frg_GetChunk( demux_t *p_demux, MP4_Box_t *p_chunk, unsigned *i_t
             p_track->fmt.i_cat == VIDEO_ES )
         ReInitDecoder( p_demux, p_track );
 
+    /* Skip if we didn't reach the end of mdat box */
+    if ( chunk_size < (i_mdatlen - 8) )
+        stream_ReadU32( p_demux->s, NULL, i_mdatlen - chunk_size - 8 );
+
     p_track->b_has_non_empty_cchunk = true;
     return VLC_SUCCESS;
 }
 
+
 /**
  * Get the next chunk of the track identified by i_tk_id.
  * \Note We don't want to seek all the time, so if the first chunk given by the
  * input method doesn't belong to the right track, we don't throw it away,
  * and so, in general, this function fetch more than one chunk.
- * Not to mention that a new init segment might be put everywhere
+ * Not to mention that a new init fragment might be put everywhere
  * between two chunks by the input method.
  */
 static int MP4_frg_GetChunks( demux_t *p_demux, const unsigned i_tk_id )
@@ -3647,7 +4325,7 @@ static int MP4_frg_GetChunks( demux_t *p_demux, const unsigned i_tk_id )
                 tid = p_stra->data.p_stra->i_track_ID;
             }
 
-            p_track = MP4_frg_GetTrack( p_demux, tid );
+            p_track = MP4_frg_GetTrackByID( p_demux, tid );
             if( !p_track )
                 goto MP4_frg_GetChunks_Error;
             p_track->b_codec_need_restart = true;
@@ -3732,8 +4410,8 @@ int DemuxFrg( demux_t *p_demux )
         p_sys->i_time += __MAX( p_sys->i_timescale / 10 , 1 );
         if( p_sys->i_timescale > 0 )
         {
-            int64_t i_length = (mtime_t)1000000 *
-                               (mtime_t)p_sys->i_duration /
+            int64_t i_length = CLOCK_FREQ *
+                               (mtime_t)p_sys->moovfragment.i_duration /
                                (mtime_t)p_sys->i_timescale;
             if( MP4_GetMoviePTS( p_sys ) >= i_length )
                 return 0;
@@ -3804,7 +4482,7 @@ int DemuxFrg( demux_t *p_demux )
             else
                 p_block->i_pts = VLC_TS_INVALID;
 
-            es_out_Send( p_demux->out, tk->p_es, p_block );
+            MP4_Block_Send( p_demux, tk, p_block );
 
             tk->i_sample++;
 
@@ -3814,3 +4492,1124 @@ int DemuxFrg( demux_t *p_demux )
     }
     return 1;
 }
+
+static MP4_Box_t * LoadNextChunk( demux_t *p_demux )
+{
+    /* Read Next Chunk */
+    MP4_Box_t *p_chunk = MP4_BoxGetNextChunk( p_demux->s );
+    if( !p_chunk )
+    {
+        msg_Warn( p_demux, "no next chunk" );
+        return NULL;
+    }
+
+    if( !p_chunk->p_first )
+    {
+        msg_Warn( p_demux, "no next chunk child" );
+        return NULL;
+    }
+
+    return p_chunk;
+}
+
+static bool BoxExistsInRootTree( MP4_Box_t *p_root, uint32_t i_type, off_t i_pos )
+{
+    while ( p_root )
+    {
+        if ( p_root->i_pos == i_pos )
+        {
+            assert( i_type == p_root->i_type );
+            break;
+        }
+        p_root = p_root->p_next;
+    }
+    return (p_root != NULL);
+}
+
+/* Keeps an ordered chain of all fragments */
+static bool AddFragment( demux_t *p_demux, MP4_Box_t *p_moox )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    mp4_fragment_t *p_base_fragment = & p_sys->moovfragment;
+    if ( !p_moox )
+        return false;
+
+    if( p_moox->i_type == ATOM_moov )
+    {
+        if ( !p_sys->moovfragment.p_moox )
+        {
+            p_sys->moovfragment.p_moox = p_moox;
+            MP4_Box_t *p_mvhd;
+            if( (p_mvhd = MP4_BoxGet( p_moox, "mvhd" )) )
+            {
+                p_sys->i_timescale = BOXDATA(p_mvhd)->i_timescale;
+                p_sys->i_overall_duration = BOXDATA(p_mvhd)->i_duration;
+            }
+
+            if ( MP4_BoxCount( p_moox, "mvex" ) || !p_mvhd )
+            { /* duration might be wrong an be set to whole duration :/ */
+               p_sys->moovfragment.i_duration = 0;
+               MP4_Box_t *p_tkhd;
+               MP4_Box_t *p_trak = MP4_BoxGet( p_moox, "trak" );
+               while( p_trak )
+               {
+                   if ( p_trak->i_type == ATOM_trak && (p_tkhd = MP4_BoxGet( p_trak, "tkhd" )) )
+                   {
+                       if ( BOXDATA(p_tkhd)->i_duration > p_sys->moovfragment.i_duration )
+                           p_sys->moovfragment.i_duration = BOXDATA(p_tkhd)->i_duration;
+                   }
+                   p_trak = p_trak->p_next;
+               }
+            }
+
+            msg_Dbg( p_demux, "added fragment %4.4s", (char*) &p_moox->i_type );
+            return true;
+        }
+        return false;
+    }
+    else // p_moox->i_type == ATOM_moof
+    {
+        assert(p_moox->i_type == ATOM_moof);
+        mp4_fragment_t *p_fragment = p_sys->moovfragment.p_next;
+        while ( p_fragment )
+        {
+            if ( !p_base_fragment->p_moox || p_moox->i_pos > p_base_fragment->p_moox->i_pos )
+            {
+                p_base_fragment = p_fragment;
+                p_fragment = p_fragment->p_next;
+            }
+            else if ( p_moox->i_pos == p_base_fragment->p_moox->i_pos )
+            {
+                /* already exists */
+                return false;
+            }
+        }
+    }
+
+    /* Add the moof fragment */
+    mp4_fragment_t *p_new = malloc(sizeof(mp4_fragment_t));
+    if ( !p_new ) return false;
+    p_new->p_moox = p_moox;
+    p_new->i_duration = 0;
+    p_new->p_next = p_base_fragment->p_next;
+    p_base_fragment->p_next = p_new;
+    msg_Dbg( p_demux, "added fragment %4.4s", (char*) &p_moox->i_type );
+
+    /* we have to probe all fragments :/ */
+    uint64_t i_traf_base_data_offset = 0;
+    uint64_t i_traf_min_offset = 0;
+    uint32_t i_traf = 0;
+    uint32_t i_traf_total_size = 0;
+    uint32_t i_trafs_total_size = 0;
+
+    MP4_Box_t *p_traf = MP4_BoxGet( p_new->p_moox, "traf" );
+    while ( p_traf )
+    {
+        if ( p_traf->i_type != ATOM_traf )
+        {
+           p_traf = p_traf->p_next;
+           continue;
+        }
+        const MP4_Box_t *p_tfhd = MP4_BoxGet( p_traf, "tfhd" );
+        const MP4_Box_t *p_trun = MP4_BoxGet( p_traf, "trun" );
+        if ( !p_tfhd || !p_trun )
+        {
+           p_traf = p_traf->p_next;
+           continue;
+        }
+
+        uint32_t i_track_timescale = 0;
+        uint32_t i_track_defaultsamplesize = 0;
+        uint32_t i_track_defaultsampleduration = 0;
+        if ( p_sys->b_smooth )
+        {
+            /* stra sets identical timescales */
+            i_track_timescale = p_sys->i_timescale;
+            i_track_defaultsamplesize = 1;
+            i_track_defaultsampleduration = 1;
+        }
+        else
+        {
+            /* set trex for defaults */
+             MP4_Box_t *p_trex = MP4_GetTrexByTrackID( p_sys->moovfragment.p_moox, BOXDATA(p_tfhd)->i_track_ID );
+             if ( p_trex )
+             {
+                i_track_defaultsamplesize = BOXDATA(p_trex)->i_default_sample_size;
+                i_track_defaultsampleduration = BOXDATA(p_trex)->i_default_sample_duration;
+             }
+
+             MP4_Box_t *p_trak = MP4_GetTrakByTrackID( p_sys->moovfragment.p_moox, BOXDATA(p_tfhd)->i_track_ID );
+             if ( p_trak )
+             {
+                MP4_Box_t *p_mdhd = MP4_BoxGet( p_trak, "mdia/mdhd" );
+                if ( p_mdhd ) i_track_timescale = BOXDATA(p_mdhd)->i_timescale;
+             }
+        }
+
+        if ( !i_track_timescale )
+        {
+           p_traf = p_traf->p_next;
+           continue;
+        }
+
+        if ( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_BASE_DATA_OFFSET )
+        {
+            i_traf_base_data_offset = BOXDATA(p_tfhd)->i_base_data_offset;
+        }
+        else if ( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DEFAULT_BASE_IS_MOOF )
+        {
+            i_traf_base_data_offset = p_new->p_moox->i_pos /* + 8*/;
+        }
+        else
+        {
+            if ( i_traf == 0 )
+                i_traf_base_data_offset = p_new->p_moox->i_pos /*+ 8*/;
+            else
+                i_traf_base_data_offset += i_traf_total_size;
+        }
+
+        i_traf_total_size = 0;
+
+        uint64_t i_trun_data_offset = i_traf_base_data_offset;
+        uint64_t i_traf_duration = 0;
+        uint32_t i_trun_size = 0;
+        while ( p_trun && p_tfhd )
+        {
+            if ( p_trun->i_type != ATOM_trun )
+            {
+               p_trun = p_trun->p_next;
+               continue;
+            }
+            const MP4_Box_data_trun_t *p_trundata = p_trun->data.p_trun;
+
+            /* Get data offset */
+            if ( p_trundata->i_flags & MP4_TRUN_DATA_OFFSET )
+                i_trun_data_offset += __MAX( p_trundata->i_data_offset, 0 );
+            else
+                i_trun_data_offset += i_trun_size;
+
+            i_trun_size = 0;
+
+            /* Sum total time */
+            if ( p_trundata->i_flags & MP4_TRUN_SAMPLE_DURATION )
+            {
+                for( uint32_t i=0; i< p_trundata->i_sample_count; i++ )
+                    i_traf_duration += p_trundata->p_samples[i].i_duration;
+            }
+            else if ( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DFLT_SAMPLE_DURATION )
+            {
+                i_traf_duration += p_trundata->i_sample_count *
+                        BOXDATA(p_tfhd)->i_default_sample_duration;
+            }
+            else
+            {
+                i_traf_duration += p_trundata->i_sample_count *
+                        i_track_defaultsampleduration;
+            }
+
+            /* Get total traf size */
+            if ( p_trundata->i_flags & MP4_TRUN_SAMPLE_SIZE )
+            {
+                for( uint32_t i=0; i< p_trundata->i_sample_count; i++ )
+                    i_trun_size += p_trundata->p_samples[i].i_size;
+            }
+            else if ( BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DFLT_SAMPLE_SIZE )
+            {
+                i_trun_size += p_trundata->i_sample_count *
+                        BOXDATA(p_tfhd)->i_default_sample_size;
+            }
+            else
+            {
+                i_trun_size += p_trundata->i_sample_count *
+                        i_track_defaultsamplesize;
+            }
+
+            i_traf_total_size += i_trun_size;
+
+            if ( i_traf_min_offset )
+                i_traf_min_offset = __MIN( i_trun_data_offset, i_traf_min_offset );
+            else
+                i_traf_min_offset = i_trun_data_offset;
+
+            p_trun = p_trun->p_next;
+        }
+
+        i_trafs_total_size += i_traf_total_size;
+        p_new->i_duration = __MAX( p_new->i_duration, i_traf_duration * p_sys->i_timescale / i_track_timescale );
+
+        p_traf = p_traf->p_next;
+        i_traf++;
+    }
+
+    p_new->i_chunk_range_min_offset = i_traf_min_offset;
+    p_new->i_chunk_range_max_offset = i_traf_min_offset + i_trafs_total_size;
+
+    msg_Dbg( p_demux, "new fragment is %"PRId64" %"PRId64, p_new->i_chunk_range_min_offset, p_new->i_chunk_range_max_offset );
+
+    /* compute total duration with that new fragment if no overall provided */
+    MP4_Box_t *p_mehd = MP4_BoxGet( p_sys->moovfragment.p_moox, "mvex/mehd");
+    if ( !p_mehd )
+    {
+        p_sys->i_overall_duration = 0;
+        if ( p_sys->b_fragments_probed )
+        {
+            p_new = &p_sys->moovfragment;
+            while ( p_new )
+            {
+                p_sys->i_overall_duration += p_new->i_duration;
+                p_new = p_new->p_next;
+            }
+        }
+    }
+    else
+        p_sys->i_overall_duration = BOXDATA(p_mehd)->i_fragment_duration;
+
+    msg_Dbg( p_demux, "total fragments duration %"PRId64, CLOCK_FREQ * p_sys->i_overall_duration / p_sys->i_timescale);
+    return true;
+}
+
+static int ProbeIndex( demux_t *p_demux )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    uint64_t i_backup_pos, i_stream_size;
+    uint8_t mfro[MP4_MFRO_BOXSIZE];
+    assert( p_sys->b_seekable );
+
+    if ( MP4_BoxCount( p_sys->p_root, "/mfra" ) )
+        return VLC_SUCCESS;
+
+    i_stream_size = stream_Size( p_demux->s );
+    if ( ( i_stream_size >> 62 ) ||
+         ( i_stream_size < MP4_MFRO_BOXSIZE ) ||
+         ( !MP4_stream_Tell( p_demux->s, &i_backup_pos ) ) ||
+         ( stream_Seek( p_demux->s, i_stream_size - MP4_MFRO_BOXSIZE ) != VLC_SUCCESS )
+       )
+    {
+        msg_Dbg( p_demux, "Probing tail for mfro has failed" );
+        return VLC_EGENERIC;
+    }
+
+    if ( stream_Read( p_demux->s, &mfro, MP4_MFRO_BOXSIZE ) == MP4_MFRO_BOXSIZE &&
+         VLC_FOURCC(mfro[4],mfro[5],mfro[6],mfro[7]) == ATOM_mfro &&
+         GetDWBE( &mfro ) == MP4_MFRO_BOXSIZE )
+    {
+        uint32_t i_offset = GetDWBE( &mfro[12] );
+        msg_Dbg( p_demux, "will read mfra index at %"PRIu64, i_stream_size - i_offset );
+        if ( i_stream_size > i_offset &&
+             stream_Seek( p_demux->s, i_stream_size - i_offset ) == VLC_SUCCESS )
+        {
+            msg_Dbg( p_demux, "reading mfra index at %"PRIu64, i_stream_size - i_offset );
+            MP4_ReadBoxContainerChildren( p_demux->s, p_sys->p_root, ATOM_mfra );
+        }
+    }
+
+    return stream_Seek( p_demux->s, i_backup_pos );
+}
+
+static int ProbeFragments( demux_t *p_demux, bool b_force )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    uint64_t i_current_pos;
+
+    if ( MP4_stream_Tell( p_demux->s, &i_current_pos ) )
+        msg_Dbg( p_demux, "probing fragments from %"PRId64, i_current_pos );
+
+    assert( p_sys->p_root );
+
+    if ( p_sys->b_fastseekable || b_force )
+    {
+        MP4_ReadBoxContainerChildren( p_demux->s, p_sys->p_root, 0 ); /* Get the rest of the file */
+        p_sys->b_fragments_probed = true;
+    }
+    else
+    {
+        /* We stop at first moof, which validates our fragmentation condition
+         * and we'll find others while reading. */
+        MP4_ReadBoxContainerChildren( p_demux->s, p_sys->p_root, ATOM_moof );
+    }
+
+    if ( !p_sys->moovfragment.p_moox )
+    {
+        MP4_Box_t *p_moov = MP4_BoxGet( p_sys->p_root, "/moov" );
+        if ( !p_moov )
+        {
+            /* moov/mvex before probing should be present anyway */
+            MP4_BoxDumpStructure( p_demux->s, p_sys->p_root );
+            return VLC_EGENERIC;
+        }
+        AddFragment( p_demux, p_moov );
+    }
+
+    MP4_Box_t *p_moof = MP4_BoxGet( p_sys->p_root, "moof" );
+    while ( p_moof )
+    {
+        if ( p_moof->i_type == ATOM_moof )
+            AddFragment( p_demux, p_moof );
+        p_moof = p_moof->p_next;
+    }
+
+    MP4_Box_t *p_mdat = MP4_BoxGet( p_sys->p_root, "mdat" );
+    if ( p_mdat )
+    {
+        stream_Seek( p_demux->s, p_mdat->i_pos );
+        msg_Dbg( p_demux, "rewinding to mdat %"PRId64, p_mdat->i_pos );
+    }
+
+    return VLC_SUCCESS;
+}
+
+static mp4_fragment_t * GetFragmentByPos( demux_t *p_demux, uint64_t i_pos, bool b_exact )
+{
+    mp4_fragment_t *p_fragment = &p_demux->p_sys->moovfragment;
+    while ( p_fragment )
+    {
+        if ( i_pos <= p_fragment->i_chunk_range_max_offset &&
+             ( !b_exact || i_pos >= p_fragment->i_chunk_range_min_offset ) )
+        {
+            msg_Dbg( p_demux, "fragment matched %"PRIu64" << %"PRIu64" << %"PRIu64,
+                     p_fragment->i_chunk_range_min_offset, i_pos,
+                     p_fragment->i_chunk_range_max_offset );
+            return p_fragment;
+        }
+        else
+        {
+            p_fragment = p_fragment->p_next;
+        }
+    }
+    return NULL;
+}
+
+/* Get a matching fragment data start by clock time */
+static mp4_fragment_t * GetFragmentByTime( demux_t *p_demux, const mtime_t i_time )
+{
+    mp4_fragment_t *p_fragment = &p_demux->p_sys->moovfragment;
+    mtime_t i_base_time = 0;
+    while ( p_fragment )
+    {
+        mtime_t i_length = CLOCK_FREQ * p_fragment->i_duration / p_demux->p_sys->i_timescale;
+        if ( i_time >= i_base_time &&
+             i_time <= i_base_time + i_length )
+        {
+            return p_fragment;
+        }
+        else
+        {
+            i_base_time += i_length;
+            p_fragment = p_fragment->p_next;
+        }
+
+        if ( !p_demux->p_sys->b_fragments_probed )
+            return NULL; /* We have no way to guess missing fragments time */
+    }
+    return NULL;
+}
+
+/* Returns fragment scaled time offset */
+static mtime_t LeafGetFragmentTimeOffset( demux_t *p_demux, mp4_fragment_t *p_fragment )
+{
+    mtime_t i_base_scaledtime = 0;
+    mp4_fragment_t *p_current = &p_demux->p_sys->moovfragment;
+    while ( p_current != p_fragment )
+    {
+        i_base_scaledtime += p_current->i_duration;
+        p_current = p_current->p_next;
+    }
+    return i_base_scaledtime;
+}
+
+static int LeafParseTRUN( demux_t *p_demux, mp4_track_t *p_track,
+                      const uint32_t i_defaultduration, const uint32_t i_defaultsize,
+                      const MP4_Box_data_trun_t *p_trun, uint32_t * const pi_mdatlen )
+{
+    assert( p_trun->i_sample_count );
+    msg_Dbg( p_demux, "Default sample duration %"PRIu32" size %"PRIu32" firstdts %"PRIu64,
+             i_defaultduration, i_defaultsize, p_track->i_first_dts );
+
+    uint32_t dur = 0, len;
+    uint32_t chunk_size = 0;
+    mtime_t i_nzdts = CLOCK_FREQ * p_track->i_time / p_track->i_timescale;
+
+    mtime_t i_nzpts;
+
+    for( uint32_t i = 0; i < p_trun->i_sample_count; i++)
+    {
+        i_nzdts += CLOCK_FREQ * dur / p_track->i_timescale;
+        i_nzpts = i_nzdts;
+
+        if( p_trun->i_flags & MP4_TRUN_SAMPLE_DURATION )
+            dur = p_trun->p_samples[i].i_duration;
+        else
+            dur = i_defaultduration;
+
+        p_track->i_time += dur;
+
+        if( p_trun->i_flags & MP4_TRUN_SAMPLE_TIME_OFFSET )
+        {
+            if ( p_trun->i_version == 0 )
+                i_nzpts += CLOCK_FREQ * (int32_t) p_trun->p_samples[i].i_composition_time_offset / p_track->i_timescale;
+            else
+                i_nzpts += CLOCK_FREQ * p_trun->p_samples[i].i_composition_time_offset / p_track->i_timescale;
+        }
+
+        if( p_trun->i_flags & MP4_TRUN_SAMPLE_SIZE )
+            len = p_trun->p_samples[i].i_size;
+        else
+            len = i_defaultsize;
+
+        assert( dur ); /* dur, dur ! */
+        assert( len );
+
+        if ( chunk_size + len > *pi_mdatlen )
+        {
+            /* update data left in mdat */
+            *pi_mdatlen -= chunk_size;
+            return VLC_EGENERIC;
+        }
+
+        block_t *p_block = MP4_Block_Read( p_demux, p_track, __MIN( len, INT32_MAX ) );
+        uint32_t i_read = ( p_block ) ? p_block->i_buffer : 0;
+        if( i_read < len )
+        {
+            /* update data left in mdat */
+            *pi_mdatlen -= chunk_size;
+            *pi_mdatlen -= i_read;
+            free( p_block );
+            return VLC_EGENERIC;
+        }
+
+        if ( p_demux->p_sys->i_pcr < VLC_TS_0 )
+        {
+            p_demux->p_sys->i_pcr = i_nzdts;
+            es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + i_nzdts );
+        }
+
+        if ( p_track->p_es )
+        {
+            p_block->i_dts = VLC_TS_0 + i_nzdts;
+            p_block->i_pts = VLC_TS_0 + i_nzpts;
+            p_block->i_length = CLOCK_FREQ * dur / p_track->i_timescale;
+            MP4_Block_Send( p_demux, p_track, p_block );
+        }
+        else free( p_block );
+
+        chunk_size += len;
+    }
+
+    /* update data left in mdat */
+    *pi_mdatlen -= chunk_size;
+    return VLC_SUCCESS;
+}
+
+static int LeafGetTrackAndChunkByMOOVPos( demux_t *p_demux, uint64_t *pi_pos,
+                                      mp4_track_t **pp_tk, unsigned int *pi_chunk )
+{
+    const demux_sys_t *p_sys = p_demux->p_sys;
+
+    mp4_track_t *p_tk_closest = NULL;
+    uint64_t i_closest = UINT64_MAX;
+    unsigned int i_chunk_closest;
+
+    *pp_tk = NULL;
+
+    for ( unsigned int i_track = 0; i_track < p_sys->i_tracks; i_track++ )
+    {
+        for( unsigned int i_chunk = 0; i_chunk < p_sys->track[i_track].i_chunk_count; i_chunk++ )
+        {
+            if ( p_sys->track[i_track].chunk[i_chunk].i_offset > *pi_pos )
+            {
+                i_closest = __MIN( i_closest, p_sys->track[i_track].chunk[i_chunk].i_offset );
+                p_tk_closest = &p_sys->track[i_track];
+                i_chunk_closest = i_chunk;
+            }
+
+            if ( *pi_pos == p_sys->track[i_track].chunk[i_chunk].i_offset )
+            {
+                *pp_tk = &p_sys->track[i_track];
+                *pi_chunk = i_chunk;
+                return VLC_SUCCESS;
+            }
+        }
+    }
+
+    if ( i_closest != UINT64_MAX )
+    {
+        *pi_pos = i_closest;
+        *pp_tk = p_tk_closest;
+        *pi_chunk = i_chunk_closest;
+        return VLC_ENOOBJ;
+    }
+    else return VLC_EGENERIC;
+}
+
+static int LeafMOOVGetSamplesSize( const mp4_track_t *p_track, const uint32_t i_sample,
+                           uint32_t *pi_samplestoread, uint32_t *pi_samplessize,
+                           const uint32_t i_maxbytes, const uint32_t i_maxsamples )
+{
+    MP4_Box_t *p_stsz = MP4_BoxGet( p_track->p_stbl, "stsz" );
+    if ( !p_stsz )
+        return VLC_EGENERIC;
+
+    if ( BOXDATA(p_stsz)->i_sample_size == 0 )
+    {
+        uint32_t i_entry = i_sample;
+        uint32_t i_totalbytes = 0;
+        *pi_samplestoread = 1;
+
+        if ( i_sample >= BOXDATA(p_stsz)->i_sample_count )
+            return VLC_EGENERIC;
+
+        *pi_samplessize = BOXDATA(p_stsz)->i_entry_size[i_sample];
+        i_totalbytes += *pi_samplessize;
+
+        if ( *pi_samplessize > i_maxbytes )
+            return VLC_EGENERIC;
+
+        i_entry++;
+        while( i_entry < BOXDATA(p_stsz)->i_sample_count &&
+               *pi_samplessize == BOXDATA(p_stsz)->i_entry_size[i_entry] &&
+               i_totalbytes + *pi_samplessize < i_maxbytes &&
+               *pi_samplestoread < i_maxsamples
+              )
+        {
+            i_totalbytes += *pi_samplessize;
+            (*pi_samplestoread)++;
+        }
+
+        *pi_samplessize = i_totalbytes;
+    }
+    else
+    {
+        /* all samples have same size */
+        *pi_samplessize = BOXDATA(p_stsz)->i_sample_size;
+        *pi_samplestoread = __MIN( i_maxsamples, BOXDATA(p_stsz)->i_sample_count );
+        *pi_samplestoread = __MIN( i_maxbytes / *pi_samplessize, *pi_samplestoread );
+        *pi_samplessize = *pi_samplessize * *pi_samplestoread;
+    }
+
+    return VLC_SUCCESS;
+}
+
+static inline mtime_t LeafGetMOOVTimeInChunk( const mp4_chunk_t *p_chunk, uint32_t i_sample )
+{
+    mtime_t i_time = 0;
+    uint32_t i_index = 0;
+
+    while( i_sample > 0 )
+    {
+        if( i_sample > p_chunk->p_sample_count_dts[i_index] )
+        {
+            i_time += p_chunk->p_sample_count_dts[i_index] *
+                p_chunk->p_sample_delta_dts[i_index];
+            i_sample -= p_chunk->p_sample_count_dts[i_index];
+            i_index++;
+        }
+        else
+        {
+            i_time += i_sample * p_chunk->p_sample_delta_dts[i_index];
+            break;
+        }
+    }
+
+    return i_time;
+}
+
+static int LeafParseMDATwithMOOV( demux_t *p_demux )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+
+    assert( p_sys->context.i_current_box_type == ATOM_mdat );
+    assert( p_sys->context.p_fragment->p_moox->i_type == ATOM_moov );
+
+    uint64_t i_current_pos;
+    if ( !MP4_stream_Tell( p_demux->s, &i_current_pos ) )
+        return VLC_EGENERIC;
+
+    if ( p_sys->context.i_mdatbytesleft == 0 ) /* Start parsing new mdat */
+    {
+        /* Ready mdat section */
+        uint8_t mdat[8];
+        int i_read = stream_Read( p_demux->s, &mdat, 8 );
+        p_sys->context.i_mdatbytesleft = GetDWBE( mdat );
+        if ( i_read < 8 || p_sys->context.i_mdatbytesleft < 8 ||
+             VLC_FOURCC( mdat[4], mdat[5], mdat[6], mdat[7] ) != ATOM_mdat )
+        {
+            uint64_t i_pos;
+            if ( !MP4_stream_Tell( p_demux->s, &i_pos ) )
+                msg_Err( p_demux, "No mdat atom at %"PRIu64, i_pos - __MAX( 0, i_read ) );
+            return VLC_EGENERIC;
+        }
+        i_current_pos += 8;
+        p_sys->context.i_mdatbytesleft -= 8;
+    }
+
+    while( p_sys->context.i_mdatbytesleft > 0 )
+    {
+        mp4_track_t *p_track;
+        unsigned int i_chunk;
+
+        /**/
+        uint64_t i_pos = i_current_pos;
+        int i_ret = LeafGetTrackAndChunkByMOOVPos( p_demux, &i_pos, &p_track, &i_chunk );
+        if ( i_ret == VLC_EGENERIC )
+        {
+            msg_Err(p_demux, "can't find referenced chunk for start at %"PRIu64, i_current_pos );
+            goto error;
+        }
+        else if( i_ret == VLC_ENOOBJ )
+        {
+            assert( i_pos - i_current_pos > p_sys->context.i_mdatbytesleft );
+            int i_read = stream_Read( p_demux->s, NULL, i_pos - i_current_pos );
+            i_current_pos += i_read;
+            p_sys->context.i_mdatbytesleft -= i_read;
+            if ( i_read == 0 ) goto error;
+            continue;
+        }
+        /**/
+
+        mp4_chunk_t *p_chunk = &p_track->chunk[i_chunk];
+
+        uint32_t i_nb_samples_at_chunk_start = p_chunk->i_sample_first;
+        uint32_t i_nb_samples_in_chunk = p_chunk->i_sample_count;
+
+        assert(i_nb_samples_in_chunk);
+
+        uint32_t i_nb_samples = 0;
+        while ( i_nb_samples < i_nb_samples_in_chunk )
+        {
+            uint32_t i_samplessize = 0;
+            uint32_t i_samplescounttoread = 0;
+            i_ret = LeafMOOVGetSamplesSize( p_track,
+                            i_nb_samples_at_chunk_start + i_nb_samples,
+                            &i_samplescounttoread, &i_samplessize,
+                            p_sys->context.i_mdatbytesleft,
+                            /*i_nb_samples_in_chunk - i_nb_samples*/ 1 );
+            if ( i_ret != VLC_SUCCESS )
+                goto error;
+
+            if( p_sys->context.i_mdatbytesleft &&
+                p_sys->context.i_mdatbytesleft  >= i_samplessize )
+            {
+                block_t *p_block;
+
+                /* now read pes */
+
+                if( !(p_block = MP4_Block_Read( p_demux, p_track, i_samplessize )) )
+                {
+                    uint64_t i_pos;
+                    if ( MP4_stream_Tell( p_demux->s, &i_pos ) )
+                    {
+                        p_sys->context.i_mdatbytesleft -= ( i_pos - i_current_pos );
+                        msg_Err( p_demux, "stream block error %"PRId64" %"PRId64, i_pos, i_pos - i_current_pos );
+                    }
+                    goto error;
+                }
+
+                i_nb_samples += i_samplescounttoread;
+                i_current_pos += i_samplessize;
+                p_sys->context.i_mdatbytesleft -= i_samplessize;
+
+                /* dts */
+                mtime_t i_time = LeafGetMOOVTimeInChunk( p_chunk, i_nb_samples );
+                i_time += p_chunk->i_first_dts;
+                p_track->i_time = i_time;
+                p_block->i_dts = VLC_TS_0 + CLOCK_FREQ * i_time / p_track->i_timescale;
+
+                /* pts */
+                int64_t i_delta = MP4_TrackGetPTSDelta( p_demux, p_track );
+                if( i_delta != -1 )
+                    p_block->i_pts = p_block->i_dts + i_delta;
+                else if( p_track->fmt.i_cat != VIDEO_ES )
+                    p_block->i_pts = p_block->i_dts;
+                else
+                    p_block->i_pts = VLC_TS_INVALID;
+
+                MP4_Block_Send( p_demux, p_track, p_block );
+
+                if ( p_demux->p_sys->i_pcr < VLC_TS_0 )
+                {
+                    p_sys->i_time = p_track->i_time * p_sys->i_timescale / p_track->i_timescale;
+                    p_demux->p_sys->i_pcr = MP4_GetMoviePTS( p_demux->p_sys );
+                    es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_demux->p_sys->i_pcr );
+                }
+
+            }
+            else
+            {
+                // sample size > left bytes
+                break;
+            }
+
+            p_track->i_sample += i_samplescounttoread;
+        }
+
+        /* flag end of mdat section if needed */
+        if ( p_sys->context.i_mdatbytesleft == 0 )
+            p_sys->context.i_current_box_type = 0;
+
+        // next chunk
+        return VLC_SUCCESS;
+    }
+
+error:
+    /* Skip if we didn't reach the end of mdat box */
+    if ( p_sys->context.i_mdatbytesleft  > 0 )
+    {
+        msg_Err( p_demux, "mdat had still %"PRIu32" bytes unparsed as samples",
+                 p_sys->context.i_mdatbytesleft );
+        stream_ReadU32( p_demux->s, NULL, p_sys->context.i_mdatbytesleft );
+    }
+    p_sys->context.i_current_box_type = 0;
+
+    return VLC_SUCCESS;
+}
+
+static mp4_track_t * LeafGetTrackByTrunPos( demux_t *p_demux, const uint64_t i_pos, const uint64_t i_moofpos )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+
+    for ( uint32_t i=0; i<p_sys->i_tracks; i++ )
+    {
+        mp4_track_t *p_track = &p_sys->track[i];
+        if ( !p_track->context.p_trun || !p_track->context.p_tfhd )
+            continue;
+        const MP4_Box_data_trun_t *p_trun_data = p_track->context.BOXDATA(p_trun);
+        uint64_t i_offset = 0;
+
+        if ( p_track->context.BOXDATA(p_tfhd)->i_flags & MP4_TFHD_BASE_DATA_OFFSET )
+            i_offset = p_track->context.BOXDATA(p_tfhd)->i_base_data_offset;
+        else
+            i_offset = i_moofpos;
+
+        //if ( p_track->context.BOXDATA(p_tfhd)->i_flags & MP4_TFHD_DEFAULT_BASE_IS_MOOF )
+          //  i_offset += i_moofpos;
+
+        if (p_trun_data->i_flags & MP4_TRUN_DATA_OFFSET)
+            i_offset += p_trun_data->i_data_offset;
+        else
+            return p_track;
+
+        if ( i_offset == i_pos )
+            return p_track;
+    }
+
+    return NULL;
+}
+
+static int LeafMapTrafTrunContextes( demux_t *p_demux, MP4_Box_t *p_moof )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+
+    /* reset */
+    for ( uint32_t i=0; i<p_sys->i_tracks; i++ )
+    {
+        mp4_track_t *p_track = &p_sys->track[i];
+        p_track->context.p_tfhd = NULL;
+        p_track->context.p_traf = NULL;
+        p_track->context.p_trun = NULL;
+    }
+
+    if ( p_moof->i_type == ATOM_moov )
+        return VLC_SUCCESS;
+
+    MP4_Box_t *p_traf = MP4_BoxGet( p_moof, "traf" );
+    if( !p_traf )
+    {
+        msg_Warn( p_demux, "no traf box found!" );
+        return VLC_EGENERIC;
+    }
+
+    /* map contexts */
+    while ( p_traf )
+    {
+        if ( p_traf->i_type == ATOM_traf )
+        {
+            MP4_Box_t *p_tfhd = MP4_BoxGet( p_traf, "tfhd" );
+            for ( uint32_t i=0; p_tfhd && i<p_sys->i_tracks; i++ )
+            {
+                mp4_track_t *p_track = &p_sys->track[i];
+                if ( BOXDATA(p_tfhd)->i_track_ID == p_track->i_track_ID )
+                {
+                    MP4_Box_t *p_trun = MP4_BoxGet( p_traf, "trun" );
+                    if ( p_trun )
+                    {
+                        p_track->context.p_tfhd = p_tfhd;
+                        p_track->context.p_traf = p_traf;
+                        p_track->context.p_trun = p_trun;
+                    }
+                    p_tfhd = NULL; /* break loop */
+                }
+            }
+        }
+        p_traf = p_traf->p_next;
+    }
+
+    return VLC_SUCCESS;
+}
+
+static int LeafIndexGetMoofPosByTime( demux_t *p_demux, const mtime_t i_target_time,
+                                      uint64_t *pi_pos, mtime_t *pi_mooftime )
+{
+    MP4_Box_t *p_tfra = MP4_BoxGet( p_demux->p_sys->p_root, "mfra/tfra" );
+    while ( p_tfra )
+    {
+        if ( p_tfra->i_type == ATOM_tfra )
+        {
+            int64_t i_pos = -1;
+            const MP4_Box_data_tfra_t *p_data = BOXDATA(p_tfra);
+            mp4_track_t *p_track = MP4_frg_GetTrackByID( p_demux, p_data->i_track_ID );
+            if ( p_track && (p_track->fmt.i_cat == AUDIO_ES || p_track->fmt.i_cat == VIDEO_ES) )
+            {
+                for ( uint32_t i = 0; i<p_data->i_number_of_entries; i += ( p_data->i_version == 1 ) ? 2 : 1 )
+                {
+                    mtime_t i_time;
+                    uint64_t i_offset;
+                    if ( p_data->i_version == 1 )
+                    {
+                        i_time = *((uint64_t *)(p_data->p_time + i));
+                        i_offset = *((uint64_t *)(p_data->p_moof_offset + i));
+                    }
+                    else
+                    {
+                        i_time = p_data->p_time[i];
+                        i_offset = p_data->p_moof_offset[i];
+                    }
+
+                    if ( CLOCK_FREQ * i_time / p_track->i_timescale >= i_target_time )
+                    {
+                        if ( i_pos == -1 ) /* Not in this traf */
+                            break;
+
+                        *pi_pos = (uint64_t) i_pos;
+                        *pi_mooftime = CLOCK_FREQ * i_time / p_track->i_timescale;
+                        if ( p_track->fmt.i_cat == AUDIO_ES )
+                            *pi_mooftime -= CLOCK_FREQ / p_track->fmt.audio.i_rate * p_data->p_sample_number[i];
+                        else
+                            *pi_mooftime -= CLOCK_FREQ / p_demux->p_sys->f_fps * p_data->p_sample_number[i];
+                        return VLC_SUCCESS;
+                    }
+                    else
+                        i_pos = i_offset;
+                }
+            }
+        }
+        p_tfra = p_tfra->p_next;
+    }
+    return VLC_EGENERIC;
+}
+
+static int LeafParseMDATwithMOOF( demux_t *p_demux, MP4_Box_t *p_moof )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    uint64_t i_pos;
+    assert( p_moof->i_type == ATOM_moof );
+    assert( p_sys->context.i_current_box_type == ATOM_mdat );
+
+    if ( p_sys->context.i_mdatbytesleft == 0 )
+    {
+        int i_ret = LeafMapTrafTrunContextes( p_demux, p_moof );
+        if ( i_ret != VLC_SUCCESS )
+            return i_ret;
+
+        /* Ready mdat section */
+        uint8_t mdat[8];
+        int i_read = stream_Read( p_demux->s, &mdat, 8 );
+        p_sys->context.i_mdatbytesleft = GetDWBE( mdat );
+        if ( i_read < 8 || p_sys->context.i_mdatbytesleft < 8 ||
+             VLC_FOURCC( mdat[4], mdat[5], mdat[6], mdat[7] ) != ATOM_mdat )
+        {
+            if ( MP4_stream_Tell( p_demux->s, &i_pos ) )
+                msg_Err(p_demux, "No mdat atom at %"PRIu64, i_pos - i_read );
+            return VLC_EGENERIC;
+        }
+        p_sys->context.i_mdatbytesleft -= 8;
+    }
+
+    if ( !MP4_stream_Tell( p_demux->s, &i_pos ) )
+        return VLC_EGENERIC;
+    if ( p_sys->b_smooth )
+        i_pos -= p_moof->i_pos;
+    mp4_track_t *p_track = LeafGetTrackByTrunPos( p_demux, i_pos, p_moof->i_pos );
+    if( p_track )
+    {
+        MP4_Box_data_tfhd_t *p_tfhd_data = p_track->context.BOXDATA(p_tfhd);
+        uint32_t i_trun_sample_default_duration = 0;
+        uint32_t i_trun_sample_default_size = 0;
+
+        if ( p_track->context.p_trun )
+        {
+            /* Get defaults for this/these RUN */
+            if( p_tfhd_data->i_flags & MP4_TFHD_DFLT_SAMPLE_DURATION )
+                i_trun_sample_default_duration = p_tfhd_data->i_default_sample_duration;
+
+            if( p_tfhd_data->i_flags & MP4_TFHD_DFLT_SAMPLE_SIZE )
+                i_trun_sample_default_size = p_tfhd_data->i_default_sample_size;
+
+            if( !i_trun_sample_default_duration || !i_trun_sample_default_size )
+            {
+                MP4_Box_t *p_trex = MP4_BoxGet( p_demux->p_sys->p_root, "moov/mvex/trex");
+                if ( p_trex )
+                {
+                    while( p_trex && BOXDATA(p_trex)->i_track_ID != p_tfhd_data->i_track_ID )
+                        p_trex = p_trex->p_next;
+                    if ( p_trex && !i_trun_sample_default_duration )
+                        i_trun_sample_default_duration = BOXDATA(p_trex)->i_default_sample_duration;
+                    if ( p_trex && !i_trun_sample_default_size )
+                        i_trun_sample_default_size = BOXDATA(p_trex)->i_default_sample_size;
+                }
+            }
+
+            const MP4_Box_data_trun_t *p_trun_data = p_track->context.BOXDATA(p_trun);
+
+           /* NOW PARSE TRUN WITH MDAT */
+            int i_ret = LeafParseTRUN( p_demux, p_track,
+                                   i_trun_sample_default_duration, i_trun_sample_default_size,
+                                   p_trun_data, & p_sys->context.i_mdatbytesleft );
+            if ( i_ret != VLC_SUCCESS )
+                goto end;
+
+            p_track->context.p_trun = p_track->context.p_trun->p_next;
+        }
+
+        if ( p_sys->context.i_mdatbytesleft == 0 )
+            p_sys->context.i_current_box_type = 0;
+        return VLC_SUCCESS;
+    }
+
+end:
+    /* Skip if we didn't reach the end of mdat box */
+    if ( p_sys->context.i_mdatbytesleft > 0 )
+    {
+        msg_Warn( p_demux, "mdat had still %"PRIu32" bytes unparsed as samples", p_sys->context.i_mdatbytesleft - 8 );
+        stream_ReadU32( p_demux->s, NULL, p_sys->context.i_mdatbytesleft );
+    }
+
+    p_sys->context.i_current_box_type = 0;
+
+    return VLC_SUCCESS;
+}
+
+static int DemuxAsLeaf( demux_t *p_demux )
+{
+    demux_sys_t *p_sys = p_demux->p_sys;
+    unsigned i_track_selected = 0;
+
+    /* check for newly selected/unselected track */
+    for( unsigned i_track = 0; i_track < p_sys->i_tracks; i_track++ )
+    {
+        mp4_track_t *tk = &p_sys->track[i_track];
+        bool b;
+
+        if( !tk->b_ok || tk->b_chapter )
+            continue;
+
+        es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
+        msg_Dbg( p_demux, "track %u %s!", tk->i_track_ID, b ? "enabled" : "disabled" );
+
+        if( tk->b_selected && !b )
+            MP4_TrackUnselect( p_demux, tk );
+        else if( !tk->b_selected && b)
+            MP4_frg_TrackSelect( p_demux, tk );
+
+        if( tk->b_selected )
+            i_track_selected++;
+    }
+
+    if( i_track_selected <= 0 )
+    {
+        msg_Warn( p_demux, "no track selected, exiting..." );
+        return 0;
+    }
+
+    if ( p_sys->context.i_current_box_type != ATOM_mdat )
+    {
+        /* Othewise mdat is skipped. FIXME: mdat reading ! */
+        const uint8_t *p_peek;
+        int i_read  = stream_Peek( p_demux->s, &p_peek, 8 );
+        if ( i_read < 8 )
+            return 0;
+
+        p_sys->context.i_current_box_type = VLC_FOURCC( p_peek[4], p_peek[5], p_peek[6], p_peek[7] );
+
+        if ( p_sys->context.i_current_box_type != ATOM_mdat )
+        {
+            if ( ! BoxExistsInRootTree( p_sys->p_root, p_sys->context.i_current_box_type, stream_Tell( p_demux->s ) ) )
+            {// only if !b_probed ??
+                MP4_Box_t *p_vroot = LoadNextChunk( p_demux );
+                switch( p_sys->context.i_current_box_type )
+                {
+                case ATOM_moov:
+                case ATOM_moof:
+                    /* create fragment */
+                    AddFragment( p_demux, p_vroot->p_first );
+                    //ft
+                default:
+                    break;
+                }
+
+                /* Append to root */
+                p_sys->p_root->p_last->p_next = p_vroot->p_first;
+                p_sys->p_root->p_last = p_vroot->p_first;
+                p_vroot->p_last = NULL;
+                p_vroot->p_next = NULL;
+                p_vroot->p_first = NULL;
+                MP4_BoxFree( p_demux->s, p_vroot );
+            }
+            else
+            {
+                /* Skip */
+                msg_Err( p_demux, "skipping known chunk type %4.4s size %"PRIu32, (char*)& p_sys->context.i_current_box_type, GetDWBE( p_peek ) );
+                stream_Read( p_demux->s, NULL, GetDWBE( p_peek ) );
+            }
+        }
+        else
+        {
+            /* skip mdat header */
+            p_sys->context.p_fragment = GetFragmentByPos( p_demux,
+                                       stream_Tell( p_demux->s ) + 8, true );
+        }
+
+    }
+
+    if ( p_sys->context.i_current_box_type == ATOM_mdat )
+    {
+        assert(p_sys->context.p_fragment);
+        if ( p_sys->context.p_fragment )
+        switch( p_sys->context.p_fragment->p_moox->i_type )
+        {
+            case ATOM_moov://[ftyp/moov, mdat]+ -> [moof, mdat]+
+                LeafParseMDATwithMOOV( p_demux );
+            break;
+            case ATOM_moof:
+                LeafParseMDATwithMOOF( p_demux, p_sys->context.p_fragment->p_moox ); // BACKUP CHUNK!
+            break;
+        default:
+             msg_Err( p_demux, "fragment type %4.4s", (char*) &p_sys->context.p_fragment->p_moox->i_type );
+             break;
+        }
+    }
+
+    /* Get current time */
+    mtime_t i_lowest_dts = VLC_TS_INVALID;
+    mtime_t i_lowest_time = INT64_MAX;
+    for( unsigned int i_track = 0; i_track < p_sys->i_tracks; i_track++ )
+    {
+        const mp4_track_t *p_track = &p_sys->track[i_track];
+        if( !p_track->b_selected || ( p_track->fmt.i_cat != VIDEO_ES && p_track->fmt.i_cat != AUDIO_ES ) )
+            continue;
+
+        i_lowest_time = __MIN( i_lowest_time, p_track->i_time * p_sys->i_timescale / p_track->i_timescale );
+
+        if ( i_lowest_dts == VLC_TS_INVALID )
+            i_lowest_dts = CLOCK_FREQ * p_track->i_time / p_track->i_timescale;
+        else
+            i_lowest_dts = __MIN( i_lowest_dts, CLOCK_FREQ * p_track->i_time / p_track->i_timescale );
+    }
+
+    p_sys->i_time = i_lowest_time;
+    p_sys->i_pcr = i_lowest_dts;
+    es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_pcr );
+
+    return 1;
+}
+
+#undef BOXDATA