diff options
author | Stefan Kost <ensonic@users.sf.net> | 2010-10-19 13:43:14 +0300 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2010-10-19 15:47:17 +0300 |
commit | 0c22e1b954b98b04673aa5b849a8434b2ce820a1 (patch) | |
tree | a3ae32041fb3378b2808381531187eb558630388 /gst/qtmux | |
parent | 92634ff92a8425e5d24f276a12d681509d27249c (diff) |
various (gst): add missing G_PARAM_STATIC_STRINGS flags
Canonicalize property names as needed.
Diffstat (limited to 'gst/qtmux')
-rw-r--r-- | gst/qtmux/gstqtmoovrecover.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gst/qtmux/gstqtmoovrecover.c b/gst/qtmux/gstqtmoovrecover.c index 03bee5288..889b2cc4b 100644 --- a/gst/qtmux/gstqtmoovrecover.c +++ b/gst/qtmux/gstqtmoovrecover.c @@ -134,21 +134,23 @@ gst_qt_moov_recover_class_init (GstQTMoovRecoverClass * klass) g_param_spec_string ("fixed-output", "Path to write the fixed file", "Path to write the fixed file to (used as output)", - NULL, G_PARAM_READWRITE)); + NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_BROKEN_INPUT, g_param_spec_string ("broken-input", "Path to broken input file", "Path to broken input file. (If qtmux was on faststart mode, this " - "file is the faststart file)", NULL, G_PARAM_READWRITE)); + "file is the faststart file)", NULL, + G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_RECOVERY_INPUT, g_param_spec_string ("recovery-input", "Path to recovery file", - "Path to recovery file (used as input)", NULL, G_PARAM_READWRITE)); + "Path to recovery file (used as input)", NULL, + G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_FAST_START_MODE, g_param_spec_boolean ("faststart-mode", "If the broken input is from faststart mode", "If the broken input is from faststart mode", - FALSE, G_PARAM_READWRITE)); + FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); GST_DEBUG_CATEGORY_INIT (gst_qt_moov_recover_debug, "qtmoovrecover", 0, "QT Moovie Recover"); |