Line | Count | Source |
1 | | /* SPDX-License-Identifier: GPL-3.0-or-later |
2 | | * Copyright © 2016-2018 The TokTok team. |
3 | | * Copyright © 2013-2015 Tox project. |
4 | | */ |
5 | | |
6 | | /** |
7 | | * This file contains the group chats code for the backwards compatibility. |
8 | | */ |
9 | | #include "toxav.h" |
10 | | |
11 | | #include "../toxcore/tox_struct.h" |
12 | | #include "groupav.h" |
13 | | |
14 | | int toxav_add_av_groupchat(Tox *tox, audio_data_cb *audio_callback, void *userdata) |
15 | 1 | { |
16 | 1 | return add_av_groupchat(tox->m->log, tox, tox->m->conferences_object, audio_callback, userdata); |
17 | 1 | } |
18 | | |
19 | | int toxav_join_av_groupchat(Tox *tox, uint32_t friendnumber, const uint8_t *data, uint16_t length, |
20 | | audio_data_cb *audio_callback, void *userdata) |
21 | 15 | { |
22 | 15 | return join_av_groupchat(tox->m->log, tox, tox->m->conferences_object, friendnumber, data, length, audio_callback, userdata); |
23 | 15 | } |
24 | | |
25 | | int toxav_group_send_audio(Tox *tox, uint32_t groupnumber, const int16_t *pcm, unsigned int samples, uint8_t channels, |
26 | | uint32_t sample_rate) |
27 | 848 | { |
28 | 848 | return group_send_audio(tox->m->conferences_object, groupnumber, pcm, samples, channels, sample_rate); |
29 | 848 | } |
30 | | |
31 | | int toxav_groupchat_enable_av(Tox *tox, uint32_t groupnumber, audio_data_cb *audio_callback, void *userdata) |
32 | 15 | { |
33 | 15 | return groupchat_enable_av(tox->m->log, tox, tox->m->conferences_object, groupnumber, audio_callback, userdata); |
34 | 15 | } |
35 | | |
36 | | int toxav_groupchat_disable_av(Tox *tox, uint32_t groupnumber) |
37 | 11 | { |
38 | 11 | return groupchat_disable_av(tox->m->conferences_object, groupnumber); |
39 | 11 | } |
40 | | |
41 | | /** @brief Return whether A/V is enabled in the groupchat. */ |
42 | | bool toxav_groupchat_av_enabled(Tox *tox, uint32_t groupnumber) |
43 | 11 | { |
44 | 11 | return groupchat_av_enabled(tox->m->conferences_object, groupnumber); |
45 | 11 | } |