From 6a1e2cc6e5c0dab93e68881f82f1f626e7eca694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 23 Jul 2011 08:00:09 +0100 Subject: [PATCH 1/4] controller: fix build failure due to compiler warning Presumably with newer GLib version. https://bugzilla.gnome.org/show_bug.cgi?id=655155 --- libs/gst/controller/gstcontrollerprivate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/controller/gstcontrollerprivate.h b/libs/gst/controller/gstcontrollerprivate.h index 6b5dcd9906..2dc57a5573 100644 --- a/libs/gst/controller/gstcontrollerprivate.h +++ b/libs/gst/controller/gstcontrollerprivate.h @@ -38,7 +38,7 @@ G_BEGIN_DECLS typedef struct _GstControlledProperty { GParamSpec *pspec; /* GParamSpec for this property */ - gchar *name; /* name of the property */ + const gchar *name; /* name of the property */ GstControlSource *csource; /* GstControlSource for this property */ gboolean disabled; GValue last_value; From 3ebec93515331c16f6578ab31d98121f8b658776 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Sun, 24 Jul 2011 11:24:44 +0200 Subject: [PATCH 2/4] pwd: discontinous event -> newsegment event Fix a 0.8 leftover as mentioned on bug #621121. --- docs/pwg/advanced-clock.xml | 10 +++++----- docs/pwg/building-chainfn.xml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/pwg/advanced-clock.xml b/docs/pwg/advanced-clock.xml index 85054400a9..4f8ae39b44 100644 --- a/docs/pwg/advanced-clock.xml +++ b/docs/pwg/advanced-clock.xml @@ -59,7 +59,7 @@ element will be regarded as the source element for this discussion. - First, the source element sends a discontinuous event. This event carries information + First, the source element sends a newsegment event. This event carries information about the current relative time of the next sample. This relative time is arbitrary, but it must be consistent with the timestamp that will be placed in buffers. It is expected to be the relative time to the start @@ -81,7 +81,7 @@ If the stream is seeked, the next samples sent will have a timestamp that is not adjusted with the element time. Therefore, the source element must - send a discontinuous event. + send a newsegment event.