Steven Liu <l...@chinaffmpeg.org> 于2018年7月9日周一 下午5:12写道: > > 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 <l...@chinaffmpeg.org> > --- > libavformat/hlsenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c > index 2268f898b0..35a26e8875 100644 > --- a/libavformat/hlsenc.c > +++ b/libavformat/hlsenc.c > @@ -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 ; > } > -- > 2.15.2 (Apple Git-101.1) > > Pushed
Thanks _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel