Lines Matching defs:repeat
520 * Adds repeat field to the time structure of session
521 * r=<repeat interval> <active duration> <offsets from start-time>
730 sdp_repeat_t *repeat;
771 repeat = time->t_repeat;
772 while (repeat != NULL) {
774 len += snprintf(buf, 1, "%llu", repeat->r_interval);
775 len += snprintf(buf, 1, "%llu", repeat->r_duration) + 1;
776 list = repeat->r_offset;
782 repeat = repeat->r_next;
834 sdp_repeat_t *repeat;
891 repeat = time->t_repeat;
892 while (repeat != NULL) {
893 if (sdp_list_to_str(repeat->r_offset, &offset,
897 if (sdp_add_repeat(new_time, repeat->r_interval,
898 repeat->r_duration, offset) != 0) {
903 repeat = repeat->r_next;
971 sdp_repeat_t *repeat;
1042 repeat = time->t_repeat;
1043 while (repeat != NULL) {
1044 wrote = snprintf(buf, len, "r=%llu %llu", repeat->
1045 r_interval, repeat->r_duration);
1048 list = repeat->r_offset;
1059 repeat = repeat->r_next;