ffmpeg | branch: master | Timo Rothenpieler <t...@rothenpieler.org> | Tue Aug 
15 22:50:23 2023 +0200| [f225f8d7464569c7b917015c26ad30a37a5fbbe2] | committer: 
Timo Rothenpieler

avformat/hls: reset the playlist init segment on seek

The mp4 demuxer gets very upset when it gets flushed and not re-fed this
data.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f225f8d7464569c7b917015c26ad30a37a5fbbe2
---

 libavformat/hls.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/hls.c b/libavformat/hls.c
index 2a2fe28a54..c625e30291 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -2506,6 +2506,9 @@ static int hls_read_seek(AVFormatContext *s, int 
stream_index,
         /* Flush the packet queue of the subdemuxer. */
         ff_read_frame_flush(pls->ctx);
 
+        /* Reset the init segment so it's re-fetched and served appropiately */
+        pls->cur_init_section = NULL;
+
         pls->seek_timestamp = seek_timestamp;
         pls->seek_flags = flags;
 

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to