2017-01-14 23:46:31 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2016-2017 The TokTok team.
|
|
|
|
* Copyright © 2014 Tox project.
|
2014-11-08 10:30:26 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* This file is part of Tox, the free peer to peer instant messenger.
|
2014-11-08 10:30:26 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* Tox is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-11-08 10:30:26 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* Tox is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-11-08 10:30:26 +08:00
|
|
|
*
|
2017-01-14 23:46:31 +08:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
2014-11-08 10:30:26 +08:00
|
|
|
*/
|
2018-07-17 09:18:04 +08:00
|
|
|
#ifndef C_TOXCORE_TOXAV_GROUPAV_H
|
|
|
|
#define C_TOXCORE_TOXAV_GROUPAV_H
|
|
|
|
|
2016-09-11 22:47:51 +08:00
|
|
|
#include "../toxcore/group.h"
|
2018-08-11 22:11:55 +08:00
|
|
|
#include "../toxcore/tox.h"
|
2016-09-11 22:47:51 +08:00
|
|
|
|
2014-11-08 10:30:26 +08:00
|
|
|
/* Audio encoding/decoding */
|
2016-08-18 07:37:45 +08:00
|
|
|
#include <opus.h>
|
2014-11-08 10:30:26 +08:00
|
|
|
|
2014-11-09 10:31:46 +08:00
|
|
|
#define GROUP_AUDIO_PACKET_ID 192
|
|
|
|
|
2018-08-11 22:11:55 +08:00
|
|
|
// TODO(iphydf): Use this better typed one instead of the void-pointer one below.
|
|
|
|
// typedef void audio_data_cb(Tox *tox, uint32_t groupnumber, uint32_t peernumber, const int16_t *pcm,
|
|
|
|
// uint32_t samples, uint8_t channels, uint32_t sample_rate, void *userdata);
|
2018-08-13 05:48:48 +08:00
|
|
|
typedef void audio_data_cb(void *tox, uint32_t groupnumber, uint32_t peernumber, const int16_t *pcm,
|
|
|
|
uint32_t samples, uint8_t channels, uint32_t sample_rate, void *userdata);
|
|
|
|
|
2014-11-08 10:30:26 +08:00
|
|
|
/* Create a new toxav group.
|
|
|
|
*
|
|
|
|
* return group number on success.
|
|
|
|
* return -1 on failure.
|
|
|
|
*/
|
2018-08-11 22:11:55 +08:00
|
|
|
int add_av_groupchat(const Logger *log, Tox *tox, Group_Chats *g_c, audio_data_cb *audio_callback, void *userdata);
|
2014-11-11 06:59:14 +08:00
|
|
|
|
|
|
|
/* Join a AV group (you need to have been invited first.)
|
|
|
|
*
|
|
|
|
* returns group number on success
|
|
|
|
* returns -1 on failure.
|
|
|
|
*/
|
2018-08-11 22:11:55 +08:00
|
|
|
int join_av_groupchat(const Logger *log, Tox *tox, Group_Chats *g_c, uint32_t friendnumber, const uint8_t *data,
|
|
|
|
uint16_t length,
|
2018-08-13 05:48:48 +08:00
|
|
|
audio_data_cb *audio_callback, void *userdata);
|
2014-11-11 06:59:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Send audio to the group chat.
|
|
|
|
*
|
|
|
|
* return 0 on success.
|
|
|
|
* return -1 on failure.
|
|
|
|
*/
|
2018-02-20 05:58:03 +08:00
|
|
|
int group_send_audio(Group_Chats *g_c, uint32_t groupnumber, const int16_t *pcm, unsigned int samples, uint8_t channels,
|
|
|
|
uint32_t sample_rate);
|
2014-11-08 10:30:26 +08:00
|
|
|
|
2018-07-17 09:18:04 +08:00
|
|
|
|
|
|
|
#endif // C_TOXCORE_TOXAV_GROUPAV_H
|