summaryrefslogtreecommitdiffstats
path: root/gst/effectv/gstshagadelic.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-06-16 19:41:02 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-06-16 19:41:02 +0200
commit44a822b29f1d901110f383eccd293a1eb9e6dd41 (patch)
tree74e91ed29eb1b0955acc9b1bb193a05d651014f8 /gst/effectv/gstshagadelic.c
parente040ae4ffcbb17eb4230df6e29890c63f4705351 (diff)
effectv: Remove get_unit_size implementations
The default on from GstVideoFilter handles this already.
Diffstat (limited to 'gst/effectv/gstshagadelic.c')
-rw-r--r--gst/effectv/gstshagadelic.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/gst/effectv/gstshagadelic.c b/gst/effectv/gstshagadelic.c
index 84994490..30336319 100644
--- a/gst/effectv/gstshagadelic.c
+++ b/gst/effectv/gstshagadelic.c
@@ -118,28 +118,6 @@ gst_shagadelictv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
return ret;
}
-static gboolean
-gst_shagadelictv_get_unit_size (GstBaseTransform * btrans, GstCaps * caps,
- guint * size)
-{
- GstShagadelicTV *filter = GST_SHAGADELICTV (btrans);
- GstStructure *structure;
- gboolean ret = FALSE;
- gint width, height;
-
- structure = gst_caps_get_structure (caps, 0);
-
- if (gst_structure_get_int (structure, "width", &width) &&
- gst_structure_get_int (structure, "height", &height)) {
- *size = width * height * 32 / 8;
- ret = TRUE;
- GST_DEBUG_OBJECT (filter, "our frame size is %d bytes (%dx%d)", *size,
- width, height);
- }
-
- return ret;
-}
-
static inline guint
fastrand (void)
{
@@ -300,8 +278,6 @@ gst_shagadelictv_class_init (GstShagadelicTVClass * klass)
gobject_class->finalize = gst_shagadelictv_finalize;
trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_shagadelictv_set_caps);
- trans_class->get_unit_size =
- GST_DEBUG_FUNCPTR (gst_shagadelictv_get_unit_size);
trans_class->transform = GST_DEBUG_FUNCPTR (gst_shagadelictv_transform);
}