summaryrefslogtreecommitdiff
path: root/ext/iqa
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-05-06 15:21:24 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-05-06 15:22:51 +0200
commitea5de0d7571411d8fa255478e3bc3b5dff1b2c08 (patch)
treef51a2244ccf805e45f379bc7300375d7eaee1d8a /ext/iqa
parentf777c66dcc29e3d9d6b56c85fdefc0600333aa0d (diff)
videoaggregator: Switch to a GstVideoAggregatorConvertPad subclass
This moves all the conversion related code to a single place, allows less code-duplication inside compositor and makes the glmixer code less awkward. It's also the same pattern as used by GstAudioAggregator.
Diffstat (limited to 'ext/iqa')
-rw-r--r--ext/iqa/iqa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/iqa/iqa.c b/ext/iqa/iqa.c
index 8c3e4a619..f57924059 100644
--- a/ext/iqa/iqa.c
+++ b/ext/iqa/iqa.c
@@ -361,7 +361,7 @@ gst_iqa_class_init (GstIqaClass * klass)
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
&src_factory, GST_TYPE_AGGREGATOR_PAD);
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
- &sink_factory, GST_TYPE_VIDEO_AGGREGATOR_PAD);
+ &sink_factory, GST_TYPE_VIDEO_AGGREGATOR_CONVERT_PAD);
gobject_class->set_property = _set_property;
gobject_class->get_property = _get_property;