diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-11 15:22:13 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-11 15:22:13 +0200 |
commit | 27796b7dd43b9ca776d8d907a42c7a464e30098f (patch) | |
tree | 0d3a971aa8dfc0ddd28bd55d7f2f9c01c030ef1b /src/post/deinterlace | |
parent | 1e858fff7528ea81d13b0cf718222e737299a607 (diff) | |
download | xine-lib-27796b7dd43b9ca776d8d907a42c7a464e30098f.tar.gz xine-lib-27796b7dd43b9ca776d8d907a42c7a464e30098f.tar.bz2 |
Fixed pointer casts
* * *
Fixed pointer cast
Diffstat (limited to 'src/post/deinterlace')
-rw-r--r-- | src/post/deinterlace/xine_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c index 63270acd7..1ea9e9f53 100644 --- a/src/post/deinterlace/xine_plugin.c +++ b/src/post/deinterlace/xine_plugin.c @@ -397,7 +397,7 @@ static post_plugin_t *deinterlace_open_plugin(post_class_t *class_gen, int input pthread_mutex_init (&this->lock, NULL); - set_parameters ((xine_post_t *)&this->post, &class->init_param); + set_parameters (&this->post.xine_post, &class->init_param); port = _x_post_intercept_video_port(&this->post, video_target[0], &input, &output); /* replace with our own get_frame function */ |