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

Spatializer: limit damp range

Close #6143
parent 3a5086c8
......@@ -81,7 +81,7 @@ vlc_module_begin ()
add_float( "spatializer-width", 10., WIDTH_TEXT,WIDTH_LONGTEXT, true )
add_float( "spatializer-wet", 3., WET_TEXT,WET_LONGTEXT, true )
add_float( "spatializer-dry", 2., DRY_TEXT,DRY_LONGTEXT, true )
add_float( "spatializer-damp", 1., DAMP_TEXT,DAMP_LONGTEXT, true )
add_float_with_range( "spatializer-damp", 1., 0., 4., DAMP_TEXT,DAMP_LONGTEXT, true )
vlc_module_end ()
/*****************************************************************************
......
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