Commit f0997cb2 authored by Gildas Bazin's avatar Gildas Bazin

* modules/audio_filter/resampler/linear.c: lowered the priority of the linear
   resampler so the ugly resampler is once again the default. The quality of
   the ugly resampler is currently better than the linear one because of a
   design defect.
parent c4453425
......@@ -2,7 +2,7 @@
* linear.c : linear interpolation resampler
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: linear.c,v 1.8 2003/02/16 01:29:40 massiot Exp $
* $Id: linear.c,v 1.9 2003/02/17 09:47:16 gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Sigmund Augdal <sigmunau@idi.ntnu.no>
......@@ -57,7 +57,7 @@ struct aout_filter_sys_t
*****************************************************************************/
vlc_module_begin();
set_description( _("audio filter for linear interpolation resampling") );
set_capability( "audio filter", 10 );
set_capability( "audio filter", 2 );
set_callbacks( Create, Close );
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