diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-08-26 14:20:30 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-08-26 14:26:37 +0200 |
commit | 82d82203f68eb1afbf65ac7d91721c8f65ebc005 (patch) | |
tree | bca7e4d2f4ff4e872a8d83de2417f2663048d34d /sys | |
parent | 94c2206c75a4d66bbff24f67a9796bdd4a358cf9 (diff) |
base: fix for allocation methods rename
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ximage/ximagesink.c | 6 | ||||
-rw-r--r-- | sys/xvimage/xvimagesink.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/ximage/ximagesink.c b/sys/ximage/ximagesink.c index 1ee33d9b8..a0a142058 100644 --- a/sys/ximage/ximagesink.c +++ b/sys/ximage/ximagesink.c @@ -1426,7 +1426,7 @@ gst_ximagesink_event (GstBaseSink * sink, GstEvent * event) } static gboolean -gst_ximagesink_setup_allocation (GstBaseSink * bsink, GstQuery * query) +gst_ximagesink_propose_allocation (GstBaseSink * bsink, GstQuery * query) { GstXImageSink *ximagesink = GST_XIMAGESINK (bsink); GstBufferPool *pool; @@ -1977,8 +1977,8 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass) gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_ximagesink_getcaps); gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_ximagesink_setcaps); gstbasesink_class->get_times = GST_DEBUG_FUNCPTR (gst_ximagesink_get_times); - gstbasesink_class->setup_allocation = - GST_DEBUG_FUNCPTR (gst_ximagesink_setup_allocation); + gstbasesink_class->propose_allocation = + GST_DEBUG_FUNCPTR (gst_ximagesink_propose_allocation); gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_ximagesink_event); videosink_class->show_frame = GST_DEBUG_FUNCPTR (gst_ximagesink_show_frame); diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index e5e0345c3..a4a5bc573 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -1941,7 +1941,7 @@ gst_xvimagesink_event (GstBaseSink * sink, GstEvent * event) } static gboolean -gst_xvimagesink_setup_allocation (GstBaseSink * bsink, GstQuery * query) +gst_xvimagesink_propose_allocation (GstBaseSink * bsink, GstQuery * query) { GstXvImageSink *xvimagesink = GST_XVIMAGESINK (bsink); GstBufferPool *pool; @@ -2947,8 +2947,8 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass) gstbasesink_class->get_caps = GST_DEBUG_FUNCPTR (gst_xvimagesink_getcaps); gstbasesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_xvimagesink_setcaps); gstbasesink_class->get_times = GST_DEBUG_FUNCPTR (gst_xvimagesink_get_times); - gstbasesink_class->setup_allocation = - GST_DEBUG_FUNCPTR (gst_xvimagesink_setup_allocation); + gstbasesink_class->propose_allocation = + GST_DEBUG_FUNCPTR (gst_xvimagesink_propose_allocation); gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_xvimagesink_event); videosink_class->show_frame = GST_DEBUG_FUNCPTR (gst_xvimagesink_show_frame); |