mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
matroskamux: don't bitwise OR the same flag twice
https://bugzilla.gnome.org//show_bug.cgi?id=736543
This commit is contained in:
parent
4c08f2694d
commit
4242495ea7
1 changed files with 1 additions and 2 deletions
|
@ -327,8 +327,7 @@ gst_matroska_mux_class_init (GstMatroskaMuxClass * klass)
|
||||||
g_param_spec_boolean ("streamable", "Determines whether output should "
|
g_param_spec_boolean ("streamable", "Determines whether output should "
|
||||||
"be streamable", "If set to true, the output should be as if it is "
|
"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.",
|
"to be streamed and hence no indexes written or duration written.",
|
||||||
DEFAULT_STREAMABLE,
|
DEFAULT_STREAMABLE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_STATIC_STRINGS));
|
|
||||||
|
|
||||||
gstelement_class->change_state =
|
gstelement_class->change_state =
|
||||||
GST_DEBUG_FUNCPTR (gst_matroska_mux_change_state);
|
GST_DEBUG_FUNCPTR (gst_matroska_mux_change_state);
|
||||||
|
|
Loading…
Reference in a new issue