diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2014-03-27 13:20:53 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2014-05-08 15:56:36 -0400 |
commit | 0488984f82c6add0bc3facdb80f35461595a247a (patch) | |
tree | 0c0767e760587c0fd862d4cb8e226f0e1b511354 /sys | |
parent | f810196b3e6fd70df5507d7dfc5bc95ac5228ebf (diff) |
v4l2: Move propose allocation to v4l2object
Diffstat (limited to 'sys')
-rw-r--r-- | sys/v4l2/gstv4l2object.c | 60 | ||||
-rw-r--r-- | sys/v4l2/gstv4l2object.h | 3 | ||||
-rw-r--r-- | sys/v4l2/gstv4l2sink.c | 56 |
3 files changed, 64 insertions, 55 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index ab06ebf86..16c94747d 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -3169,3 +3169,63 @@ pool_failed: return FALSE; } } + +gboolean +gst_v4l2_object_propose_allocation (GstV4l2Object * obj, GstQuery * query) +{ + GstBufferPool *pool; + guint size = 0; + GstCaps *caps; + gboolean need_pool; + + gst_query_parse_allocation (query, &caps, &need_pool); + + if (caps == NULL) + goto no_caps; + + if ((pool = obj->pool)) + gst_object_ref (pool); + + if (pool != NULL) { + GstCaps *pcaps; + GstStructure *config; + + /* we had a pool, check caps */ + config = gst_buffer_pool_get_config (pool); + gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL); + + GST_DEBUG_OBJECT (obj->element, + "we had a pool with caps %" GST_PTR_FORMAT, pcaps); + if (!gst_caps_is_equal (caps, pcaps)) { + gst_structure_free (config); + gst_object_unref (pool); + goto different_caps; + } + gst_structure_free (config); + } + /* we need at least 2 buffers to operate */ + gst_query_add_allocation_pool (query, pool, size, 2, 0); + + /* we also support various metadata */ + /* FIXME should it be set per class ? */ + gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL); + gst_query_add_allocation_meta (query, GST_VIDEO_CROP_META_API_TYPE, NULL); + + if (pool) + gst_object_unref (pool); + + return TRUE; + + /* ERRORS */ +no_caps: + { + GST_DEBUG_OBJECT (obj->element, "no caps specified"); + return FALSE; + } +different_caps: + { + /* different caps, we can't use this pool */ + GST_DEBUG_OBJECT (obj->element, "pool has different caps"); + return FALSE; + } +} diff --git a/sys/v4l2/gstv4l2object.h b/sys/v4l2/gstv4l2object.h index 6bea091ae..39e9b5c9d 100644 --- a/sys/v4l2/gstv4l2object.h +++ b/sys/v4l2/gstv4l2object.h @@ -268,6 +268,9 @@ gboolean gst_v4l2_object_set_crop (GstV4l2Object * obj); gboolean gst_v4l2_object_decide_allocation (GstV4l2Object * v4l2object, GstQuery * query); +gboolean gst_v4l2_object_propose_allocation (GstV4l2Object * obj, + GstQuery * query); + GstStructure * gst_v4l2_object_v4l2fourcc_to_structure (guint32 fourcc); diff --git a/sys/v4l2/gstv4l2sink.c b/sys/v4l2/gstv4l2sink.c index 41989d534..458eaba70 100644 --- a/sys/v4l2/gstv4l2sink.c +++ b/sys/v4l2/gstv4l2sink.c @@ -536,61 +536,7 @@ static gboolean gst_v4l2sink_propose_allocation (GstBaseSink * bsink, GstQuery * query) { GstV4l2Sink *v4l2sink = GST_V4L2SINK (bsink); - GstV4l2Object *obj = v4l2sink->v4l2object; - GstBufferPool *pool; - guint size = 0; - GstCaps *caps; - gboolean need_pool; - - gst_query_parse_allocation (query, &caps, &need_pool); - - if (caps == NULL) - goto no_caps; - - if ((pool = obj->pool)) - gst_object_ref (pool); - - if (pool != NULL) { - GstCaps *pcaps; - GstStructure *config; - - /* we had a pool, check caps */ - config = gst_buffer_pool_get_config (pool); - gst_buffer_pool_config_get_params (config, &pcaps, &size, NULL, NULL); - - GST_DEBUG_OBJECT (v4l2sink, - "we had a pool with caps %" GST_PTR_FORMAT, pcaps); - if (!gst_caps_is_equal (caps, pcaps)) { - gst_structure_free (config); - gst_object_unref (pool); - goto different_caps; - } - gst_structure_free (config); - } - /* we need at least 2 buffers to operate */ - gst_query_add_allocation_pool (query, pool, size, 2, 0); - - /* we also support various metadata */ - gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL); - gst_query_add_allocation_meta (query, GST_VIDEO_CROP_META_API_TYPE, NULL); - - if (pool) - gst_object_unref (pool); - - return TRUE; - - /* ERRORS */ -no_caps: - { - GST_DEBUG_OBJECT (v4l2sink, "no caps specified"); - return FALSE; - } -different_caps: - { - /* different caps, we can't use this pool */ - GST_DEBUG_OBJECT (v4l2sink, "pool has different caps"); - return FALSE; - } + return gst_v4l2_object_propose_allocation (v4l2sink->v4l2object, query); } /* called after A/V sync to render frame */ |