mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
androidmedia: fix error debug message when camera doesn't exist
Makes no sense to include the system error here since errno will likely not be set and then it says 'system error: success' which is confusing. https://bugzilla.gnome.org/show_bug.cgi?id=767087
This commit is contained in:
parent
fe62233b83
commit
889a1a9b90
1 changed files with 3 additions and 3 deletions
|
@ -2192,13 +2192,13 @@ gst_ahc_src_open (GstAHCSrc * self)
|
||||||
gint num_cams = gst_ah_camera_get_number_of_cameras ();
|
gint num_cams = gst_ah_camera_get_number_of_cameras ();
|
||||||
if (num_cams > 0 && self->device < num_cams) {
|
if (num_cams > 0 && self->device < num_cams) {
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
||||||
("Unable to open device '%d'.", self->device), GST_ERROR_SYSTEM);
|
("Unable to open device '%d'.", self->device), (NULL));
|
||||||
} else if (num_cams > 0) {
|
} else if (num_cams > 0) {
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
||||||
("Device '%d' does not exist.", self->device), GST_ERROR_SYSTEM);
|
("Device '%d' does not exist.", self->device), (NULL));
|
||||||
} else {
|
} else {
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
||||||
("There are no cameras available on this device."), GST_ERROR_SYSTEM);
|
("There are no cameras available on this device."), (NULL));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue