summaryrefslogtreecommitdiff
path: root/gst/librfb
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2016-04-05 21:40:58 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2016-04-05 21:40:58 -0400
commit81960ea8539f64fa15a085b23f3f15805be8ec92 (patch)
treedd92984b9f1701b67f1ab00ebf6c6d35b86ab679 /gst/librfb
parent7e293f15ddc5a24d3eca0d7c82e66b90fdf262fd (diff)
downloadgstreamer-plugins-bad-81960ea8539f64fa15a085b23f3f15805be8ec92.tar.gz
rfbsrc: Fix fallback to GstVideoBufferPool
The replacement pool need to be added to the query, otherwise the baseclass won't see it. We also need to properly remove the rejected pools. https://bugzilla.gnome.org/show_bug.cgi?id=763441
Diffstat (limited to 'gst/librfb')
-rw-r--r--gst/librfb/gstrfbsrc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gst/librfb/gstrfbsrc.c b/gst/librfb/gstrfbsrc.c
index 633d5d089..786d32d4c 100644
--- a/gst/librfb/gstrfbsrc.c
+++ b/gst/librfb/gstrfbsrc.c
@@ -346,7 +346,6 @@ gst_rfb_src_decide_allocation (GstBaseSrc * bsrc, GstQuery * query)
GstStructure *config;
GstCaps *caps;
GstVideoInfo info;
- gint i;
gboolean ret;
gst_query_parse_allocation (query, &caps, NULL);
@@ -354,7 +353,7 @@ gst_rfb_src_decide_allocation (GstBaseSrc * bsrc, GstQuery * query)
if (!caps || !gst_video_info_from_caps (&info, caps))
return FALSE;
- for (i = 0; i < gst_query_get_n_allocation_pools (query); i++) {
+ while (gst_query_get_n_allocation_pools (query) > 0) {
gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
/* TODO We restrict to the exact size as we don't support strides or
@@ -362,6 +361,7 @@ gst_rfb_src_decide_allocation (GstBaseSrc * bsrc, GstQuery * query)
if (size == info.size)
break;
+ gst_query_remove_nth_allocation_pool (query, 0);
gst_object_unref (pool);
pool = NULL;
}
@@ -370,7 +370,9 @@ gst_rfb_src_decide_allocation (GstBaseSrc * bsrc, GstQuery * query)
/* we did not get a pool, make one ourselves then */
pool = gst_video_buffer_pool_new ();
size = info.size;
- min = max = 0;
+ min = 1;
+ max = 0;
+ gst_query_add_allocation_pool (query, pool, size, min, max);
}
config = gst_buffer_pool_get_config (pool);