From 0c22e1b954b98b04673aa5b849a8434b2ce820a1 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 19 Oct 2010 13:43:14 +0300 Subject: various (gst): add missing G_PARAM_STATIC_STRINGS flags Canonicalize property names as needed. --- gst/id3tag/gstid3mux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/id3tag') diff --git a/gst/id3tag/gstid3mux.c b/gst/id3tag/gstid3mux.c index b13bfb584..30995884c 100644 --- a/gst/id3tag/gstid3mux.c +++ b/gst/id3tag/gstid3mux.c @@ -114,18 +114,18 @@ gst_id3_mux_class_init (GstId3MuxClass * klass) g_object_class_install_property (gobject_class, ARG_WRITE_V1, g_param_spec_boolean ("write-v1", "Write id3v1 tag", "Write an id3v1 tag at the end of the file", DEFAULT_WRITE_V1, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, ARG_WRITE_V2, g_param_spec_boolean ("write-v2", "Write id3v2 tag", "Write an id3v2 tag at the start of the file", DEFAULT_WRITE_V2, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, ARG_V2_MAJOR_VERSION, g_param_spec_int ("v2-version", "Version (3 or 4) of id3v2 tag", "Set version (3 for id3v2.3, 4 for id3v2.4) of id3v2 tags", 3, 4, DEFAULT_V2_MAJOR_VERSION, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); GST_TAG_MUX_CLASS (klass)->render_start_tag = GST_DEBUG_FUNCPTR (gst_id3_mux_render_v2_tag); -- cgit v1.2.1