Revert "v4l2object: allow to automatic selection of dmabuf"

This reverts commit e6c2ad5571.
This commit is contained in:
Nicolas Dufresne 2014-11-24 10:33:29 -05:00
parent d1acea57a2
commit 3591a91067
2 changed files with 2 additions and 8 deletions

View file

@ -517,8 +517,6 @@ gst_v4l2_buffer_pool_set_config (GstBufferPool * bpool, GstStructure * config)
gst_buffer_pool_config_set_params (config, caps, size, min_buffers,
max_buffers);
gst_buffer_pool_config_set_allocator (config, pool->allocator, &params);
/* keep a GstVideoInfo with defaults for the when we need to copy */
gst_video_info_from_caps (&pool->caps_info, caps);

View file

@ -2362,12 +2362,8 @@ gst_v4l2_object_setup_pool (GstV4l2Object * v4l2object, GstCaps * caps)
goto method_not_supported;
if (v4l2object->vcap.capabilities & V4L2_CAP_STREAMING) {
if (v4l2object->req_mode == GST_V4L2_IO_AUTO) {
if (GST_V4L2_OBJECT_CAN_REQUEST (v4l2object, DMABUF))
mode = GST_V4L2_IO_DMABUF;
else
if (v4l2object->req_mode == GST_V4L2_IO_AUTO)
mode = GST_V4L2_IO_MMAP;
}
} else if (v4l2object->req_mode == GST_V4L2_IO_MMAP)
goto method_not_supported;