aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/oss.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Alc/oss.c b/Alc/oss.c
index 26be11d7..77fe4192 100644
--- a/Alc/oss.c
+++ b/Alc/oss.c
@@ -55,7 +55,6 @@ typedef struct {
ALubyte *mix_data;
int data_size;
- int silence;
RingBuffer *ring;
int doCapture;
@@ -181,11 +180,9 @@ static ALCboolean oss_open_playback(ALCdevice *device, const ALCchar *deviceName
switch(aluBytesFromFormat(device->Format))
{
case 1:
- data->silence = 0x80;
ossFormat = AFMT_U8;
break;
case 2:
- data->silence = 0;
ossFormat = AFMT_S16_NE;
break;
default:
@@ -311,11 +308,9 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName,
switch(aluBytesFromFormat(format))
{
case 1:
- data->silence = 0x80;
ossFormat = AFMT_U8;
break;
case 2:
- data->silence = 0;
ossFormat = AFMT_S16_NE;
break;
default: