Lines Matching refs:base
50 static void test(const char *base, const char *rel)
55 ret = ff_make_absolute_url2(buf, sizeof(buf), base, rel, 0);
57 printf("%50s %-20s => error %s\n", base, rel, av_err2str(ret));
60 printf("%50s %-20s => %s\n", base, rel, buf);
61 ret = ff_make_absolute_url2(buf_dos, sizeof(buf_dos), base, rel, 1);
64 ret = ff_make_absolute_url(buf_native, sizeof(buf_native), base, rel);
68 printf("%50s %-20sDOS %s\n", base, rel, buf_dos);
72 if (base) {
74 snprintf(buf2, sizeof(buf2), "%s", base);
77 printf("In-place handling of %s + %s failed\n", base, rel);