summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tpm@src.gnome.org>2006-12-11 20:01:16 +0000
committerTim-Philipp Müller <tpm@src.gnome.org>2006-12-11 20:01:16 +0000
commit7a7a7654eb3e286fd34e105b4b106f06142b0ef1 (patch)
tree8649573576c8d9315794c2120516b645a24c201a
parent618a9b99fa11e9f2c2abc019c39a74638b567de1 (diff)
downloadtotem-7a7a7654eb3e286fd34e105b4b106f06142b0ef1.tar.gz
Fix copy'n'pasto and update the buffer-size when the buffer-size key is
* src/backend/bacon-video-widget-gst-0.10.c: (cb_gconf): Fix copy'n'pasto and update the buffer-size when the buffer-size key is changed, not the buffering threshold. (Closes: #382350)
-rw-r--r--ChangeLog6
-rw-r--r--src/backend/bacon-video-widget-gst-0.10.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d80cbf4be..bd0e17d36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2006-12-11 Tim-Philipp Müller <tim at centricular dot net>
+ * src/backend/bacon-video-widget-gst-0.10.c: (cb_gconf):
+ Fix copy'n'pasto and update the buffer-size when the buffer-size key
+ is changed, not the buffering threshold. (Closes: #382350)
+
+2006-12-11 Tim-Philipp Müller <tim at centricular dot net>
+
* src/backend/bacon-video-widget-gst-0.10.c:
(bacon_video_widget_new):
Fix nonsensical code; don't overwrite speaker setup preferences
diff --git a/src/backend/bacon-video-widget-gst-0.10.c b/src/backend/bacon-video-widget-gst-0.10.c
index 133063387..f88827028 100644
--- a/src/backend/bacon-video-widget-gst-0.10.c
+++ b/src/backend/bacon-video-widget-gst-0.10.c
@@ -4018,7 +4018,7 @@ cb_gconf (GConfClient * client,
g_object_set (bvw->priv->play, "queue-threshold",
(guint64) (GST_SECOND * gconf_value_get_float (entry->value)), NULL);
} else if (!strcmp (entry->key, "/apps/totem/buffer-size")) {
- g_object_set (bvw->priv->play, "queue-threshold",
+ g_object_set (bvw->priv->play, "queue-size",
(guint64) (GST_SECOND * gconf_value_get_float (entry->value)), NULL);
}
}