mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
libs/gst/base/gstbasetransform.c: Fix a stupid bug. I was sure i compiled that.
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. ------------------------------------------------------
This commit is contained in:
parent
52cfed6470
commit
4bcfb92b9a
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2006-02-20 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
* gst/gstpad.c: (gst_pad_set_blocked_async):
|
* gst/gstpad.c: (gst_pad_set_blocked_async):
|
||||||
|
|
|
@ -1416,7 +1416,7 @@ gst_base_transform_change_state (GstElement * element,
|
||||||
trans->have_same_caps = FALSE;
|
trans->have_same_caps = FALSE;
|
||||||
/* We can only reset the passthrough mode if the instance told us to
|
/* We can only reset the passthrough mode if the instance told us to
|
||||||
handle it in configure_caps */
|
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_base_transform_set_passthrough (trans, FALSE);
|
||||||
}
|
}
|
||||||
gst_caps_replace (&trans->cache_caps1, NULL);
|
gst_caps_replace (&trans->cache_caps1, NULL);
|
||||||
|
|
Loading…
Reference in a new issue