libs/gst/base/gstbasetransform.c: Fix a stupid bug. I was sure i compiled that.
authorJulien Moutte <julien@moutte.net>
Mon, 20 Feb 2006 16:07:42 +0000 (16:07 +0000)
committerJulien Moutte <julien@moutte.net>
Mon, 20 Feb 2006 16:07:42 +0000 (16:07 +0000)
Original commit message from CVS:

* libs/gst/base/gstbasetransform.c:
(gst_base_transform_change_state): Fix a stupid bug. I was
sure i compiled that.
------------------------------------------------------

ChangeLog
libs/gst/base/gstbasetransform.c

index 6296be1..1988759 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2006-02-20  Julien MOUTTE  <julien@moutte.net>
 
+       * libs/gst/base/gstbasetransform.c:
+       (gst_base_transform_change_state): Fix a stupid bug. I was 
+       sure i compiled that.
+
+2006-02-20  Julien MOUTTE  <julien@moutte.net>
+
        * gst/gstpad.c: (gst_pad_set_blocked_async):
        * gst/gstutils.c: (gst_pad_add_data_probe),
        (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
index 2a2998d..9bbe049 100644 (file)
@@ -1416,7 +1416,7 @@ gst_base_transform_change_state (GstElement * element,
       trans->have_same_caps = FALSE;
       /* We can only reset the passthrough mode if the instance told us to 
          handle it in configure_caps */
-      if (trans->passthrough_on_same_caps) {
+      if (bclass->passthrough_on_same_caps) {
         gst_base_transform_set_passthrough (trans, FALSE);
       }
       gst_caps_replace (&trans->cache_caps1, NULL);