This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
forked from media-kit/libmpv-win32-video-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9f3baf
commit 997babe
Showing
2 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c | ||
index 29d4680..c50afaf 100644 | ||
--- a/libavformat/dashdec.c | ||
+++ b/libavformat/dashdec.c | ||
@@ -768,7 +768,9 @@ static int resolve_content_path(AVFormatContext *s, const char *url, int *max_ur | ||
baseurl = xmlNodeGetContent(node); | ||
root_url = (av_strcasecmp(baseurl, "")) ? baseurl : path; | ||
if (node) { | ||
- xmlNodeSetContent(node, root_url); | ||
+ char* root_url_content = xmlEncodeSpecialChars(NULL, root_url); | ||
+ xmlNodeSetContent(node, root_url_content); | ||
+ xmlFree(root_url_content); | ||
updated = 1; | ||
} | ||
|
||
@@ -802,7 +804,9 @@ static int resolve_content_path(AVFormatContext *s, const char *url, int *max_ur | ||
memset(p + 1, 0, strlen(p)); | ||
} | ||
av_strlcat(tmp_str, text + start, tmp_max_url_size); | ||
- xmlNodeSetContent(baseurl_nodes[i], tmp_str); | ||
+ char* tmp_str_content = xmlEncodeSpecialChars(NULL, tmp_str); | ||
+ xmlNodeSetContent(baseurl_nodes[i], tmp_str_content); | ||
+ xmlFree(tmp_str_content); | ||
updated = 1; | ||
xmlFree(text); | ||
} | ||
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c | ||
index 29d4680..c50afaf 100644 | ||
--- a/libavformat/dashdec.c | ||
+++ b/libavformat/dashdec.c | ||
@@ -768,7 +768,9 @@ static int resolve_content_path(AVFormatContext *s, const char *url, int *max_ur | ||
baseurl = xmlNodeGetContent(node); | ||
root_url = (av_strcasecmp(baseurl, "")) ? baseurl : path; | ||
if (node) { | ||
- xmlNodeSetContent(node, root_url); | ||
+ char* root_url_content = xmlEncodeSpecialChars(NULL, root_url); | ||
+ xmlNodeSetContent(node, root_url_content); | ||
+ xmlFree(root_url_content); | ||
updated = 1; | ||
} | ||
|
||
@@ -802,7 +804,9 @@ static int resolve_content_path(AVFormatContext *s, const char *url, int *max_ur | ||
memset(p + 1, 0, strlen(p)); | ||
} | ||
av_strlcat(tmp_str, text + start, tmp_max_url_size); | ||
- xmlNodeSetContent(baseurl_nodes[i], tmp_str); | ||
+ char* tmp_str_content = xmlEncodeSpecialChars(NULL, tmp_str); | ||
+ xmlNodeSetContent(baseurl_nodes[i], tmp_str_content); | ||
+ xmlFree(tmp_str_content); | ||
updated = 1; | ||
xmlFree(text); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
diff --git a/libavformat/hls.c b/libavformat/hls.c | ||
index 2a2fe28a540f..c625e3029116 100644 | ||
--- a/libavformat/hls.c | ||
+++ b/libavformat/hls.c | ||
@@ -2506,6 +2506,9 @@ static int hls_read_seek(AVFormatContext *s, int stream_index, | ||
/* Flush the packet queue of the subdemuxer. */ | ||
ff_read_frame_flush(pls->ctx); | ||
|
||
+ /* Reset the init segment so it's re-fetched and served appropiately */ | ||
+ pls->cur_init_section = NULL; | ||
+ | ||
pls->seek_timestamp = seek_timestamp; | ||
pls->seek_flags = flags; | ||
|
||
diff --git a/libavformat/hls.c b/libavformat/hls.c | ||
index 2a2fe28a540f..c625e3029116 100644 | ||
--- a/libavformat/hls.c | ||
+++ b/libavformat/hls.c | ||
@@ -2506,6 +2506,9 @@ static int hls_read_seek(AVFormatContext *s, int stream_index, | ||
/* Flush the packet queue of the subdemuxer. */ | ||
ff_read_frame_flush(pls->ctx); | ||
|
||
+ /* Reset the init segment so it's re-fetched and served appropiately */ | ||
+ pls->cur_init_section = NULL; | ||
+ | ||
pls->seek_timestamp = seek_timestamp; | ||
pls->seek_flags = flags; | ||
|