diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2006-01-27 07:46:09 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2006-01-27 07:46:09 +0000 |
commit | 0a391246fd4e8a3c64f3d817cd8ec11c9aaaffd9 (patch) | |
tree | b945d0e6288a0a4c973a4466a0370369d67b1882 /src/post/audio/stretch.c | |
parent | 9c79ab35fc7950f8ee35ea0ebea8ca802a225131 (diff) | |
download | xine-lib-0a391246fd4e8a3c64f3d817cd8ec11c9aaaffd9.tar.gz xine-lib-0a391246fd4e8a3c64f3d817cd8ec11c9aaaffd9.tar.bz2 |
Adapt the engine to the new list code.
CVS patchset: 7848
CVS date: 2006/01/27 07:46:09
Diffstat (limited to 'src/post/audio/stretch.c')
-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 f5b7fd4de..a1e921e03 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.7 2005/07/16 17:00:50 miguelfreitas Exp $ + * $Id: stretch.c,v 1.8 2006/01/27 07:46:12 tmattern Exp $ * */ @@ -647,7 +647,7 @@ static post_plugin_t *stretch_open_plugin(post_class_t *class_gen, int inputs, input_api->name = "parameters"; input_api->type = XINE_POST_DATA_PARAMETERS; input_api->data = &post_api; - xine_list_append_content(this->post.input, input_api); + xine_list_push_back(this->post.input, input_api); this->post.xine_post.audio_input[0] = &port->new_port; |