Lines Matching refs:snddropdelay
68 int64_t snddropdelay;
115 { "snddropdelay", "The sender's extra delay(in microseconds) before dropping packets", OFFSET(snddropdelay), AV_OPT_TYPE_INT64, { .i64 = -2 }, -2, INT64_MAX, .flags = D|E },
324 int snddropdelay = s->snddropdelay > 0 ? s->snddropdelay / 1000 : s->snddropdelay;
342 (s->snddropdelay >=-1 && libsrt_setsockopt(h, fd, SRTO_SNDDROPDELAY, "SRTO_SNDDROPDELAY", &snddropdelay, sizeof(snddropdelay)) < 0) ||
562 if (av_find_info_tag(buf, sizeof(buf), "snddropdelay", p)) {
563 s->snddropdelay = strtoll(buf, NULL, 10);