Commit e088c92b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - SimplePrefs - Audio: Small fixes and normalization for volume.

parent ec37e0e7
......@@ -551,8 +551,7 @@ void IntegerRangeConfigControl::finish()
IntegerRangeSliderConfigControl::IntegerRangeSliderConfigControl(
vlc_object_t *_p_this,
module_config_t *_p_item,
QLabel *_label, QSlider *_slider,
bool *_bool ) :
QLabel *_label, QSlider *_slider ):
VIntConfigControl( _p_this, _p_item )
{
slider = _slider;
......
......@@ -130,7 +130,7 @@ class IntegerRangeSliderConfigControl : public VIntConfigControl
{
public:
IntegerRangeSliderConfigControl( vlc_object_t *, module_config_t *,
QLabel *, QSlider *, bool * );
QLabel *, QSlider * );
virtual ~IntegerRangeSliderConfigControl() {};
virtual int getValue();
protected:
......
......@@ -93,6 +93,17 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
controls.append( control ); \
}
#define CONFIG_GENERIC_NO_BOOL( option, type, label, qcontrol ) \
p_config = config_FindConfig( VLC_OBJECT(p_intf), option ); \
if( p_config ) \
{ \
control = new type ## ConfigControl( VLC_OBJECT(p_intf), \
p_config, label, ui.qcontrol ); \
controls.append( control ); \
}
#define START_SPREFS_CAT( name , label ) \
case SPrefs ## name: \
{ \
......@@ -162,8 +173,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
#endif
CONFIG_GENERIC( "audio", Bool, NULL, enableAudio );
CONFIG_GENERIC( "volume" , IntegerRangeSlider, NULL, defaultVolume );
CONFIG_GENERIC_NO_BOOL( "volume" , IntegerRangeSlider, NULL, defaultVolume );
CONFIG_GENERIC( "audio-language" , StringList , NULL,
preferredAudioLanguage );
CONFIG_GENERIC( "spdif" , Bool , NULL, spdifBox );
......@@ -180,13 +190,10 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
#endif
CONFIG_GENERIC( "audiofile-file" , String , NULL, FileName ); //Fixme File
CONFIG_GENERIC( "headphone-dolby" , Bool , NULL, headphoneEffect );
#if 0 // Not found for normalizer effect
CONFIG_GENERIC( "" , , NULL, );
#endif
// CONFIG_GENERIC( "" , Bool, NULL, ); activation of normalizer
CONFIG_GENERIC_NO_BOOL( "norm-max-level" , Float , NULL, volNormalizer );
CONFIG_GENERIC( "audio-visual" , Module , NULL, visualisation);
END_SPREFS_CAT;
START_SPREFS_CAT( InputAndCodecs, "Input & Codecs settings" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment