]> git.sesse.net Git - ffmpeg/commitdiff
avformat/hlsenc: improve compute after_init_list_dur
authorSteven Liu <lq@chinaffmpeg.org>
Mon, 9 Jul 2018 09:05:30 +0000 (17:05 +0800)
committerSteven Liu <lq@chinaffmpeg.org>
Wed, 11 Jul 2018 05:28:14 +0000 (13:28 +0800)
fix ticket: 7305
vs->sequence - hls->start_sequence - vs->nb_entries is the
after_init_list_dur fragment numbers
fix the wrong compute way vs->sequence - vs->nb_entries

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
libavformat/hlsenc.c

index 2268f898b0873046180fc413042d1817ee810dbd..b5644f05c44d361298aab12c98d0c0f301a43ecd 100644 (file)
@@ -2178,7 +2178,7 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
     if (vs->sequence - vs->nb_entries > hls->start_sequence && hls->init_time > 0) {
         /* reset end_pts, hls->recording_time at end of the init hls list */
         int init_list_dur = hls->init_time * vs->nb_entries * AV_TIME_BASE;
-        int after_init_list_dur = (vs->sequence - vs->nb_entries ) * hls->time * AV_TIME_BASE;
+        int after_init_list_dur = (vs->sequence - hls->start_sequence - vs->nb_entries ) * (hls->time * AV_TIME_BASE);
         hls->recording_time = hls->time * AV_TIME_BASE;
         end_pts = init_list_dur + after_init_list_dur ;
     }