PJSIP呼叫会议不传输音频

时间:2020-11-09 06:31:36

标签: android voip pjsip voip-android

我已经使用PJSIP库实现了电话会议。但是当我传送双方声音时,听不到。

以下是我的代码段:

private static int problem1(int[] arr, int k) {
    return Arrays.stream(arr).boxed()
        .collect(groupingBy(identity(), counting()))
        .entrySet().stream()
        .filter(entry -> entry.getValue() >= k)
        .map(Map.Entry::getKey)
        .reduce(MAX_VALUE, Math::min);
}

0 个答案:

没有答案