Lines Matching defs:opt
37 const char *data, *opt, *next;
50 opt = uri;
51 while (opt < data) {
52 next = av_x_if_null(memchr(opt, ';', data - opt), data);
53 if (opt == uri) {
54 if (!memchr(opt, '/', next - opt)) { /* basic validity check */
56 (int)(next - opt), opt);
60 (int)(next - opt), opt);
62 if (!av_strncasecmp(opt, "base64", next - opt)) {
66 (int)(next - opt), opt);
69 opt = next + 1;