⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 intf.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * intf.c : audio output API towards the interface modules ***************************************************************************** * Copyright (C) 2002-2007 the VideoLAN team * $Id$ * * Authors: Christophe Massiot <massiot@via.ecp.fr> * * 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. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <stdio.h>#include <stdlib.h>                            /* calloc(), malloc(), free() */#include <string.h>#include <vlc_aout.h>#include "aout_internal.h"/* * Volume management * * The hardware volume cannot be set if the output module gets deleted, so * we must take the mixer lock. The software volume cannot be set while the * mixer is running, so we need the mixer lock (too). * * Here is a schematic of the i_volume range : * * |------------------------------+---------------------------------------| * 0                           pi_soft                                   1024 * * Between 0 and pi_soft, the volume is done in hardware by the output * module. Above, the output module will change p_aout->mixer.i_multiplier * (done in software). This scaling may result * in cropping errors and * should be avoided as much as possible. * * It is legal to have *pi_soft == 0, and do everything in software. * It is also legal to have *pi_soft == 1024, and completely avoid * software scaling. However, some streams (esp. A/52) are encoded with * a very low volume and users may complain. *//***************************************************************************** * aout_VolumeGet : get the volume of the output device *****************************************************************************/int __aout_VolumeGet( vlc_object_t * p_object, audio_volume_t * pi_volume ){    int i_result = 0;    aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,                                                FIND_ANYWHERE );    if ( pi_volume == NULL ) return -1;    if ( p_aout == NULL )    {        *pi_volume = (audio_volume_t)config_GetInt( p_object, "volume" );        return 0;    }    aout_lock_mixer( p_aout );    if ( !p_aout->mixer.b_error )    {        i_result = p_aout->output.pf_volume_get( p_aout, pi_volume );    }    else    {        *pi_volume = (audio_volume_t)config_GetInt( p_object, "volume" );    }    aout_unlock_mixer( p_aout );    vlc_object_release( p_aout );    return i_result;}/***************************************************************************** * aout_VolumeSet : set the volume of the output device *****************************************************************************/int __aout_VolumeSet( vlc_object_t * p_object, audio_volume_t i_volume ){    vlc_value_t val;    aout_instance_t *p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT, FIND_ANYWHERE );    int i_result = 0;    config_PutInt( p_object, "volume", i_volume );    val.b_bool = true;    var_Set( p_object->p_libvlc, "volume-change", val );    if ( p_aout == NULL ) return 0;    aout_lock_mixer( p_aout );    if ( !p_aout->mixer.b_error )    {        i_result = p_aout->output.pf_volume_set( p_aout, i_volume );    }    aout_unlock_mixer( p_aout );    var_Set( p_aout, "intf-change", val );    vlc_object_release( p_aout );    return i_result;}/***************************************************************************** * aout_VolumeInfos : get the boundary pi_soft *****************************************************************************/int __aout_VolumeInfos( vlc_object_t * p_object, audio_volume_t * pi_soft ){    aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,                                                FIND_ANYWHERE );    int i_result;    if ( p_aout == NULL ) return 0;    aout_lock_mixer( p_aout );    if ( p_aout->mixer.b_error )    {        /* The output module is destroyed. */        i_result = -1;    }    else    {        i_result = p_aout->output.pf_volume_infos( p_aout, pi_soft );    }    aout_unlock_mixer( p_aout );    vlc_object_release( p_aout );    return i_result;}/***************************************************************************** * aout_VolumeUp : raise the output volume ***************************************************************************** * If pi_volume != NULL, *pi_volume will contain the volume at the end of the * function. *****************************************************************************/int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,                   audio_volume_t * pi_volume ){    vlc_value_t val;    aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,                                                FIND_ANYWHERE );    int i_result = 0, i_volume = 0, i_volume_step = 0;    i_volume_step = config_GetInt( p_object->p_libvlc, "volume-step" );    i_volume = config_GetInt( p_object, "volume" );    i_volume += i_volume_step * i_nb_steps;    if ( i_volume > AOUT_VOLUME_MAX )    {        i_volume = AOUT_VOLUME_MAX;    }    config_PutInt( p_object, "volume", i_volume );    var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );    var_SetInteger( p_object->p_libvlc, "saved-volume" ,                    (audio_volume_t) i_volume );    if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume;    val.b_bool = true;    var_Set( p_object->p_libvlc, "volume-change", val );    if ( p_aout == NULL ) return 0;    aout_lock_mixer( p_aout );    if ( !p_aout->mixer.b_error )    {        i_result = p_aout->output.pf_volume_set( p_aout,                                                (audio_volume_t) i_volume );    }    aout_unlock_mixer( p_aout );    vlc_object_release( p_aout );    return i_result;}/***************************************************************************** * aout_VolumeDown : lower the output volume ***************************************************************************** * If pi_volume != NULL, *pi_volume will contain the volume at the end of the * function. *****************************************************************************/int __aout_VolumeDown( vlc_object_t * p_object, int i_nb_steps,                     audio_volume_t * pi_volume ){    vlc_value_t val;    aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,                                                FIND_ANYWHERE );    int i_result = 0, i_volume = 0, i_volume_step = 0;    i_volume_step = config_GetInt( p_object->p_libvlc, "volume-step" );    i_volume = config_GetInt( p_object, "volume" );    i_volume -= i_volume_step * i_nb_steps;    if ( i_volume < AOUT_VOLUME_MIN )    {        i_volume = AOUT_VOLUME_MIN;    }    config_PutInt( p_object, "volume", i_volume );    var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );    var_SetInteger( p_object->p_libvlc, "saved-volume", (audio_volume_t) i_volume );    if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume;    val.b_bool = true;    var_Set( p_object->p_libvlc, "volume-change", val );    if ( p_aout == NULL ) return 0;    aout_lock_mixer( p_aout );    if ( !p_aout->mixer.b_error )    {        i_result = p_aout->output.pf_volume_set( p_aout, (audio_volume_t) i_volume );    }    aout_unlock_mixer( p_aout );    vlc_object_release( p_aout );    return i_result;}/***************************************************************************** * aout_VolumeMute : Mute/un-mute the output volume ***************************************************************************** * If pi_volume != NULL, *pi_volume will contain the volume at the end of the * function (muted => 0). *****************************************************************************/int __aout_VolumeMute( vlc_object_t * p_object, audio_volume_t * pi_volume ){    int i_result;    audio_volume_t i_volume;    i_volume = (audio_volume_t)config_GetInt( p_object, "volume" );    if ( i_volume != 0 )    {        /* Mute */        i_result = aout_VolumeSet( p_object, AOUT_VOLUME_MIN );        var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );        var_SetInteger( p_object->p_libvlc, "saved-volume", (int)i_volume );        if ( pi_volume != NULL ) *pi_volume = AOUT_VOLUME_MIN;    }    else    {        /* Un-mute */        var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -