2015-04-21 08:31:12 +08:00
|
|
|
/** audio.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2015 Tox project All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Tox.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AUDIO_H
|
|
|
|
#define AUDIO_H
|
|
|
|
|
2016-08-18 07:37:45 +08:00
|
|
|
#include <opus.h>
|
2015-04-21 08:31:12 +08:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#include "toxav.h"
|
|
|
|
|
2016-08-19 20:07:45 +08:00
|
|
|
#include "../toxcore/logger.h"
|
2015-04-21 08:31:12 +08:00
|
|
|
#include "../toxcore/util.h"
|
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
struct RTPMessage;
|
2015-04-22 08:09:37 +08:00
|
|
|
|
2015-04-21 08:31:12 +08:00
|
|
|
typedef struct ACSession_s {
|
2016-08-19 20:07:45 +08:00
|
|
|
Logger *log;
|
|
|
|
|
2015-04-21 08:31:12 +08:00
|
|
|
/* encoding */
|
|
|
|
OpusEncoder *encoder;
|
2015-10-11 05:54:23 +08:00
|
|
|
int32_t le_sample_rate; /* Last encoder sample rate */
|
|
|
|
int32_t le_channel_count; /* Last encoder channel count */
|
|
|
|
int32_t le_bit_rate; /* Last encoder bit rate */
|
|
|
|
|
2015-04-21 08:31:12 +08:00
|
|
|
/* decoding */
|
|
|
|
OpusDecoder *decoder;
|
2015-10-11 05:54:23 +08:00
|
|
|
int32_t lp_channel_count; /* Last packet channel count */
|
|
|
|
int32_t lp_sampling_rate; /* Last packet sample rate */
|
|
|
|
int32_t lp_frame_duration; /* Last packet frame duration */
|
|
|
|
int32_t ld_sample_rate; /* Last decoder sample rate */
|
|
|
|
int32_t ld_channel_count; /* Last decoder channel count */
|
|
|
|
uint64_t ldrts; /* Last decoder reconfiguration time stamp */
|
2015-04-21 08:31:12 +08:00
|
|
|
void *j_buf;
|
2015-10-11 05:54:23 +08:00
|
|
|
|
2015-04-21 08:31:12 +08:00
|
|
|
pthread_mutex_t queue_mutex[1];
|
2015-10-11 05:54:23 +08:00
|
|
|
|
|
|
|
ToxAV *av;
|
2015-04-29 07:01:25 +08:00
|
|
|
uint32_t friend_number;
|
2015-05-23 05:22:31 +08:00
|
|
|
PAIR(toxav_audio_receive_frame_cb *, void *) acb; /* Audio frame receive callback */
|
2015-04-21 08:31:12 +08:00
|
|
|
} ACSession;
|
|
|
|
|
2016-08-19 20:07:45 +08:00
|
|
|
ACSession *ac_new(Logger *log, ToxAV *av, uint32_t friend_number, toxav_audio_receive_frame_cb *cb, void *cb_data);
|
2015-10-11 05:54:23 +08:00
|
|
|
void ac_kill(ACSession *ac);
|
|
|
|
void ac_iterate(ACSession *ac);
|
|
|
|
int ac_queue_message(void *acp, struct RTPMessage *msg);
|
|
|
|
int ac_reconfigure_encoder(ACSession *ac, int32_t bit_rate, int32_t sampling_rate, uint8_t channels);
|
2015-04-29 07:01:25 +08:00
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
#endif /* AUDIO_H */
|