summaryrefslogtreecommitdiff
path: root/libavformat/applehttp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-12-27 13:30:55 +0200
committerMartin Storsjö <martin@martin.st>2011-12-29 11:42:45 +0200
commit617475a95c70efc6fae7c037915851daea9145cc (patch)
tree45349c28be2d0bf82c93ddd3810bc1c51c1e92d4 /libavformat/applehttp.c
parent356ae5f65bd351923e6eda6f35a12bb5f362c6ab (diff)
applehttp: Use half the target duration as interval if the playlist didn't update
This is mandated in draft-pantos-http-live-streaming-07, section 6.3.4. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/applehttp.c')
-rw-r--r--libavformat/applehttp.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/libavformat/applehttp.c b/libavformat/applehttp.c
index 9ab5927b92..f62e2d074f 100644
--- a/libavformat/applehttp.c
+++ b/libavformat/applehttp.c
@@ -376,7 +376,6 @@ static int read_data(void *opaque, uint8_t *buf, int buf_size)
restart:
if (!v->input) {
-reload:
/* If this is a live stream and the reload interval has elapsed since
* the last playlist reload, reload the variant playlists now. */
int64_t reload_interval = v->n_segments > 0 ?
@@ -384,10 +383,16 @@ reload:
v->target_duration;
reload_interval *= 1000000;
+reload:
if (!v->finished &&
- av_gettime() - v->last_load_time >= reload_interval &&
- (ret = parse_playlist(c, v->url, v, NULL)) < 0)
+ av_gettime() - v->last_load_time >= reload_interval) {
+ if ((ret = parse_playlist(c, v->url, v, NULL)) < 0)
return ret;
+ /* If we need to reload the playlist again below (if
+ * there's still no more segments), switch to a reload
+ * interval of half the target duration. */
+ reload_interval = v->target_duration * 500000;
+ }
if (v->cur_seq_no < v->start_seq_no) {
av_log(NULL, AV_LOG_WARNING,
"skipping %d segments ahead, expired from playlists\n",