diff --git a/modules/demux/smooth/mp4/IndexReader.cpp b/modules/demux/smooth/mp4/IndexReader.cpp
index e101ae307bc94a32a960938d4353de100058f08c..fe7c5402cefed947d9e3873a25dee57ed933c76b 100644
--- a/modules/demux/smooth/mp4/IndexReader.cpp
+++ b/modules/demux/smooth/mp4/IndexReader.cpp
@@ -36,12 +36,18 @@ IndexReader::IndexReader(vlc_object_t *obj)
 {
 }
 
-bool IndexReader::parseIndex(block_t *p_block, BaseRepresentation *rep)
+bool IndexReader::parseIndex(block_t *p_block, BaseRepresentation *rep, uint64_t sequence)
 {
     if(!rep || !parseBlock(p_block))
         return false;
 
-    /* Do track ID fixup */
+    /* Fixup moof sequence as they do not monotonically increase
+       nor provide a way to have moof time on implicit discontinuity */
+    const MP4_Box_t *mfhd_box = MP4_BoxGet( rootbox, "moof/mfhd" );
+    if( mfhd_box )
+        SetDWBE( &p_block->p_buffer[mfhd_box->i_pos + 8 + 4], sequence );
+
+    /* Do track ID fixup, must match track #1 */
     const MP4_Box_t *tfhd_box = MP4_BoxGet( rootbox, "moof/traf/tfhd" );
     if ( tfhd_box )
         SetDWBE( &p_block->p_buffer[tfhd_box->i_pos + 8 + 4], 0x01 );
diff --git a/modules/demux/smooth/mp4/IndexReader.hpp b/modules/demux/smooth/mp4/IndexReader.hpp
index a8599a6529b9c6a037ec4f958fa57a4ab0e1a112..94b20e4f1881e46eec2849d4ad55eaeb297af17d 100644
--- a/modules/demux/smooth/mp4/IndexReader.hpp
+++ b/modules/demux/smooth/mp4/IndexReader.hpp
@@ -41,7 +41,7 @@ namespace smooth
         {
             public:
                 IndexReader(vlc_object_t *);
-                bool parseIndex(block_t *, BaseRepresentation *);
+                bool parseIndex(block_t *, BaseRepresentation *, uint64_t);
         };
     }
 }
diff --git a/modules/demux/smooth/playlist/SmoothSegment.cpp b/modules/demux/smooth/playlist/SmoothSegment.cpp
index e04bdefc0a2e7e0c9a11a29a729248a80e7c09bf..273d86ef16eed60680d8364520f2912490b366af 100644
--- a/modules/demux/smooth/playlist/SmoothSegment.cpp
+++ b/modules/demux/smooth/playlist/SmoothSegment.cpp
@@ -49,7 +49,7 @@ void SmoothSegmentChunk::onDownload(block_t **pp_block)
         return;
 
     IndexReader br(rep->getPlaylist()->getVLCObject());
-    br.parseIndex(*pp_block, rep);
+    br.parseIndex(*pp_block, rep, sequence);
 
     /* If timeshift depth is present, we use it for expiring segments
        as we never update playlist itself */