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

📄 intf.c

📁 video linux conference
💻 C
📖 第 1 页 / 共 2 页
字号:
        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 );        i_volume = (audio_volume_t)var_GetInteger( p_object->p_libvlc,                                                   "saved-volume" );        i_result = aout_VolumeSet( p_object, i_volume );        if ( pi_volume != NULL ) *pi_volume = i_volume;    }    return i_result;}/* * The next functions are not supposed to be called by the interface, but * are placeholders for software-only scaling. *//* Meant to be called by the output plug-in's Open(). */void aout_VolumeSoftInit( aout_instance_t * p_aout ){    int i_volume;    p_aout->output.pf_volume_infos = aout_VolumeSoftInfos;    p_aout->output.pf_volume_get = aout_VolumeSoftGet;    p_aout->output.pf_volume_set = aout_VolumeSoftSet;    i_volume = config_GetInt( p_aout, "volume" );    if ( i_volume < AOUT_VOLUME_MIN )    {        i_volume = AOUT_VOLUME_DEFAULT;    }    else if ( i_volume > AOUT_VOLUME_MAX )    {        i_volume = AOUT_VOLUME_MAX;    }    aout_VolumeSoftSet( p_aout, (audio_volume_t)i_volume );}/* Placeholder for pf_volume_infos(). */int aout_VolumeSoftInfos( aout_instance_t * p_aout, audio_volume_t * pi_soft ){    *pi_soft = 0;    return 0;}/* Placeholder for pf_volume_get(). */int aout_VolumeSoftGet( aout_instance_t * p_aout, audio_volume_t * pi_volume ){    *pi_volume = p_aout->output.i_volume;    return 0;}/* Placeholder for pf_volume_set(). */int aout_VolumeSoftSet( aout_instance_t * p_aout, audio_volume_t i_volume ){    aout_MixerMultiplierSet( p_aout, (float)i_volume / AOUT_VOLUME_DEFAULT );    p_aout->output.i_volume = i_volume;    return 0;}/* * The next functions are not supposed to be called by the interface, but * are placeholders for unsupported scaling. *//* Meant to be called by the output plug-in's Open(). */void aout_VolumeNoneInit( aout_instance_t * p_aout ){    p_aout->output.pf_volume_infos = aout_VolumeNoneInfos;    p_aout->output.pf_volume_get = aout_VolumeNoneGet;    p_aout->output.pf_volume_set = aout_VolumeNoneSet;}/* Placeholder for pf_volume_infos(). */int aout_VolumeNoneInfos( aout_instance_t * p_aout, audio_volume_t * pi_soft ){    return -1;}/* Placeholder for pf_volume_get(). */int aout_VolumeNoneGet( aout_instance_t * p_aout, audio_volume_t * pi_volume ){    return -1;}/* Placeholder for pf_volume_set(). */int aout_VolumeNoneSet( aout_instance_t * p_aout, audio_volume_t i_volume ){    return -1;}/* * Pipelines management *//***************************************************************************** * aout_Restart : re-open the output device and rebuild the input and output *                pipelines ***************************************************************************** * This function is used whenever the parameters of the output plug-in are * changed (eg. selecting S/PDIF or PCM). *****************************************************************************/int aout_Restart( aout_instance_t * p_aout ){    int i;    vlc_bool_t b_error = 0;    vlc_mutex_lock( &p_aout->mixer_lock );    if ( p_aout->i_nb_inputs == 0 )    {        vlc_mutex_unlock( &p_aout->mixer_lock );        msg_Err( p_aout, "no decoder thread" );        return -1;    }    /* Lock all inputs. */    for ( i = 0; i < p_aout->i_nb_inputs; i++ )    {        vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );        aout_InputDelete( p_aout, p_aout->pp_inputs[i] );    }    aout_MixerDelete( p_aout );    /* Re-open the output plug-in. */    aout_OutputDelete( p_aout );    if ( aout_OutputNew( p_aout, &p_aout->pp_inputs[0]->input ) == -1 )    {        /* Release all locks and report the error. */        for ( i = 0; i < p_aout->i_nb_inputs; i++ )        {            vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );        }        vlc_mutex_unlock( &p_aout->mixer_lock );        return -1;    }    if ( aout_MixerNew( p_aout ) == -1 )    {        aout_OutputDelete( p_aout );        for ( i = 0; i < p_aout->i_nb_inputs; i++ )        {            vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );        }        vlc_mutex_unlock( &p_aout->mixer_lock );        return -1;    }    /* Re-open all inputs. */    for ( i = 0; i < p_aout->i_nb_inputs; i++ )    {        aout_input_t * p_input = p_aout->pp_inputs[i];        b_error |= aout_InputNew( p_aout, p_input );        p_input->b_changed = 1;        vlc_mutex_unlock( &p_input->lock );    }    vlc_mutex_unlock( &p_aout->mixer_lock );    return b_error;}/***************************************************************************** * aout_FindAndRestart : find the audio output instance and restart ***************************************************************************** * This is used for callbacks of the configuration variables, and we believe * that when those are changed, it is a significant change which implies * rebuilding the audio-device and audio-channels variables. *****************************************************************************/int aout_FindAndRestart( vlc_object_t * p_this, const char *psz_name,                         vlc_value_t oldval, vlc_value_t val, void *p_data ){    aout_instance_t * p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT,                                                FIND_ANYWHERE );    if ( p_aout == NULL ) return VLC_SUCCESS;    if ( var_Type( p_aout, "audio-device" ) != 0 )    {        var_Destroy( p_aout, "audio-device" );    }    if ( var_Type( p_aout, "audio-channels" ) != 0 )    {        var_Destroy( p_aout, "audio-channels" );    }    aout_Restart( p_aout );    vlc_object_release( p_aout );    return VLC_SUCCESS;}/***************************************************************************** * aout_ChannelsRestart : change the audio device or channels and restart *****************************************************************************/int aout_ChannelsRestart( vlc_object_t * p_this, const char * psz_variable,                          vlc_value_t old_value, vlc_value_t new_value,                          void * unused ){    aout_instance_t * p_aout = (aout_instance_t *)p_this;    if ( !strcmp( psz_variable, "audio-device" ) )    {        /* This is supposed to be a significant change and supposes         * rebuilding the channel choices. */        if ( var_Type( p_aout, "audio-channels" ) >= 0 )        {            var_Destroy( p_aout, "audio-channels" );        }    }    aout_Restart( p_aout );    return 0;}

⌨️ 快捷键说明

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