diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-01 15:17:43 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-01 15:17:43 +0000 |
commit | 73965d1b96dc66bb25e82f12025fe49ae7ff33a2 (patch) | |
tree | bb8d50a36a256e710ab7247ddba524602e749dc6 | |
parent | 47a0513b0ce82b0ccf01067f6e8a4ec76357d815 (diff) | |
download | ffmpeg-73965d1b96dc66bb25e82f12025fe49ae7ff33a2.tar.gz |
const
Originally committed as revision 11763 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/oggparseogm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c index 597a3c6ac0..70e53948fb 100644 --- a/libavformat/oggparseogm.c +++ b/libavformat/oggparseogm.c @@ -36,7 +36,7 @@ ogm_header(AVFormatContext *s, int idx) ogg_t *ogg = s->priv_data; ogg_stream_t *os = ogg->streams + idx; AVStream *st = s->streams[idx]; - uint8_t *p = os->buf + os->pstart; + const uint8_t *p = os->buf + os->pstart; uint64_t time_unit; uint64_t spu; uint32_t default_len; |