diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 09:31:24 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 09:31:24 +0200 |
commit | a0e94969bbee79a6342f1608acffda0dc2f235bc (patch) | |
tree | 7e1d2c1a66ebe4422f43ab67764e113c1290fb00 /plugins | |
parent | 5b0a76d69d631838a08a2678388b55c8dacd6d74 (diff) | |
download | libuca-a0e94969bbee79a6342f1608acffda0dc2f235bc.tar.gz libuca-a0e94969bbee79a6342f1608acffda0dc2f235bc.tar.bz2 libuca-a0e94969bbee79a6342f1608acffda0dc2f235bc.tar.xz libuca-a0e94969bbee79a6342f1608acffda0dc2f235bc.zip |
Use correct pixel rate property name
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pco/uca-pco-camera.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pco/uca-pco-camera.c b/plugins/pco/uca-pco-camera.c index e20d683..791d154 100644 --- a/plugins/pco/uca-pco-camera.c +++ b/plugins/pco/uca-pco-camera.c @@ -331,7 +331,7 @@ get_internal_delay (UcaPcoCamera *camera) { if (camera->priv->camera_description->camera_type == CAMERATYPE_PCO_DIMAX_STD) { gdouble sensor_rate; - g_object_get (camera, "sensor-rate", &sensor_rate, NULL); + g_object_get (camera, "sensor-pixelrate", &sensor_rate, NULL); if (sensor_rate == 55000000.0) return 0.000079; |