diff libao2/pl_extrastereo.c @ 6795:776b686069af

- add some control (ao_oss, pl_extrastereo) - cosmetic
author pontscho
date Thu, 25 Jul 2002 20:28:47 +0000
parents 3022570ad7d4
children 66f3204117d6
line wrap: on
line diff
--- a/libao2/pl_extrastereo.c	Thu Jul 25 20:26:38 2002 +0000
+++ b/libao2/pl_extrastereo.c	Thu Jul 25 20:28:47 2002 +0000
@@ -33,8 +33,8 @@
 // local data
 static struct {
   float    mul;         // intensity
-  int      inuse;     	// This plugin is in use TRUE, FALSE
-  int      format;	// sample format
+  int      inuse;      // This plugin is in use TRUE, FALSE
+  int      format;     // sample format
 } pl_extrastereo = {2.5, 0, 0};
 
 
@@ -43,6 +43,12 @@
   switch(cmd){
   case AOCONTROL_PLUGIN_SET_LEN:
     return CONTROL_OK;
+  case AOCONTROL_PLUGIN_ES_SET:
+    pl_extrastereo.mul=*((float*)arg);
+    return CONTROL_OK;
+  case AOCONTROL_PLUGIN_ES_GET:
+    *((float*)arg)=pl_extrastereo.mul;
+    return CONTROL_OK;
   }
   return CONTROL_UNKNOWN;
 }