mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtmpproto: Include the full path as app when "slist=" is found
This matches what librtmp does. This fixes automatic url parsing of crunchyroll urls. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
9f0b6e6827
commit
64f8c439fd
@ -2674,8 +2674,8 @@ reconnect:
|
|||||||
qmark = strchr(path, '?');
|
qmark = strchr(path, '?');
|
||||||
if (qmark && strstr(qmark, "slist=")) {
|
if (qmark && strstr(qmark, "slist=")) {
|
||||||
char* amp;
|
char* amp;
|
||||||
// After slist we have the playpath, before the params, the app
|
// After slist we have the playpath, the full path is used as app
|
||||||
av_strlcpy(rt->app, path + 1, FFMIN(qmark - path, APP_MAX_LENGTH));
|
av_strlcpy(rt->app, path + 1, APP_MAX_LENGTH);
|
||||||
fname = strstr(path, "slist=") + 6;
|
fname = strstr(path, "slist=") + 6;
|
||||||
// Strip any further query parameters from fname
|
// Strip any further query parameters from fname
|
||||||
amp = strchr(fname, '&');
|
amp = strchr(fname, '&');
|
||||||
|
Loading…
Reference in New Issue
Block a user