[vlc-commits] Luahttp can access and modify equalizer settings

Akash Mehrotra git at videolan.org
Thu Jun 30 01:22:47 CEST 2011


vlc | branch: master | Akash Mehrotra <mehrotra.akash at gmail.com> | Wed Jun 29 22:49:08 2011 +0530| [47c1409fe5c6334564cd87fdf692eb08a5f9fddb] | committer: Jean-Baptiste Kempf

Luahttp can access and modify equalizer settings

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=47c1409fe5c6334564cd87fdf692eb08a5f9fddb
---

 modules/lua/libs/equalizer.c          |  142 ++++++++++++++++++++++++++++++++-
 share/lua/http/requests/README.txt    |    6 ++
 share/lua/http/requests/equalizer.xml |   20 +++--
 3 files changed, 158 insertions(+), 10 deletions(-)

diff --git a/modules/lua/libs/equalizer.c b/modules/lua/libs/equalizer.c
index f414974..2535897 100644
--- a/modules/lua/libs/equalizer.c
+++ b/modules/lua/libs/equalizer.c
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * equalizer.c
  *****************************************************************************
- * Copyright (C) 2011 the VideoLAN team
+ * Copyright (C) 2011 VideoLAN and VLC authors
  * $Id$
  *
  * Authors: Akash Mehrotra < mehrotra <dot> akash <at> gmail <dot> com >
@@ -35,6 +35,7 @@
 #include <vlc_common.h>
 #include <vlc_aout.h>
 #include <vlc_input.h>
+#include <vlc_charset.h>
 
 #include <lua.h>        /* Low level lua C API */
 #include <lauxlib.h>    /* Higher level C API */
@@ -42,6 +43,18 @@
 #include "input.h"
 #include "../libs.h"
 
+#if !defined WIN32
+# include <locale.h>
+#else
+# include <windows.h>
+#endif
+
+#ifdef __APPLE__
+#   include <string.h>
+#   include <xlocale.h>
+#endif
+
+
 /*****************************************************************************
 * Get the preamp level
 *****************************************************************************/
@@ -51,11 +64,16 @@ static int vlclua_preamp_get( lua_State *L )
     if( p_input )
     {
         aout_instance_t *p_aout = input_GetAout( p_input );
+        vlc_object_release( p_input );
+        char *psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
+        if ( strstr ( psz_af, "equalizer" ) == NULL )
+        {
+            vlc_object_release( p_aout );
+            return 0;
+        }
         float preamp = var_GetFloat( p_aout, "equalizer-preamp");
         lua_pushnumber( L, preamp );
-
         vlc_object_release( p_aout );
-        vlc_object_release( p_input );
         return 1;
     }
     return 0;
@@ -70,20 +88,136 @@ static int vlclua_preamp_set( lua_State *L )
     if( p_input )
     {
         aout_instance_t *p_aout = input_GetAout( p_input );
+        vlc_object_release( p_input );
+        if ( !p_aout )
+        {
+            return 0;
+        }
+        char *psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
+        if ( strstr ( psz_af, "equalizer" ) == NULL )
+        {
+            vlc_object_release( p_aout );
+            return 0;
+        }
         float preamp = luaL_checknumber( L, 1 );
         var_SetFloat( p_aout, "equalizer-preamp",preamp);
         lua_pushnumber( L, preamp );
+        vlc_object_release( p_aout );
+        return 1;
+    }
+    return 0;
+}
+
+/*****************************************************************************
+Bands:
+Band 0:  60 Hz
+Band 1: 170 Hz
+Band 2: 310 Hz
+Band 3: 600 Hz
+Band 4:  1 kHz
+Band 5:  3 kHz
+Band 6:  6 kHz
+Band 7: 12 kHz
+Band 8: 14 kHz
+Band 9: 16 kHz
+*****************************************************************************/
+/*****************************************************************************
+* Get the equalizer level for the specified band
+*****************************************************************************/
+static int vlclua_equalizer_get( lua_State *L )
+{
+    input_thread_t *p_input = vlclua_get_input_internal( L );
+    if( p_input )
+    {
+        float level = 0 ;
+        aout_instance_t *p_aout = input_GetAout( p_input );
+        vlc_object_release( p_input );
+        if ( !p_aout )
+        {
+            return 0;
+        }
+        char *psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
+        if ( strstr ( psz_af, "equalizer" ) == NULL )
+        {
+            vlc_object_release( p_aout );
+            return 0;
+        }
 
+        int bandid = luaL_checknumber( L, 1 );
+        char *bands = var_GetNonEmptyString( p_aout, "equalizer-bands" );
+        locale_t loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
+        locale_t oldloc = uselocale (loc);
+        while( bandid >= 0 )
+        {
+            level = strtof( bands, &bands);
+            bandid--;
+        }
+        if (loc != (locale_t)0)
+        {
+            uselocale (oldloc);
+            freelocale (loc);
+        }
+        if ( bandid != -1 )
+        {
+            vlc_object_release( p_aout );
+            return 0;
+         }
+        lua_pushnumber( L, level );
         vlc_object_release( p_aout );
+        return 1;
+    }
+    return 0;
+}
+/*****************************************************************************
+* Set the equalizer level for the specified band
+*****************************************************************************/
+static int vlclua_equalizer_set( lua_State *L )
+{
+    input_thread_t *p_input = vlclua_get_input_internal( L );
+    if( p_input )
+    {
+        int i_pos = 0 , j = 0;
+        aout_instance_t *p_aout = input_GetAout( p_input );
         vlc_object_release( p_input );
+        if ( !p_aout )
+        {
+            return 0;
+        }
+        char *psz_af = var_GetNonEmptyString( p_aout, "audio-filter" );
+        if ( strstr ( psz_af, "equalizer" ) == NULL )
+        {
+            vlc_object_release( p_aout );
+            return 0;
+        }
+        int bandid = luaL_checknumber( L, 1 );
+        float level = luaL_checknumber( L, 2 );
+        char *bands = var_GetString( p_aout, "equalizer-bands" );
+        char newstr[7];
+        while( j != bandid )
+        {
+            i_pos++;
+            if( bands[i_pos] == '.' )
+            {
+                i_pos++;
+                j++;
+            }
+        }
+        if( bandid != 0 )
+            i_pos++;
+        snprintf( newstr, sizeof ( newstr ) , "%6.1f", level);
+        for( int i = 0 ; i < 6 ; i++ )
+            bands[i_pos+i] = newstr[i];
+        var_SetString( p_aout, "equalizer-bands",bands );
+        vlc_object_release( p_aout );
         return 1;
     }
     return 0;
 }
-
 static const luaL_Reg vlclua_equalizer_reg[] = {
     { "preampget", vlclua_preamp_get },
     { "preampset", vlclua_preamp_set },
+    { "equalizerget", vlclua_equalizer_get },
+    { "equalizerset", vlclua_equalizer_set },
     { NULL, NULL }
 };
 
diff --git a/share/lua/http/requests/README.txt b/share/lua/http/requests/README.txt
index a327ff2..a367adc 100644
--- a/share/lua/http/requests/README.txt
+++ b/share/lua/http/requests/README.txt
@@ -129,3 +129,9 @@ equalizer.xml:
 =============
 >command=preamp&val=<val in dB> 
  sets the preamp value, must be >=-20 and <=20
+
+>command=equalizer&band=<band>&val=<gain in dB, must be >=-20 and <=20)
+
+<Displays the equalizer band gains.
+Band 0: 60 Hz, 1: 170 Hz, 2: 310 Hz, 3: 600 Hz, 4: 1 kHz, 
+5: 3 kHz, 6: 6 kHz, 7: 12 kHz , 8: 14 kHz , 9: 16 kHz
diff --git a/share/lua/http/requests/equalizer.xml b/share/lua/http/requests/equalizer.xml
index 7476487..9a812c7 100644
--- a/share/lua/http/requests/equalizer.xml
+++ b/share/lua/http/requests/equalizer.xml
@@ -6,19 +6,19 @@ vim:syntax=lua
 < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
 <  Copyright (C) 2011 the VideoLAN team
 <  $Id$
-< 
+<
 <  Authors: Akash Mehrotra < mehrotra <dot> akash <at> gmail <dot> com >
-< 
+<
 <  This program is free software; you can redistribute it and/or modify
 <  it under the terms of the GNU General Public License as published by
 <  the Free Software Foundation; either version 2 of the License, or
 <  (at your option) any later version.
-< 
+<
 <  This program is distributed in the hope that it will be useful,
 <  but WITHOUT ANY WARRANTY; without even the implied warranty of
 <  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 <  GNU General Public License for more details.
-< 
+<
 <  You should have received a copy of the GNU General Public License
 <  along with this program; if not, write to the Free Software
 <  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
@@ -28,11 +28,19 @@ vim:syntax=lua
 
 local command = _GET['command']
 local val = _GET['val']
+local band = _GET['band']
 function round(what, precision)
-   return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision)
+if what then return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision) else return "" end
 end
-if command == "preamp" then vlc.equalizer.preampset(val) end
+if command == "preamp" then vlc.equalizer.preampset(val)
+elseif command == "equalizer" then vlc.equalizer.equalizerset(band,val)
+end
+freq = { 60 , 170 , 310 , 600 , 1000 , 3000 , 6000 , 12000 , 14000 , 16000 }
 ?>
 <root>
   <preamp><?vlc print(round(vlc.equalizer.preampget(),2)) ?></preamp>
+  <equalizer>
+    <?vlc for i = 0,9
+    do print("<band id='"..i.."' freqency = '"..freq[i+1].."'>"..round(vlc.equalizer.equalizerget(i),1).."</band>") end ?>
+  </equalizer>
 </root>



More information about the vlc-commits mailing list