summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpvorbispay.c
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-08-16 12:15:06 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-08-16 12:15:06 +0000
commit22bcaa904c0cb9e620c77378121d691617ada764 (patch)
treebf6611cfb1cf428d310be776c4dbf50a497ead54 /gst/rtp/gstrtpvorbispay.c
parent042d3a461c84d4c4ecb232f5eff40e1ce77ac03c (diff)
Make ro memory to share.
Original commit message from CVS: * ext/annodex/gstcmmltag.c: * gst/rtp/gstrtpvorbispay.c: Make ro memory to share.
Diffstat (limited to 'gst/rtp/gstrtpvorbispay.c')
-rw-r--r--gst/rtp/gstrtpvorbispay.c2
1 files changed, 1 insertions, 1 deletions
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;