mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 07:42:51 +00:00
avio: allow any chars in protocols
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2bb1c713cc
commit
c12e1bd1bc
@ -265,17 +265,17 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags,
|
||||
{
|
||||
URLProtocol *up = NULL;
|
||||
char proto_str[128], proto_nested[128], *ptr;
|
||||
size_t proto_len = strspn(filename, URL_SCHEME_CHARS);
|
||||
const char *proto_end = strchr(filename, ':');
|
||||
|
||||
if (!first_protocol) {
|
||||
av_log(NULL, AV_LOG_WARNING, "No URL Protocols are registered. "
|
||||
"Missing call to av_register_all()?\n");
|
||||
}
|
||||
|
||||
if (filename[proto_len] != ':' || is_dos_path(filename))
|
||||
if (!proto_end || is_dos_path(filename))
|
||||
strcpy(proto_str, "file");
|
||||
else
|
||||
av_strlcpy(proto_str, filename, FFMIN(proto_len+1, sizeof(proto_str)));
|
||||
av_strlcpy(proto_str, filename, FFMIN(proto_end-filename+1, sizeof(proto_str)));
|
||||
|
||||
av_strlcpy(proto_nested, proto_str, sizeof(proto_nested));
|
||||
if ((ptr = strchr(proto_nested, '+')))
|
||||
|
Loading…
Reference in New Issue
Block a user