volume.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * volume.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 926046a5acd6a769ff4e2b2e1848ec3dd7cc2086 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod org>
  8.  *          Pierre d'Herbemont <pdherbemont # videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifndef  _GNU_SOURCE
  28. #   define  _GNU_SOURCE
  29. #endif
  30. #ifdef HAVE_CONFIG_H
  31. # include "config.h"
  32. #endif
  33. #include <vlc_common.h>
  34. #include <vlc_plugin.h>
  35. #include <vlc_meta.h>
  36. #include <vlc_charset.h>
  37. #include <vlc_aout.h>
  38. #include <lua.h>        /* Low level lua C API */
  39. #include <lauxlib.h>    /* Higher level C API */
  40. #include <lualib.h>     /* Lua libs */
  41. #include "../vlc.h"
  42. #include "../libs.h"
  43. #include "playlist.h"
  44. /*****************************************************************************
  45.  * Volume related
  46.  *****************************************************************************/
  47. static int vlclua_volume_set( lua_State *L )
  48. {
  49.     playlist_t *p_this = vlclua_get_playlist_internal( L );
  50.     int i_volume = luaL_checkint( L, 1 );
  51.     /* Do we need to check that i_volume is in the AOUT_VOLUME_MIN->MAX range?*/
  52.     int i_ret = aout_VolumeSet( p_this, i_volume );
  53.     vlclua_release_playlist_internal( p_this );
  54.     return vlclua_push_ret( L, i_ret );
  55. }
  56. static int vlclua_volume_get( lua_State *L )
  57. {
  58.     audio_volume_t i_volume;
  59.     playlist_t *p_this = vlclua_get_playlist_internal( L );
  60.     if( aout_VolumeGet( p_this, &i_volume ) == VLC_SUCCESS )
  61.         lua_pushnumber( L, i_volume );
  62.     else
  63.         lua_pushnil( L );
  64.     vlclua_release_playlist_internal( p_this );
  65.     return 1;
  66. }
  67. static int vlclua_volume_up( lua_State *L )
  68. {
  69.     audio_volume_t i_volume;
  70.     playlist_t *p_this = vlclua_get_playlist_internal( L );
  71.     aout_VolumeUp( p_this, luaL_optint( L, 1, 1 ), &i_volume );
  72.     lua_pushnumber( L, i_volume );
  73.     vlclua_release_playlist_internal( p_this );
  74.     return 1;
  75. }
  76. static int vlclua_volume_down( lua_State *L )
  77. {
  78.     audio_volume_t i_volume;
  79.     playlist_t *p_this = vlclua_get_playlist_internal( L );
  80.     aout_VolumeDown( p_this, luaL_optint( L, 1, 1 ), &i_volume );
  81.     lua_pushnumber( L, i_volume );
  82.     vlclua_release_playlist_internal( p_this );
  83.     return 1;
  84. }
  85. /*****************************************************************************
  86.  *
  87.  *****************************************************************************/
  88. static const luaL_Reg vlclua_volume_reg[] = {
  89.     { "get", vlclua_volume_get },
  90.     { "set", vlclua_volume_set },
  91.     { "up", vlclua_volume_up },
  92.     { "down", vlclua_volume_down },
  93.     { NULL, NULL }
  94. };
  95. void luaopen_volume( lua_State *L )
  96. {
  97.     lua_newtable( L );
  98.     luaL_register( L, NULL, vlclua_volume_reg );
  99.     lua_setfield( L, -2, "volume" );
  100. }