]> git.sesse.net Git - vlc/commitdiff
oss: attempt to fix the build
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Aug 2014 21:21:56 +0000 (00:21 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Aug 2014 21:21:56 +0000 (00:21 +0300)
modules/audio_output/oss.c

index ab42d9a35e87d86a0fa4d1c42a1c586190acdaba..40713d6190c691e9a9e0c5b7887d51033deab2ea 100644 (file)
@@ -51,7 +51,6 @@
 
 #if !defined (__FreeBSD__) && !defined (__FreeBSD_kernel__)
 # define USE_SOFTVOL
-# include "volume.h"
 #endif
 
 #define A52_FRAME_NB 1536
@@ -61,12 +60,20 @@ struct aout_sys_t
     int fd;
     audio_sample_format_t format;
     bool starting;
-
+#ifndef USE_SOFTVOL
     bool mute;
     uint8_t level;
+#else
+    bool soft_mute;
+    float soft_gain;
+#endif
     char *device;
 };
 
+#ifdef USE_SOFTVOL
+# include "volume.h"
+#endif
+
 static int Open (vlc_object_t *);
 static void Close (vlc_object_t *);
 
@@ -354,6 +361,7 @@ static void Stop (audio_output_t *aout)
     sys->fd = -1;
 }
 
+#ifndef USE_SOFTVOL
 static int VolumeSet (audio_output_t *aout, float vol)
 {
     aout_sys_t *sys = aout->sys;
@@ -395,6 +403,7 @@ static int MuteSet (audio_output_t *aout, bool mute)
     aout_MuteReport (aout, mute);
     return 0;
 }
+#endif
 
 static int DevicesEnum (audio_output_t *aout)
 {
@@ -467,9 +476,10 @@ static int Open (vlc_object_t *obj)
         return VLC_ENOMEM;
 
     sys->fd = -1;
-
+#ifndef USE_SOFTVOL
     sys->level = 100;
     sys->mute = false;
+#endif
     sys->device = var_InheritString (aout, "oss-audio-device");
 
     aout->sys = sys;