Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: mirsfang@gmail.com
To: ffmpeg-devel@ffmpeg.org
Cc: mirs <mirsfang@gmail.com>
Subject: [FFmpeg-devel] [PATCH v1] lavf/hls: add option for hls segment request append http get request parameters
Date: Wed, 31 Aug 2022 21:12:54 +0800
Message-ID: <20220831131254.21788-1-mirsfang@gmail.com> (raw)

From: mirs <mirsfang@gmail.com>

Signed-off-by: mirs <mirsfang@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)

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

             reply	other threads:[~2022-08-31 13:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-31 13:12 mirsfang [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-31  7:13 mirsfang
2022-08-31  7:22 ` Steven Liu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220831131254.21788-1-mirsfang@gmail.com \
    --to=mirsfang@gmail.com \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git