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
@ -67,8 +67,10 @@ gst_v4l2_video_dec_set_property (GObject * object,
|
|||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
case PROP_CAPTURE_IO_MODE:
|
case PROP_CAPTURE_IO_MODE:
|
||||||
gst_v4l2_object_set_property_helper (self->v4l2capture, prop_id, value,
|
if (!gst_v4l2_object_set_property_helper (self->v4l2capture,
|
||||||
pspec);
|
prop_id, value, pspec)) {
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* By default, only set on output */
|
/* By default, only set on output */
|
||||||
@ -89,8 +91,10 @@ gst_v4l2_video_dec_get_property (GObject * object,
|
|||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
case PROP_CAPTURE_IO_MODE:
|
case PROP_CAPTURE_IO_MODE:
|
||||||
gst_v4l2_object_get_property_helper (self->v4l2capture, prop_id, value,
|
if (!gst_v4l2_object_get_property_helper (self->v4l2capture,
|
||||||
pspec);
|
prop_id, value, pspec)) {
|
||||||
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* By default read from output */
|
/* By default read from output */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user