mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 08:13:02 +01:00
Codec settings and MORE!
This commit is contained in:
parent
cb9622136c
commit
8ce1a3d3e9
@ -24,6 +24,8 @@
|
|||||||
#define MAX_DEVICES 32
|
#define MAX_DEVICES 32
|
||||||
#define _cbend pthread_exit(NULL)
|
#define _cbend pthread_exit(NULL)
|
||||||
|
|
||||||
|
#define AUDIO_FRAME_SIZE (av_DefaultSettings.audio_sample_rate * av_DefaultSettings.audio_frame_duration / 1000)
|
||||||
|
|
||||||
typedef struct _DeviceIx {
|
typedef struct _DeviceIx {
|
||||||
|
|
||||||
ALCdevice* dhndl; /* Handle of device selected/opened */
|
ALCdevice* dhndl; /* Handle of device selected/opened */
|
||||||
@ -86,7 +88,10 @@ int device_open (ToxWindow *self, _Devices type)
|
|||||||
|
|
||||||
if ( type == input ) {
|
if ( type == input ) {
|
||||||
ASettins.device[type].dhndl = alcCaptureOpenDevice(
|
ASettins.device[type].dhndl = alcCaptureOpenDevice(
|
||||||
ASettins.device[type].devices[ASettins.device[type].index], AUDIO_SAMPLE_RATE, AL_FORMAT_MONO16, AUDIO_FRAME_SIZE * 4);
|
ASettins.device[type].devices[ASettins.device[type].index],
|
||||||
|
av_DefaultSettings.audio_sample_rate,
|
||||||
|
AL_FORMAT_MONO16,
|
||||||
|
AUDIO_FRAME_SIZE * 4);
|
||||||
|
|
||||||
if (alcGetError(ASettins.device[type].dhndl) != AL_NO_ERROR) {
|
if (alcGetError(ASettins.device[type].dhndl) != AL_NO_ERROR) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user