mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Proper device-capabilities check when opening
Original commit message from CVS: Proper device-capabilities check when opening
This commit is contained in:
parent
a61cc265fe
commit
918ae14118
1 changed files with 11 additions and 0 deletions
|
@ -34,6 +34,8 @@
|
|||
#include "gstv4l2xoverlay.h"
|
||||
#include "gstv4l2colorbalance.h"
|
||||
|
||||
#include "gstv4l2src.h"
|
||||
|
||||
#define DEBUG(format, args...) \
|
||||
GST_DEBUG_OBJECT (\
|
||||
GST_ELEMENT(v4l2element), \
|
||||
|
@ -372,6 +374,15 @@ gst_v4l2_open (GstV4l2Element *v4l2element)
|
|||
goto error;
|
||||
}
|
||||
|
||||
/* do we need to be a capture device? */
|
||||
if (GST_IS_V4L2SRC(v4l2element) &&
|
||||
!(v4l2element->vcap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) {
|
||||
gst_element_error(GST_ELEMENT(v4l2element),
|
||||
"Not a capture device (0x%x)",
|
||||
v4l2element->vcap.capabilities);
|
||||
goto error;
|
||||
}
|
||||
|
||||
/* create enumerations */
|
||||
if (!gst_v4l2_fill_lists(v4l2element))
|
||||
goto error;
|
||||
|
|
Loading…
Reference in a new issue