1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-29 00:10:04 +02:00

s/u_char/uint8_t/ accidentally copied from tcvp

Originally committed as revision 5524 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2006-06-25 12:46:01 +00:00
parent 40c5e1fa2e
commit ea02862a9b

View File

@ -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);