1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 14:27:45 +02:00

disable group audio callback until it works properly

This commit is contained in:
Jfreegman 2014-11-26 17:39:02 -05:00
parent 09bbec79cf
commit 78587ad20b
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63
2 changed files with 6 additions and 5 deletions

View File

@ -215,7 +215,7 @@ DeviceError open_device(DeviceType type, int32_t selection, uint32_t* device_idx
const uint32_t frame_size = (sample_rate * frame_duration / 1000);
uint32_t i;
for (i = 0; i < MAX_DEVICES && running[type][i] != NULL; i ++);
for (i = 0; i < MAX_DEVICES && running[type][i] != NULL; ++i);
if (i == MAX_DEVICES) { unlock; return de_AllDevicesBusy; }
else *device_idx = i;

View File

@ -399,8 +399,7 @@ void *group_add_wait(void *data)
pthread_exit(NULL);
}
static void groupchat_onGroupNamelistChange(ToxWindow *self, Tox *m, int groupnum, int peernum,
uint8_t change)
static void groupchat_onGroupNamelistChange(ToxWindow *self, Tox *m, int groupnum, int peernum, uint8_t change)
{
if (self->num != groupnum)
return;
@ -716,6 +715,8 @@ static void groupchat_onInit(ToxWindow *self, Tox *m)
void groupchat_onWriteDevice(ToxWindow *self, Tox *m, int groupnum, int peernum, const int16_t *pcm,
unsigned int samples, uint8_t channels, unsigned int sample_rate)
{
return; /* TODO: remove this */
if (groupnum != self->num)
return;