mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
v4l2videodec: add property set/get PROP_CAPTURE_IO_MODE error handling
https://bugzilla.gnome.org/show_bug.cgi?id=791841
This commit is contained in:
parent
2cd772b97a
commit
d2f9040e1d
1 changed files with 8 additions and 4 deletions
|
@ -67,8 +67,10 @@ gst_v4l2_video_dec_set_property (GObject * object,
|
|||
|
||||
switch (prop_id) {
|
||||
case PROP_CAPTURE_IO_MODE:
|
||||
gst_v4l2_object_set_property_helper (self->v4l2capture, prop_id, value,
|
||||
pspec);
|
||||
if (!gst_v4l2_object_set_property_helper (self->v4l2capture,
|
||||
prop_id, value, pspec)) {
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
break;
|
||||
|
||||
/* By default, only set on output */
|
||||
|
@ -89,8 +91,10 @@ gst_v4l2_video_dec_get_property (GObject * object,
|
|||
|
||||
switch (prop_id) {
|
||||
case PROP_CAPTURE_IO_MODE:
|
||||
gst_v4l2_object_get_property_helper (self->v4l2capture, prop_id, value,
|
||||
pspec);
|
||||
if (!gst_v4l2_object_get_property_helper (self->v4l2capture,
|
||||
prop_id, value, pspec)) {
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
break;
|
||||
|
||||
/* By default read from output */
|
||||
|
|
Loading…
Reference in a new issue