summaryrefslogtreecommitdiff
path: root/ext/dc1394
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-10-19 16:23:23 +0300
committerStefan Kost <ensonic@users.sf.net>2010-10-19 17:13:26 +0300
commit0387a89cad03586a750c1cb2e6668da7650790b0 (patch)
treec286600d6174e098491ed51aab44876a8751f55f /ext/dc1394
parent90e90fd3682a3743941983d509fe23c2db472458 (diff)
downloadgstreamer-plugins-bad-0387a89cad03586a750c1cb2e6668da7650790b0.tar.gz
various (ext): add missing G_PARAM_STATIC_STRINGS flags
Canonicalize property names as needed.
Diffstat (limited to 'ext/dc1394')
-rw-r--r--ext/dc1394/gstdc1394.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/dc1394/gstdc1394.c b/ext/dc1394/gstdc1394.c
index 6ce9c80e4..94fcffb1e 100644
--- a/ext/dc1394/gstdc1394.c
+++ b/ext/dc1394/gstdc1394.c
@@ -135,25 +135,25 @@ gst_dc1394_class_init (GstDc1394Class * klass)
PROP_TIMESTAMP_OFFSET, g_param_spec_int64 ("timestamp-offset",
"Timestamp offset",
"An offset added to timestamps set on buffers (in ns)", G_MININT64,
- G_MAXINT64, 0, G_PARAM_READWRITE));
+ G_MAXINT64, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (G_OBJECT_CLASS (klass),
PROP_CAMNUM, g_param_spec_int ("camera-number",
"The number of the camera on the firewire bus",
"The number of the camera on the firewire bus", 0,
- G_MAXINT, 0, G_PARAM_READWRITE));
+ G_MAXINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (G_OBJECT_CLASS (klass),
PROP_BUFSIZE, g_param_spec_int ("buffer-size",
"The number of frames in the dma ringbuffer",
"The number of frames in the dma ringbuffer", 1,
- G_MAXINT, 10, G_PARAM_READWRITE));
+ G_MAXINT, 10, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (G_OBJECT_CLASS (klass),
PROP_ISO_SPEED, g_param_spec_int ("iso-speed",
"The iso bandwidth in Mbps (100, 200, 400, 800, 1600, 3200)",
"The iso bandwidth in Mbps (100, 200, 400, 800, 1600, 3200)", 100,
- 3200, 400, G_PARAM_READWRITE));
+ 3200, 400, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
gstbasesrc_class->get_caps = gst_dc1394_getcaps;
gstbasesrc_class->set_caps = gst_dc1394_setcaps;