1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

* 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.
This commit is contained in:
Gildas Bazin 2003-02-17 09:47:16 +00:00
parent c4453425d2
commit f0997cb2db

View File

@ -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();