summaryrefslogtreecommitdiff
path: root/gst/effectv
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2011-08-26 14:20:49 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2011-08-26 14:20:49 +0200
commit75e153bb13fc3292a521c87e4f8ca25b2342beb9 (patch)
tree30a3a44f9691d0252b323b9d5388417b6cb8f1d0 /gst/effectv
parent18065ac823672bec02970f16a18be7c2771528cb (diff)
downloadgstreamer-plugins-good-75e153bb13fc3292a521c87e4f8ca25b2342beb9.tar.gz
allocation: fix for vmethod changes
Diffstat (limited to 'gst/effectv')
-rw-r--r--gst/effectv/gstwarp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c
index 2fae3e5ad..72a45c0d0 100644
--- a/gst/effectv/gstwarp.c
+++ b/gst/effectv/gstwarp.c
@@ -243,7 +243,7 @@ gst_warptv_start (GstBaseTransform * trans)
}
static gboolean
-gst_wraptv_setup_allocation (GstBaseTransform * trans, GstQuery * query)
+gst_wraptv_decide_allocation (GstBaseTransform * trans, GstQuery * query)
{
GstBufferPool *pool = NULL;
guint size, min, max, prefix, alignment;
@@ -294,8 +294,8 @@ 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->setup_allocation =
- GST_DEBUG_FUNCPTR (gst_wraptv_setup_allocation);
+ trans_class->decide_allocation =
+ GST_DEBUG_FUNCPTR (gst_wraptv_decide_allocation);
trans_class->transform = GST_DEBUG_FUNCPTR (gst_warptv_transform);
initSinTable ();