diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-25 15:12:02 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-25 15:12:02 +0000 |
commit | 35cf5c7af637d1af61cd2a1029cf15e8c8ffa561 (patch) | |
tree | 880a5983b058c6adadbc43fe629664ed58b3b5fb | |
parent | dd540bc25224530653ca1e3db606ae17535c9f0b (diff) | |
download | xine-lib-35cf5c7af637d1af61cd2a1029cf15e8c8ffa561.tar.gz xine-lib-35cf5c7af637d1af61cd2a1029cf15e8c8ffa561.tar.bz2 |
Ooops, forgot the initialization
CVS patchset: 3681
CVS date: 2002/12/25 15:12:02
-rw-r--r-- | src/post/goom/xine_goom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index 098ec7cf1..c5150b848 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_goom.c,v 1.2 2002/12/25 15:05:06 mroi Exp $ + * $Id: xine_goom.c,v 1.3 2002/12/25 15:12:02 mroi Exp $ * * GOOM post plugin. * @@ -151,11 +151,13 @@ static post_plugin_t *goom_open_plugin(post_class_t *class_gen, int inputs, output->out.type = XINE_POST_DATA_AUDIO; output->out.data = (xine_audio_port_t **)&port->original_port; output->out.rewire = goom_rewire_audio; + output->post = this; outputv->out.name = "generated video"; outputv->out.type = XINE_POST_DATA_VIDEO; outputv->out.data = (xine_video_port_t **)&this->vo_port; outputv->out.rewire = goom_rewire_video; + outputv->post = this; this->post.xine_post.audio_input = (xine_audio_port_t **)malloc(sizeof(xine_audio_port_t *) * 2); this->post.xine_post.audio_input[0] = &port->port; |