Lines Matching refs:str
38 int ff_url_join(char *str, int size, const char *proto,
46 str[0] = '\0';
48 av_strlcatf(str, size, "%s://", proto);
50 av_strlcatf(str, size, "%s@", authorization);
57 av_strlcat(str, "[", size);
58 av_strlcat(str, hostname, size);
59 av_strlcat(str, "]", size);
61 av_strlcat(str, hostname, size);
67 av_strlcat(str, hostname, size);
70 av_strlcatf(str, size, ":%d", port);
73 size_t len = strlen(str);
76 vsnprintf(str + len, size > len ? size - len : 0, fmt, vl);
79 return strlen(str);