[FFmpeg-devel] [PATCH 3/3] libavformat/hlsenc: Persistent HTTP connections supported as an option
Karthick J
kjeyapal at akamai.com
Tue Nov 7 12:33:56 EET 2017
---
doc/muxers.texi | 3 +++
libavformat/hlsenc.c | 50 +++++++++++++++++++++++++++++++++++++++++++-------
2 files changed, 46 insertions(+), 7 deletions(-)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 91bbe67..1e1468c 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -794,6 +794,9 @@ files.
@item http_user_agent
Override User-Agent field in HTTP header. Applicable only for HTTP output.
+ at item http_persistent
+Use persistent HTTP connections. Applicable only for HTTP output.
+
@end table
@anchor{ico}
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 5ea9d21..4a581b4 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -44,6 +44,7 @@
#include "avformat.h"
#include "avio_internal.h"
+#include "http.h"
#include "internal.h"
#include "os_support.h"
@@ -175,6 +176,7 @@ typedef struct HLSContext {
double initial_prog_date_time;
char current_segment_final_filename_fmt[1024]; // when renaming segments
char *user_agent;
+ int http_persistent;
} HLSContext;
static int get_int_from_double(double val)
@@ -215,10 +217,40 @@ static int mkdir_p(const char *path) {
return ret;
}
+static int is_http_proto(char *filename) {
+ const char *proto = avio_find_protocol_name(filename);
+ return proto ? (!av_strcasecmp(proto, "http") || !av_strcasecmp(proto, "https")) : 0;
+}
+
+static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename,
+ AVDictionary **options) {
+ HLSContext *hls = s->priv_data;
+ int http_base_proto = is_http_proto(filename);
+ int err;
+ if (*pb == NULL || !http_base_proto || !hls->http_persistent) {
+ err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options);
+ } else {
+ URLContext *http_url_context = ffio_geturlcontext(*pb);
+ err = ff_http_do_new_request(http_url_context, filename);
+ }
+ return err;
+}
+
+static void hlsenc_io_close(AVFormatContext *s, AVIOContext **pb, char *filename) {
+ HLSContext *hls = s->priv_data;
+ int http_base_proto = is_http_proto(filename);
+
+ if (!http_base_proto || !hls->http_persistent || hls->key_info_file || hls->encrypt) {
+ ff_format_io_close(s, pb);
+ } else if (*pb) {
+ URLContext *http_url_context = ffio_geturlcontext(*pb);
+ http_url_context->prot->url_write(http_url_context, NULL, 0);
+ }
+}
+
static void set_http_options(AVFormatContext *s, AVDictionary **options, HLSContext *c)
{
- const char *proto = avio_find_protocol_name(s->filename);
- int http_base_proto = proto ? (!av_strcasecmp(proto, "http") || !av_strcasecmp(proto, "https")) : 0;
+ int http_base_proto = is_http_proto(s->filename);
if (c->method) {
av_dict_set(options, "method", c->method, 0);
@@ -228,6 +260,8 @@ static void set_http_options(AVFormatContext *s, AVDictionary **options, HLSCont
}
if (c->user_agent)
av_dict_set(options, "user_agent", c->user_agent, 0);
+ if (c->http_persistent)
+ av_dict_set_int(options, "multiple_requests", 1, 0);
}
@@ -1263,17 +1297,17 @@ static int hls_start(AVFormatContext *s)
err = AVERROR(ENOMEM);
goto fail;
}
- err = s->io_open(s, &oc->pb, filename, AVIO_FLAG_WRITE, &options);
+ err = hlsenc_io_open(s, &oc->pb, filename, &options);
av_free(filename);
av_dict_free(&options);
if (err < 0)
return err;
} else
- if ((err = s->io_open(s, &oc->pb, oc->filename, AVIO_FLAG_WRITE, &options)) < 0)
+ if ((err = hlsenc_io_open(s, &oc->pb, oc->filename, &options)) < 0)
goto fail;
if (c->vtt_basename) {
set_http_options(s, &options, c);
- if ((err = s->io_open(s, &vtt_oc->pb, vtt_oc->filename, AVIO_FLAG_WRITE, &options)) < 0)
+ if ((err = hlsenc_io_open(s, &vtt_oc->pb, vtt_oc->filename, &options)) < 0)
goto fail;
}
av_dict_free(&options);
@@ -1661,9 +1695,10 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
hls->size = new_start_pos - hls->start_pos;
if (!byterange_mode) {
- ff_format_io_close(s, &oc->pb);
+ hlsenc_io_close(s, &oc->pb,
+ hls->fmp4_init_mode ? hls->base_output_dirname : oc->filename);
if (hls->vtt_avf) {
- ff_format_io_close(s, &hls->vtt_avf->pb);
+ hlsenc_io_close(s, &hls->vtt_avf->pb, hls->vtt_avf->filename);
}
}
if ((hls->flags & HLS_TEMP_FILE) && oc->filename[0]) {
@@ -1829,6 +1864,7 @@ static const AVOption options[] = {
{"epoch", "seconds since epoch", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH }, INT_MIN, INT_MAX, E, "start_sequence_source_type" },
{"datetime", "current datetime as YYYYMMDDhhmmss", 0, AV_OPT_TYPE_CONST, {.i64 = HLS_START_SEQUENCE_AS_FORMATTED_DATETIME }, INT_MIN, INT_MAX, E, "start_sequence_source_type" },
{"http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E},
+ {"http_persistent", "Use persistent HTTP connections", OFFSET(http_persistent), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, E },
{ NULL },
};
--
1.9.1
More information about the ffmpeg-devel
mailing list