summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorOlivier Crete <olivier.crete@collabora.co.uk>2008-04-25 20:00:00 +0000
committerOlivier Crete <olivier.crete@collabora.co.uk>2008-04-25 20:00:00 +0000
commite9a7c72f111ce2f6840ff24c6c289c0da3229bd1 (patch)
tree06e582a6e3667dd151e5cd825f1f7ed8a3c59f36 /gst
parent0376b2ee562b6d13420e81129404aa5856056c7f (diff)
downloadlibnice-e9a7c72f111ce2f6840ff24c6c289c0da3229bd1.tar.gz
Can't have construct-time properties on gst elements
darcs-hash:20080425200047-3e2dc-9d92ca18766d133a17b2053b4debeae272746d5e.gz
Diffstat (limited to 'gst')
-rw-r--r--gst/gstnicesink.c6
-rw-r--r--gst/gstnicesrc.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/gst/gstnicesink.c b/gst/gstnicesink.c
index 8b9648c..3a74d17 100644
--- a/gst/gstnicesink.c
+++ b/gst/gstnicesink.c
@@ -124,7 +124,7 @@ gst_nice_sink_class_init (GstNiceSinkClass *klass)
"Agent",
"The NiceAgent this source is bound to",
NICE_TYPE_AGENT,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_STREAM,
g_param_spec_uint (
@@ -134,7 +134,7 @@ gst_nice_sink_class_init (GstNiceSinkClass *klass)
0,
G_MAXUINT,
0,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_COMPONENT,
g_param_spec_uint (
@@ -144,7 +144,7 @@ gst_nice_sink_class_init (GstNiceSinkClass *klass)
0,
G_MAXUINT,
0,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
}
static void
diff --git a/gst/gstnicesrc.c b/gst/gstnicesrc.c
index d3c6dda..6155a59 100644
--- a/gst/gstnicesrc.c
+++ b/gst/gstnicesrc.c
@@ -142,7 +142,7 @@ gst_nice_src_class_init (GstNiceSrcClass *klass)
"Agent",
"The NiceAgent this source is bound to",
NICE_TYPE_AGENT,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_STREAM,
g_param_spec_uint (
@@ -152,7 +152,7 @@ gst_nice_src_class_init (GstNiceSrcClass *klass)
0,
G_MAXUINT,
0,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_COMPONENT,
g_param_spec_uint (
@@ -162,7 +162,7 @@ gst_nice_src_class_init (GstNiceSrcClass *klass)
0,
G_MAXUINT,
0,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+ G_PARAM_READWRITE));
}
static void