changeset 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 107f90e1551b
files ogg2.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);