diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2015-03-09 12:35:45 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2015-03-09 12:35:45 +0100 |
commit | 65a42a4999ae080c9b8d040404150ae58b44b533 (patch) | |
tree | 6d5f74c7e7a058e1bdd518cf4aab1dac4bc652b3 /plugins/pylon/uca-pylon-camera.c | |
parent | 43a5d42eeaccb08b7703e01e326e397ed3cd4ac2 (diff) | |
parent | c9b2ba6558c8212e59bd3701a2e26744caead33b (diff) | |
download | libuca-65a42a4999ae080c9b8d040404150ae58b44b533.tar.gz libuca-65a42a4999ae080c9b8d040404150ae58b44b533.tar.bz2 libuca-65a42a4999ae080c9b8d040404150ae58b44b533.tar.xz libuca-65a42a4999ae080c9b8d040404150ae58b44b533.zip |
Merge pull request #64 from ufo-kit/WriteRestrictionPolicy
Write restriction policy
Diffstat (limited to 'plugins/pylon/uca-pylon-camera.c')
-rw-r--r-- | plugins/pylon/uca-pylon-camera.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/pylon/uca-pylon-camera.c b/plugins/pylon/uca-pylon-camera.c index 4420d58..af6b8cf 100644 --- a/plugins/pylon/uca-pylon-camera.c +++ b/plugins/pylon/uca-pylon-camera.c @@ -135,9 +135,15 @@ static gboolean uca_pylon_camera_grab(UcaCamera *camera, gpointer data, GError * static void uca_pylon_camera_set_property(GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { - UcaPylonCameraPrivate *priv = UCA_PYLON_CAMERA_GET_PRIVATE(object); + g_return_if_fail (UCA_IS_PYLON_CAMERA (object)); + UcaPylonCameraPrivate *priv = UCA_PYLON_CAMERA_GET_PRIVATE (object); GError* error = NULL; + if (uca_camera_is_recording (UCA_CAMERA (object)) && !uca_camera_is_writable_during_acquisition (UCA_CAMERA (object), pspec->name)) { + g_warning ("Property '%s' cant be changed during acquisition", pspec->name); + return; + } + switch (property_id) { case PROP_SENSOR_HORIZONTAL_BINNING: /* intentional fall-through*/ |