1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:27:45 +02:00
toxic/src/audio_call.h

49 lines
1.3 KiB
C
Raw Normal View History

/* audio_call.h
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic 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.
*
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
*
2014-02-23 00:00:34 +01:00
*/
#ifndef _audio_h
#define _audio_h
2014-03-07 03:14:04 +01:00
#include <tox/toxav.h>
2014-06-21 01:58:00 +02:00
#include "device.h"
2014-06-24 00:54:23 +02:00
#define VAD_THRESHOLD_DEFAULT 40.0
2014-04-08 23:20:21 +02:00
typedef enum _AudioError {
2014-06-21 01:58:00 +02:00
ae_None = 0,
ae_StartingCaptureDevice = 1 << 0,
ae_StartingOutputDevice = 1 << 1,
ae_StartingCoreAudio = 1 << 2
2014-03-07 03:14:04 +01:00
} AudioError;
/* You will have to pass pointer to first member of 'windows'
* declared in windows.c otherwise undefined behaviour will
2014-03-07 03:14:04 +01:00
*/
ToxAv *init_audio(ToxWindow *self, Tox *tox);
2014-03-07 03:14:04 +01:00
void terminate_audio();
int start_transmission(ToxWindow *self);
2014-06-21 01:58:00 +02:00
int stop_transmission(int call_index);
#endif /* _audio_h */