Lines Matching defs:streamid
88 char *streamid;
138 { "streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
139 { "srt_streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
240 /* Max streamid length plus an extra space for the terminating null character */
241 char streamid[513];
242 int streamid_len = sizeof(streamid);
261 if (!libsrt_getsockopt(h, ret, SRTO_STREAMID, "SRTO_STREAMID", streamid, &streamid_len))
263 av_log(h, AV_LOG_VERBOSE, "accept streamid [%s], length %d\n", streamid, streamid_len);
358 (s->streamid && libsrt_setsockopt(h, fd, SRTO_STREAMID, "SRTO_STREAMID", s->streamid, strlen(s->streamid)) < 0) ||
633 if (av_find_info_tag(buf, sizeof(buf), "streamid", p)) {
634 av_freep(&s->streamid);
635 s->streamid = av_strdup(buf);
636 if (!s->streamid) {
673 av_freep(&s->streamid);