summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/annodex/gstcmmltag.c2
-rw-r--r--gst/rtp/gstrtpvorbispay.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e5fe5a6e..ca5dbf1f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-08-16 Stefan Kost <ensonic@users.sf.net>
+
+ * ext/annodex/gstcmmltag.c:
+ * gst/rtp/gstrtpvorbispay.c:
+ Make ro memory to share.
+
2007-08-16 Wim Taymans <wim.taymans@gmail.com>
* gst/udp/gstudpsrc.c: (gst_udpsrc_create):
diff --git a/ext/annodex/gstcmmltag.c b/ext/annodex/gstcmmltag.c
index 1a49d791..a224c6da 100644
--- a/ext/annodex/gstcmmltag.c
+++ b/ext/annodex/gstcmmltag.c
@@ -83,7 +83,7 @@ static void gst_cmml_tag_clip_value_from_string_value (const GValue * src,
static void set_object_on_value (GObject * object, GValue * dest);
-static const gchar *default_preamble =
+static const gchar default_preamble[] =
"<?xml version=\"1.0\" standalone=\"yes\"?>";
/* Stream tag */
diff --git a/gst/rtp/gstrtpvorbispay.c b/gst/rtp/gstrtpvorbispay.c
index f85ee94c..f8d19ce4 100644
--- a/gst/rtp/gstrtpvorbispay.c
+++ b/gst/rtp/gstrtpvorbispay.c
@@ -212,7 +212,7 @@ static gchar *
encode_base64 (const guint8 * in, guint size, guint * len)
{
gchar *ret, *d;
- static const gchar *v =
+ static const gchar v[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
*len = ((size + 2) / 3) * 4;