Browse Source

MT#61368 add __medias_unconfirm helper

Change-Id: I330cf729d5a216aef79dd273ecb2089398f5e244
pull/1897/head
Richard Fuchs 12 months ago
parent
commit
73d4195b3c
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      daemon/call.c

+ 6
- 0
daemon/call.c View File

@ -2651,6 +2651,12 @@ static void __update_init_medias(const medias_q *medias, enum ng_opmode opmode)
__update_init_subscribers(l->data, NULL, NULL, opmode);
}
/* called with call->master_lock held in W */
static void __medias_unconfirm(medias_q *medias, const char *reason) {
for (auto_iter(l, medias->head); l; l = l->next)
__media_unconfirm(l->data, reason);
}
__attribute__((nonnull(1, 3)))
static void __call_monologue_init_from_flags(struct call_monologue *ml, struct call_monologue *other_ml,
sdp_ng_flags *flags)


Loading…
Cancel
Save