mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
Enable sync again, for some reason it was disabled
Original commit message from CVS: Enable sync again, for some reason it was disabled
This commit is contained in:
parent
fe48c46451
commit
157cf016dc
1 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ gst_osssink_class_init (GstOssSinkClass *klass)
|
||||||
TRUE, G_PARAM_READWRITE));
|
TRUE, G_PARAM_READWRITE));
|
||||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
|
||||||
g_param_spec_boolean ("sync", "Sync", "If syncing on timestamps should be enabled",
|
g_param_spec_boolean ("sync", "Sync", "If syncing on timestamps should be enabled",
|
||||||
FALSE, G_PARAM_READWRITE));
|
TRUE, G_PARAM_READWRITE));
|
||||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAGMENT,
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAGMENT,
|
||||||
g_param_spec_int ("fragment", "Fragment",
|
g_param_spec_int ("fragment", "Fragment",
|
||||||
"The fragment as 0xMMMMSSSS (MMMM = total fragments, 2^SSSS = fragment size)",
|
"The fragment as 0xMMMMSSSS (MMMM = total fragments, 2^SSSS = fragment size)",
|
||||||
|
@ -220,7 +220,7 @@ gst_osssink_init (GstOssSink *osssink)
|
||||||
|
|
||||||
osssink->bufsize = 4096;
|
osssink->bufsize = 4096;
|
||||||
osssink->resync = FALSE;
|
osssink->resync = FALSE;
|
||||||
osssink->sync = FALSE;
|
osssink->sync = TRUE;
|
||||||
osssink->sinkpool = NULL;
|
osssink->sinkpool = NULL;
|
||||||
osssink->provided_clock = GST_CLOCK (gst_oss_clock_new ("ossclock", gst_osssink_get_time, osssink));
|
osssink->provided_clock = GST_CLOCK (gst_oss_clock_new ("ossclock", gst_osssink_get_time, osssink));
|
||||||
osssink->handled = 0;
|
osssink->handled = 0;
|
||||||
|
|
Loading…
Reference in a new issue