Browse Source

s/u_char/uint8_t/ accidentally copied from tcvp

Originally committed as revision 5524 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 19 years ago
parent
commit
ea02862a9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/ogg2.c

+ 1
- 1
libavformat/ogg2.c 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);


Loading…
Cancel
Save