Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
build: mpv & FFmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmercerind authored Feb 27, 2024
1 parent b81021b commit b13bb9c
Show file tree
Hide file tree
Showing 5 changed files with 308 additions and 111 deletions.
26 changes: 26 additions & 0 deletions packages/ffmpeg-dash-base-url-escape.patch
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);
}
14 changes: 14 additions & 0 deletions packages/ffmpeg-fix-hls-mp4-seek.patch
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;

Loading

0 comments on commit b13bb9c

Please sign in to comment.