From 60ac100f5b88bb3c518bc712e8be7dac1355ae17 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Sat, 1 Nov 2014 11:41:21 +0100 Subject: Don't assume mono-audio in defaults --- ratox.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ratox.c b/ratox.c index 55ab40c..3d92523 100644 --- a/ratox.c +++ b/ratox.c @@ -1220,7 +1220,8 @@ toxinit(void) eprintf("Failed to initialize toxav\n"); toxavconfig = av_DefaultSettings; - framesize = (toxavconfig.audio_sample_rate * toxavconfig.audio_frame_duration / 1000); + framesize = (toxavconfig.audio_sample_rate * toxavconfig.audio_frame_duration * + toxavconfig.audio_channels) / 1000; tox_callback_connection_status(tox, cbconnstatus, NULL); tox_callback_friend_message(tox, cbfriendmessage, NULL); -- cgit v1.2.3