diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-08-16 12:15:06 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-08-16 12:15:06 +0000 |
commit | 22bcaa904c0cb9e620c77378121d691617ada764 (patch) | |
tree | bf6611cfb1cf428d310be776c4dbf50a497ead54 | |
parent | 042d3a461c84d4c4ecb232f5eff40e1ce77ac03c (diff) |
Make ro memory to share.
Original commit message from CVS:
* ext/annodex/gstcmmltag.c:
* gst/rtp/gstrtpvorbispay.c:
Make ro memory to share.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ext/annodex/gstcmmltag.c | 2 | ||||
-rw-r--r-- | gst/rtp/gstrtpvorbispay.c | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -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; |