Browse Source

avformat/dashenc: Signal http end of chunk(http_shutdown) explicitly

Currently http end of chunk is signalled implicitly in dashenc_io_open().
This mean playlists http writes would have to wait upto a segment duration to signal end of chunk causing delays.
This patch will fix that problem and improve performance.
tags/n4.0
Karthick Jeyapal 8 years ago
parent
commit
18e2ac032e
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/dashenc.c

+ 3
- 0
libavformat/dashenc.c View File

@@ -149,7 +149,10 @@ static void dashenc_io_close(AVFormatContext *s, AVIOContext **pb, char *filenam
ff_format_io_close(s, pb); ff_format_io_close(s, pb);
#if CONFIG_HTTP_PROTOCOL #if CONFIG_HTTP_PROTOCOL
} else { } else {
URLContext *http_url_context = ffio_geturlcontext(*pb);
av_assert0(http_url_context);
avio_flush(*pb); avio_flush(*pb);
ffurl_shutdown(http_url_context, AVIO_FLAG_WRITE);
#endif #endif
} }
} }


Loading…
Cancel
Save