diff options
-rw-r--r-- | src/cameras/uca-pf-camera.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cameras/uca-pf-camera.c b/src/cameras/uca-pf-camera.c index e1fbc7b..2724aa5 100644 --- a/src/cameras/uca-pf-camera.c +++ b/src/cameras/uca-pf-camera.c @@ -101,7 +101,7 @@ struct _UcaPfCameraPrivate { UcaPfCamera *uca_pf_camera_new(GError **error) { static const gchar *so_file = "libFullAreaGray8.so"; - static const int camera_link_type = FG_CL_8BIT_FULL_10; + static const int camera_link_type = FG_CL_8BIT_FULL_8; static const int camera_format = FG_GRAY; /* gint num_ports; */ @@ -143,7 +143,7 @@ UcaPfCamera *uca_pf_camera_new(GError **error) /* TODO: get this from the camera */ priv->roi_width = 1280; - priv->roi_height = 640; + priv->roi_height = 1024; if (priv->fg == NULL) { g_set_error(error, UCA_PF_CAMERA_ERROR, UCA_PF_CAMERA_ERROR_INIT, |