diff options
author | Stefan Kost <ensonic@users.sf.net> | 2010-10-13 17:21:23 +0300 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2010-10-13 18:00:28 +0300 |
commit | d8167e3071ba389a544760e7dd777604c13bb69c (patch) | |
tree | b9907bda1a5d2910b5989ab8bdad625126d0cc1d /gst/multipart/multipartdemux.c | |
parent | 77b656eec130ddea17ccae54bafdfbe84850a2f9 (diff) | |
download | gstreamer-plugins-good-d8167e3071ba389a544760e7dd777604c13bb69c.tar.gz |
various (gst): add a missing G_PARAM_STATIC_STRINGS flags
Diffstat (limited to 'gst/multipart/multipartdemux.c')
-rw-r--r-- | gst/multipart/multipartdemux.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/multipart/multipartdemux.c b/gst/multipart/multipartdemux.c index f711ce7de..a5a51a224 100644 --- a/gst/multipart/multipartdemux.c +++ b/gst/multipart/multipartdemux.c @@ -157,12 +157,13 @@ gst_multipart_demux_class_init (GstMultipartDemuxClass * klass) g_object_class_install_property (gobject_class, PROP_BOUNDARY, g_param_spec_string ("boundary", "Boundary", "The boundary string separating data, automatic if NULL", - DEFAULT_BOUNDARY, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + DEFAULT_BOUNDARY, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_AUTOSCAN, g_param_spec_boolean ("autoscan", "autoscan", "Try to autofind the prefix (deprecated unused, see boundary)", - DEFAULT_AUTOSCAN, G_PARAM_READWRITE)); + DEFAULT_AUTOSCAN, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /* populate gst names and mime types pairs */ klass->gstnames = g_hash_table_new (g_str_hash, g_str_equal); |