summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2003-03-06 22:59:35 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2003-03-06 22:59:35 +0000
commitdee5cbca9b7d6d0e2bfcf7fd6c73073fac5dfad4 (patch)
tree41eea8a164e19557b3ed2e035a19db3f9fafa993
parent558eded1985948ecca254984cf539edd28e6bcb1 (diff)
downloadxine-lib-dee5cbca9b7d6d0e2bfcf7fd6c73073fac5dfad4.tar.gz
xine-lib-dee5cbca9b7d6d0e2bfcf7fd6c73073fac5dfad4.tar.bz2
- revert stream info changes
CVS patchset: 4346 CVS date: 2003/03/06 22:59:35
-rw-r--r--src/post/goom/xine_goom.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c
index 2142c0537..537582371 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.26 2003/03/06 00:51:39 hadess Exp $
+ * $Id: xine_goom.c,v 1.27 2003/03/06 22:59:35 hadess Exp $
*
* GOOM post plugin.
*
@@ -151,8 +151,6 @@ static void width_changed_cb(void *data, xine_cfg_entry_t *cfg) {
if(class->ip) {
post_plugin_goom_t *this = class->ip;
this->width = cfg->num_value;
- if (this->stream)
- this->stream->stream_info[XINE_STREAM_INFO_VIDEO_WIDTH] = this->width;
}
}
@@ -162,8 +160,6 @@ static void height_changed_cb(void *data, xine_cfg_entry_t *cfg) {
if(class->ip) {
post_plugin_goom_t *this = class->ip;
this->height = cfg->num_value;
- if (this->stream)
- this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HEIGHT] = this->height;
}
}
@@ -445,9 +441,6 @@ static int goom_port_open(xine_audio_port_t *port_gen, xine_stream_t *stream,
this->data_idx = 0;
init_yuv_planes(&this->yuv, this->width, this->height);
- this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HEIGHT] = this->height;
- this->stream->stream_info[XINE_STREAM_INFO_VIDEO_WIDTH] = this->width;
-
return port->original_port->open(port->original_port, stream, bits, rate, mode );
}