Lines Matching refs:tmp_str
476 char *tmp_str = av_mallocz(max_url_size); in get_content_url() local
478 if (!tmp_str) in get_content_url()
487 memset(tmp_str, 0, max_url_size); in get_content_url()
488 ff_make_absolute_url(tmp_str, max_url_size, "", text); in get_content_url()
495 ff_make_absolute_url(tmp_str, max_url_size, tmp_str, val); in get_content_url()
498 url = av_strireplace(tmp_str, "$RepresentationID$", rep_id_val); in get_content_url()
502 av_strlcpy(tmp_str, url, max_url_size); in get_content_url()
504 if (rep_bandwidth_val && tmp_str[0] != '\0') { in get_content_url()
507 url = av_strireplace(tmp_str, "$Bandwidth$", rep_bandwidth_val); in get_content_url()
513 av_free(tmp_str); in get_content_url()
703 char *tmp_str = NULL; in resolve_content_path() local
746 tmp_str = av_mallocz(tmp_max_url_size); in resolve_content_path()
747 if (!tmp_str || !path) { in resolve_content_path()
787 memset(tmp_str, 0, strlen(tmp_str)); in resolve_content_path()
789 av_strlcpy(tmp_str, root_url, size + 1); in resolve_content_path()
792 if (start && av_stristr(tmp_str, text)) { in resolve_content_path()
793 char *p = tmp_str; in resolve_content_path()
794 if (!av_strncasecmp(tmp_str, "http://", 7)) { in resolve_content_path()
796 } else if (!av_strncasecmp(tmp_str, "https://", 8)) { in resolve_content_path()
802 av_strlcat(tmp_str, text + start, tmp_max_url_size); in resolve_content_path()
803 xmlNodeSetContent(baseurl_nodes[i], tmp_str); in resolve_content_path()
814 av_free(tmp_str); in resolve_content_path()