mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-03 16:30:37 +00: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:
parent
40c5e1fa2e
commit
ea02862a9b
@ -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…
Reference in New Issue
Block a user