mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
videoaggregator: Validate pool configuration and create a new pool if it just does not work
Also pass the given allocator to the pool if one is set.
This commit is contained in:
parent
33a8e28207
commit
429e6c8532
1 changed files with 41 additions and 6 deletions
|
@ -2186,14 +2186,15 @@ gst_video_aggregator_decide_allocation (GstAggregator * agg, GstQuery * query)
|
||||||
GstAllocationParams params = { 0, 15, 0, 0 };
|
GstAllocationParams params = { 0, 15, 0, 0 };
|
||||||
guint i;
|
guint i;
|
||||||
GstBufferPool *pool;
|
GstBufferPool *pool;
|
||||||
|
GstAllocator *allocator;
|
||||||
guint size, min, max;
|
guint size, min, max;
|
||||||
gboolean update = FALSE;
|
gboolean update = FALSE;
|
||||||
GstStructure *config = NULL;
|
GstStructure *config = NULL;
|
||||||
GstCaps *caps = NULL;
|
GstCaps *caps = NULL;
|
||||||
|
|
||||||
if (gst_query_get_n_allocation_params (query) == 0)
|
if (gst_query_get_n_allocation_params (query) == 0) {
|
||||||
gst_query_add_allocation_param (query, NULL, ¶ms);
|
gst_query_add_allocation_param (query, NULL, ¶ms);
|
||||||
else
|
} else {
|
||||||
for (i = 0; i < gst_query_get_n_allocation_params (query); i++) {
|
for (i = 0; i < gst_query_get_n_allocation_params (query); i++) {
|
||||||
GstAllocator *allocator;
|
GstAllocator *allocator;
|
||||||
|
|
||||||
|
@ -2201,6 +2202,9 @@ gst_video_aggregator_decide_allocation (GstAggregator * agg, GstQuery * query)
|
||||||
params.align = MAX (params.align, 15);
|
params.align = MAX (params.align, 15);
|
||||||
gst_query_set_nth_allocation_param (query, i, allocator, ¶ms);
|
gst_query_set_nth_allocation_param (query, i, allocator, ¶ms);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
gst_query_parse_nth_allocation_param (query, 0, &allocator, ¶ms);
|
||||||
|
|
||||||
if (gst_query_get_n_allocation_pools (query) > 0) {
|
if (gst_query_get_n_allocation_pools (query) > 0) {
|
||||||
gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
|
gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
|
||||||
|
@ -2215,21 +2219,39 @@ gst_video_aggregator_decide_allocation (GstAggregator * agg, GstQuery * query)
|
||||||
update = FALSE;
|
update = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gst_query_parse_allocation (query, &caps, NULL);
|
||||||
|
|
||||||
/* no downstream pool, make our own */
|
/* no downstream pool, make our own */
|
||||||
if (pool == NULL)
|
if (pool == NULL)
|
||||||
pool = gst_video_buffer_pool_new ();
|
pool = gst_video_buffer_pool_new ();
|
||||||
|
|
||||||
config = gst_buffer_pool_get_config (pool);
|
config = gst_buffer_pool_get_config (pool);
|
||||||
|
|
||||||
gst_query_parse_allocation (query, &caps, NULL);
|
gst_buffer_pool_config_set_params (config, caps, size, min, max);
|
||||||
if (caps)
|
gst_buffer_pool_config_set_allocator (config, allocator, ¶ms);
|
||||||
gst_buffer_pool_config_set_params (config, caps, size, min, max);
|
|
||||||
|
/* buffer pool may have to do some changes */
|
||||||
|
if (!gst_buffer_pool_set_config (pool, config)) {
|
||||||
|
config = gst_buffer_pool_get_config (pool);
|
||||||
|
|
||||||
|
/* If change are not acceptable, fallback to generic pool */
|
||||||
|
if (!gst_buffer_pool_config_validate_params (config, caps, size, min, max)) {
|
||||||
|
GST_DEBUG_OBJECT (agg, "unsupported pool, making new pool");
|
||||||
|
|
||||||
|
gst_object_unref (pool);
|
||||||
|
pool = gst_video_buffer_pool_new ();
|
||||||
|
gst_buffer_pool_config_set_params (config, caps, size, min, max);
|
||||||
|
gst_buffer_pool_config_set_allocator (config, allocator, ¶ms);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!gst_buffer_pool_set_config (pool, config))
|
||||||
|
goto config_failed;
|
||||||
|
}
|
||||||
|
|
||||||
if (gst_query_find_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL)) {
|
if (gst_query_find_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL)) {
|
||||||
gst_buffer_pool_config_add_option (config,
|
gst_buffer_pool_config_add_option (config,
|
||||||
GST_BUFFER_POOL_OPTION_VIDEO_META);
|
GST_BUFFER_POOL_OPTION_VIDEO_META);
|
||||||
}
|
}
|
||||||
gst_buffer_pool_set_config (pool, config);
|
|
||||||
|
|
||||||
if (update)
|
if (update)
|
||||||
gst_query_set_nth_allocation_pool (query, 0, pool, size, min, max);
|
gst_query_set_nth_allocation_pool (query, 0, pool, size, min, max);
|
||||||
|
@ -2238,8 +2260,21 @@ gst_video_aggregator_decide_allocation (GstAggregator * agg, GstQuery * query)
|
||||||
|
|
||||||
if (pool)
|
if (pool)
|
||||||
gst_object_unref (pool);
|
gst_object_unref (pool);
|
||||||
|
if (allocator)
|
||||||
|
gst_object_unref (allocator);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
config_failed:
|
||||||
|
if (pool)
|
||||||
|
gst_object_unref (pool);
|
||||||
|
if (allocator)
|
||||||
|
gst_object_unref (allocator);
|
||||||
|
|
||||||
|
GST_ELEMENT_ERROR (agg, RESOURCE, SETTINGS,
|
||||||
|
("Failed to configure the buffer pool"),
|
||||||
|
("Configuration is most likely invalid, please report this issue."));
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
|
Loading…
Reference in a new issue