# HG changeset patch # User bcoudurier # Date 1201879052 0 # Node ID 8575ec7c128aea4b7a1e94208227b72b8454832d # Parent c222d17b55c7292df97cff2a0d28b83a49fac3eb const diff -r c222d17b55c7 -r 8575ec7c128a oggparsevorbis.c --- a/oggparsevorbis.c Fri Feb 01 14:58:35 2008 +0000 +++ b/oggparsevorbis.c Fri Feb 01 15:17:32 2008 +0000 @@ -33,8 +33,8 @@ extern int vorbis_comment(AVFormatContext * as, uint8_t *buf, int size) { - uint8_t *p = buf; - uint8_t *end = buf + size; + const uint8_t *p = buf; + const uint8_t *end = buf + size; unsigned s, n, j; if (size < 8) /* must have vendor_length and user_comment_list_length */ @@ -50,7 +50,7 @@ n = bytestream_get_le32(&p); while (p < end && n > 0) { - char *t, *v; + const char *t, *v; int tl, vl; s = bytestream_get_le32(&p); @@ -176,7 +176,7 @@ priv->packet[os->seq] = av_mallocz(os->psize); memcpy(priv->packet[os->seq], os->buf + os->pstart, os->psize); if (os->buf[os->pstart] == 1) { - uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */ + const uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */ unsigned blocksize, bs0, bs1; if (os->psize != 30)