summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-12-25 15:12:02 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-12-25 15:12:02 +0000
commit35cf5c7af637d1af61cd2a1029cf15e8c8ffa561 (patch)
tree880a5983b058c6adadbc43fe629664ed58b3b5fb
parentdd540bc25224530653ca1e3db606ae17535c9f0b (diff)
downloadxine-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.c4
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;