diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-07-26 22:34:00 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-07-26 22:34:00 +0000 |
commit | 960e7e2bd334974025bd8ac71dc2b088789133a9 (patch) | |
tree | 36d2460960f67c144b3133bf6924a6cc3d65850d | |
parent | dfa7cc55e0b7646a82a21b0d6b7c8bb99ac42584 (diff) | |
download | xine-lib-960e7e2bd334974025bd8ac71dc2b088789133a9.tar.gz xine-lib-960e7e2bd334974025bd8ac71dc2b088789133a9.tar.bz2 |
play 20% faster by default
CVS patchset: 6856
CVS date: 2004/07/26 22:34:00
-rw-r--r-- | src/post/audio/stretch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/audio/stretch.c b/src/post/audio/stretch.c index f34172b72..0079111a8 100644 --- a/src/post/audio/stretch.c +++ b/src/post/audio/stretch.c @@ -19,7 +19,7 @@ * * Time stretch by a given factor, optionally preserving pitch * - * $Id: stretch.c,v 1.1 2004/07/26 22:23:34 miguelfreitas Exp $ + * $Id: stretch.c,v 1.2 2004/07/26 22:34:00 miguelfreitas Exp $ * */ @@ -631,7 +631,7 @@ static post_plugin_t *stretch_open_plugin(post_class_t *class_gen, int inputs, _x_post_init(&this->post, 1, 0); init_params.preserve_pitch = 1; - init_params.factor = 1.01; + init_params.factor = 0.80; pthread_mutex_init (&this->lock, NULL); |