mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
effecttv: fix reverse negotiation
The plugins were using _fixed_caps_ and thus not adjusting to new upstream sizes. Spotted by Tim Müller.
This commit is contained in:
parent
5d03d65349
commit
3295482afd
2 changed files with 0 additions and 6 deletions
|
@ -616,7 +616,4 @@ gst_radioactv_init (GstRadioacTV * filter, GstRadioacTVClass * klass)
|
||||||
filter->color = DEFAULT_COLOR;
|
filter->color = DEFAULT_COLOR;
|
||||||
filter->interval = DEFAULT_INTERVAL;
|
filter->interval = DEFAULT_INTERVAL;
|
||||||
filter->trigger = DEFAULT_TRIGGER;
|
filter->trigger = DEFAULT_TRIGGER;
|
||||||
|
|
||||||
gst_pad_use_fixed_caps (GST_BASE_TRANSFORM_SRC_PAD (filter));
|
|
||||||
gst_pad_use_fixed_caps (GST_BASE_TRANSFORM_SINK_PAD (filter));
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -267,7 +267,4 @@ gst_shagadelictv_init (GstShagadelicTV * filter, GstShagadelicTVClass * klass)
|
||||||
{
|
{
|
||||||
filter->ripple = NULL;
|
filter->ripple = NULL;
|
||||||
filter->spiral = NULL;
|
filter->spiral = NULL;
|
||||||
|
|
||||||
gst_pad_use_fixed_caps (GST_BASE_TRANSFORM_SRC_PAD (filter));
|
|
||||||
gst_pad_use_fixed_caps (GST_BASE_TRANSFORM_SINK_PAD (filter));
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue