summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-01-13 12:48:53 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-01-13 12:48:53 +0000
commit52590aae8f43348f235a44560273b3d604cedcd2 (patch)
tree03e54cf559ece7f8b602d1df439e90076bac141d /sys
parent088c24429ac21ac43ef15af3541d2e0f6e05e1e2 (diff)
until this reliably works for more than two media types, we're better off making FALSE the default
Original commit message from CVS: until this reliably works for more than two media types, we're better off making FALSE the default
Diffstat (limited to 'sys')
-rw-r--r--sys/oss/gstosssink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/oss/gstosssink.c b/sys/oss/gstosssink.c
index 63950051..cbd177c3 100644
--- a/sys/oss/gstosssink.c
+++ b/sys/oss/gstosssink.c
@@ -176,7 +176,7 @@ gst_osssink_class_init (GstOssSinkClass *klass)
TRUE, G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
g_param_spec_boolean ("sync", "Sync", "If syncing on timestamps should be enabled",
- TRUE, G_PARAM_READWRITE));
+ FALSE, G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAGMENT,
g_param_spec_int ("fragment", "Fragment",
"The fragment as 0xMMMMSSSS (MMMM = total fragments, 2^SSSS = fragment size)",
@@ -220,7 +220,7 @@ gst_osssink_init (GstOssSink *osssink)
osssink->bufsize = 4096;
osssink->resync = FALSE;
- osssink->sync = TRUE;
+ osssink->sync = FALSE;
osssink->sinkpool = NULL;
osssink->provided_clock = GST_CLOCK (gst_oss_clock_new ("ossclock", gst_osssink_get_time, osssink));
osssink->handled = 0;