[FFmpeg-cvslog] hls: Factor the sequence computation
Luca Barbato
git at videolan.org
Wed Apr 30 21:25:08 CEST 2014
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Tue Apr 29 18:37:01 2014 +0200| [a16431034d9bd44182bf844d6bbde2c98bc4e6b5] | committer: Luca Barbato
hls: Factor the sequence computation
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a16431034d9bd44182bf844d6bbde2c98bc4e6b5
---
libavformat/hlsenc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index dc51e7e..79820f0 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -132,6 +132,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->size);
if ((ret = avio_open2(&hls->pb, s->filename, AVIO_FLAG_WRITE,
&s->interrupt_callback, NULL)) < 0)
@@ -145,11 +146,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->size));
+ 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:%d,\n", en->duration);
More information about the ffmpeg-cvslog
mailing list