mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
Merge commit 'a16431034d9bd44182bf844d6bbde2c98bc4e6b5'
* commit 'a16431034d9bd44182bf844d6bbde2c98bc4e6b5': hls: Factor the sequence computation Conflicts: libavformat/hlsenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
5b4c8aac97
@ -133,6 +133,7 @@ static int hls_window(AVFormatContext *s, int last)
|
||||
ListEntry *en;
|
||||
int target_duration = 0;
|
||||
int ret = 0;
|
||||
int64_t sequence = FFMAX(hls->start_sequence, hls->sequence - hls->nb_entries);
|
||||
|
||||
if ((ret = avio_open2(&hls->pb, s->filename, AVIO_FLAG_WRITE,
|
||||
&s->interrupt_callback, NULL)) < 0)
|
||||
@ -146,11 +147,10 @@ static int hls_window(AVFormatContext *s, int last)
|
||||
avio_printf(hls->pb, "#EXTM3U\n");
|
||||
avio_printf(hls->pb, "#EXT-X-VERSION:3\n");
|
||||
avio_printf(hls->pb, "#EXT-X-TARGETDURATION:%d\n", target_duration);
|
||||
avio_printf(hls->pb, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
|
||||
FFMAX(hls->start_sequence, hls->sequence - hls->nb_entries));
|
||||
avio_printf(hls->pb, "#EXT-X-MEDIA-SEQUENCE:%"PRId64"\n", sequence);
|
||||
|
||||
av_log(s, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%"PRId64"\n",
|
||||
FFMAX(hls->start_sequence, hls->sequence - hls->size));
|
||||
sequence);
|
||||
|
||||
for (en = hls->list; en; en = en->next) {
|
||||
avio_printf(hls->pb, "#EXTINF:%f,\n", en->duration);
|
||||
|
Loading…
Reference in New Issue
Block a user