summaryrefslogtreecommitdiff
path: root/gst/effectv/gstwarp.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/gstwarp.c
parente040ae4ffcbb17eb4230df6e29890c63f4705351 (diff)
effectv: Remove get_unit_size implementations
The default on from GstVideoFilter handles this already.
Diffstat (limited to 'gst/effectv/gstwarp.c')
-rw-r--r--gst/effectv/gstwarp.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c
index 0a65326ee..b87353719 100644
--- a/gst/effectv/gstwarp.c
+++ b/gst/effectv/gstwarp.c
@@ -130,28 +130,6 @@ gst_warptv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
return ret;
}
-static gboolean
-gst_warptv_get_unit_size (GstBaseTransform * btrans, GstCaps * caps,
- guint * size)
-{
- GstWarpTV *filter = GST_WARPTV (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 void
initSinTable (GstWarpTV * filter)
{
@@ -313,7 +291,6 @@ gst_warptv_class_init (GstWarpTVClass * klass)
trans_class->start = GST_DEBUG_FUNCPTR (gst_warptv_start);
trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_warptv_set_caps);
- trans_class->get_unit_size = GST_DEBUG_FUNCPTR (gst_warptv_get_unit_size);
trans_class->transform = GST_DEBUG_FUNCPTR (gst_warptv_transform);
}