From f0997cb2db813344e87781144db7eaf11df9ebc5 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Mon, 17 Feb 2003 09:47:16 +0000 Subject: [PATCH] * 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. --- modules/audio_filter/resampler/linear.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/audio_filter/resampler/linear.c b/modules/audio_filter/resampler/linear.c index 601ec85178..640f7cc8e1 100644 --- a/modules/audio_filter/resampler/linear.c +++ b/modules/audio_filter/resampler/linear.c @@ -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 * Sigmund Augdal @@ -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(); -- 2.20.1