Mercurial > libavformat.hg
diff ogg2.c @ 1134:19ceddeafe2e libavformat
s/u_char/uint8_t/ accidentally copied from tcvp
| author | mru |
|---|---|
| date | Sun, 25 Jun 2006 12:46:01 +0000 |
| parents | 554cc16341da |
| children | d89d7ef290da |
line wrap: on
line diff
--- a/ogg2.c Sun Jun 25 12:23:54 2006 +0000 +++ b/ogg2.c Sun Jun 25 12:46:01 2006 +0000 @@ -210,7 +210,7 @@ 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);
