From 4242495ea74b0eccda8d5f8f32e69b1845624ccf Mon Sep 17 00:00:00 2001 From: Anuj Jaiswal Date: Fri, 12 Sep 2014 13:36:18 +0530 Subject: [PATCH] matroskamux: don't bitwise OR the same flag twice https://bugzilla.gnome.org//show_bug.cgi?id=736543 --- gst/matroska/matroska-mux.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index 8c76cd0359..664cd6273c 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -327,8 +327,7 @@ gst_matroska_mux_class_init (GstMatroskaMuxClass * klass) g_param_spec_boolean ("streamable", "Determines whether output should " "be streamable", "If set to true, the output should be as if it is " "to be streamed and hence no indexes written or duration written.", - DEFAULT_STREAMABLE, - G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_STATIC_STRINGS)); + DEFAULT_STREAMABLE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_matroska_mux_change_state);