summaryrefslogtreecommitdiff
path: root/src/post/audio/stretch.c
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2012-01-11 15:22:13 +0200
committerPetri Hintukainen <phintuka@users.sourceforge.net>2012-01-11 15:22:13 +0200
commit27796b7dd43b9ca776d8d907a42c7a464e30098f (patch)
tree0d3a971aa8dfc0ddd28bd55d7f2f9c01c030ef1b /src/post/audio/stretch.c
parent1e858fff7528ea81d13b0cf718222e737299a607 (diff)
downloadxine-lib-27796b7dd43b9ca776d8d907a42c7a464e30098f.tar.gz
xine-lib-27796b7dd43b9ca776d8d907a42c7a464e30098f.tar.bz2
Fixed pointer casts
* * * Fixed pointer cast
Diffstat (limited to 'src/post/audio/stretch.c')
-rw-r--r--src/post/audio/stretch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/audio/stretch.c b/src/post/audio/stretch.c
index f8047e183..e315b11a8 100644
--- a/src/post/audio/stretch.c
+++ b/src/post/audio/stretch.c
@@ -643,7 +643,7 @@ static post_plugin_t *stretch_open_plugin(post_class_t *class_gen, int inputs,
pthread_mutex_init (&this->lock, NULL);
- set_parameters ((xine_post_t *)&this->post, &init_params);
+ set_parameters (&this->post.xine_post, &init_params);
port = _x_post_intercept_audio_port(&this->post, audio_target[0], &input, &output);
port->new_port.open = stretch_port_open;