[FFmpeg-devel] [PATCH v1] lavf/hls: add option for hls segment request append http get request parameters
mirsfang at gmail.com
mirsfang at gmail.com
Wed Aug 31 16:12:54 EEST 2022
From: mirs <mirsfang at gmail.com>
Signed-off-by: mirs <mirsfang at gmail.com>
---
libavformat/hls.c | 31 ++++++++++++++++++++++++++++---
1 file changed, 28 insertions(+), 3 deletions(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 3dc7bd3930..3a1cc855c4 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -220,6 +220,7 @@ typedef struct HLSContext {
AVIOInterruptCB *interrupt_callback;
AVDictionary *avio_opts;
AVDictionary *seg_format_opts;
+ int seg_append_http_get_params;
char *allowed_extensions;
int max_reload;
int http_persistent;
@@ -307,6 +308,23 @@ static void free_rendition_list(HLSContext *c)
c->n_renditions = 0;
}
+static void hls_append_param_to_url(const HLSContext * c,char *buf, int size, const char *base,
+ const char *rel)
+{
+ if (c && c->seg_append_http_get_params && base) {
+ char * ch = strchr(base, '?');
+ if (!ch) {
+ return;
+ }
+
+ if (strchr(buf, '?')) {
+ ch++;
+ av_strlcat(buf, "&", size);
+ }
+ av_strlcat(buf, ch, size);
+ }
+}
+
static struct playlist *new_playlist(HLSContext *c, const char *url,
const char *base)
{
@@ -319,6 +337,7 @@ static struct playlist *new_playlist(HLSContext *c, const char *url,
return NULL;
}
ff_make_absolute_url(pls->url, sizeof(pls->url), base, url);
+ hls_append_param_to_url(c,pls->url, sizeof(pls->url), base, url);
if (!pls->url[0]) {
av_packet_free(&pls->pkt);
av_free(pls);
@@ -411,7 +430,7 @@ struct init_section_info {
char byterange[32];
};
-static struct segment *new_init_section(struct playlist *pls,
+static struct segment *new_init_section(const HLSContext * c,struct playlist *pls,
struct init_section_info *info,
const char *url_base)
{
@@ -429,6 +448,7 @@ static struct segment *new_init_section(struct playlist *pls,
ptr = info->uri;
} else {
ff_make_absolute_url(tmp_str, sizeof(tmp_str), url_base, info->uri);
+ hls_append_param_to_url(c,tmp_str, sizeof(tmp_str), url_base, info->uri);
if (!tmp_str[0]) {
av_free(sec);
return NULL;
@@ -861,7 +881,7 @@ static int parse_playlist(HLSContext *c, const char *url,
goto fail;
ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_init_section_args,
&info);
- cur_init_section = new_init_section(pls, &info, url);
+ cur_init_section = new_init_section(c,pls, &info, url);
if (!cur_init_section) {
ret = AVERROR(ENOMEM);
goto fail;
@@ -877,6 +897,7 @@ static int parse_playlist(HLSContext *c, const char *url,
if (key_type != KEY_NONE) {
ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
+ hls_append_param_to_url(c,tmp_str, sizeof(tmp_str), url, key);
if (!tmp_str[0]) {
av_free(cur_init_section);
ret = AVERROR_INVALIDDATA;
@@ -949,6 +970,7 @@ static int parse_playlist(HLSContext *c, const char *url,
if (key_type != KEY_NONE) {
ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
+ hls_append_param_to_url(c,tmp_str, sizeof(tmp_str), url, key);
if (!tmp_str[0]) {
ret = AVERROR_INVALIDDATA;
av_free(seg);
@@ -963,8 +985,9 @@ static int parse_playlist(HLSContext *c, const char *url,
} else {
seg->key = NULL;
}
-
ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, line);
+ hls_append_param_to_url(c,tmp_str, sizeof(tmp_str), url, line);
+
if (!tmp_str[0]) {
ret = AVERROR_INVALIDDATA;
if (seg->key)
@@ -2548,6 +2571,8 @@ static const AVOption hls_options[] = {
OFFSET(http_seekable), AV_OPT_TYPE_BOOL, { .i64 = -1}, -1, 1, FLAGS},
{"seg_format_options", "Set options for segment demuxer",
OFFSET(seg_format_opts), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, FLAGS},
+ {"seg_append_http_get_params", "Segment request append http get parameters 0 = disable 1 = enable",
+ OFFSET(seg_append_http_get_params), AV_OPT_TYPE_BOOL,{.i64 = 1}, 0, 1, FLAGS},
{NULL}
};
--
2.32.1 (Apple Git-133)
More information about the ffmpeg-devel
mailing list