Commit 73965d1b authored by Baptiste Coudurier's avatar Baptiste Coudurier

const

Originally committed as revision 11763 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 47a0513b
...@@ -36,7 +36,7 @@ ogm_header(AVFormatContext *s, int idx) ...@@ -36,7 +36,7 @@ ogm_header(AVFormatContext *s, int idx)
ogg_t *ogg = s->priv_data; ogg_t *ogg = s->priv_data;
ogg_stream_t *os = ogg->streams + idx; ogg_stream_t *os = ogg->streams + idx;
AVStream *st = s->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 time_unit;
uint64_t spu; uint64_t spu;
uint32_t default_len; uint32_t default_len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment