This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
forked from zhongfly/mpv-winbuild
-
Notifications
You must be signed in to change notification settings - Fork 12
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
b81021b
commit b13bb9c
Showing
5 changed files
with
308 additions
and
111 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 |
---|---|---|
@@ -0,0 +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); | ||
} |
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 |
---|---|---|
@@ -0,0 +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; | ||
|
Oops, something went wrong.