Lines Matching defs:tmp_str
478 char *tmp_str = av_mallocz(max_url_size);
480 if (!tmp_str)
489 memset(tmp_str, 0, max_url_size);
490 ff_make_absolute_url(tmp_str, max_url_size, "", text);
497 ff_make_absolute_url(tmp_str, max_url_size, tmp_str, val);
500 url = av_strireplace(tmp_str, "$RepresentationID$", rep_id_val);
504 av_strlcpy(tmp_str, url, max_url_size);
506 if (rep_bandwidth_val && tmp_str[0] != '\0') {
509 url = av_strireplace(tmp_str, "$Bandwidth$", rep_bandwidth_val);
515 av_free(tmp_str);
705 char *tmp_str = NULL;
748 tmp_str = av_mallocz(tmp_max_url_size);
749 if (!tmp_str || !path) {
789 memset(tmp_str, 0, strlen(tmp_str));
791 av_strlcpy(tmp_str, root_url, size + 1);
794 if (start && av_stristr(tmp_str, text)) {
795 char *p = tmp_str;
796 if (!av_strncasecmp(tmp_str, "http://", 7)) {
798 } else if (!av_strncasecmp(tmp_str, "https://", 8)) {
804 av_strlcat(tmp_str, text + start, tmp_max_url_size);
805 xmlNodeSetContent(baseurl_nodes[i], tmp_str);
816 av_free(tmp_str);