Commit ea02862a authored by Måns Rullgård's avatar Måns Rullgård

s/u_char/uint8_t/ accidentally copied from tcvp

Originally committed as revision 5524 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 40c5e1fa
......@@ -210,7 +210,7 @@ static int
ogg_new_buf(ogg_t *ogg, int idx)
{
ogg_stream_t *os = ogg->streams + idx;
u_char *nb = av_malloc(os->bufsize);
uint8_t *nb = av_malloc(os->bufsize);
int size = os->bufpos - os->pstart;
if(os->buf){
memcpy(nb, os->buf + os->pstart, size);
......
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