[Ffmpeg-cvslog] r5524 - trunk/libavformat/ogg2.c

mru subversion
Sun Jun 25 14:46:02 CEST 2006


Author: mru
Date: Sun Jun 25 14:46:01 2006
New Revision: 5524

Modified:
   trunk/libavformat/ogg2.c

Log:
s/u_char/uint8_t/ accidentally copied from tcvp


Modified: trunk/libavformat/ogg2.c
==============================================================================
--- trunk/libavformat/ogg2.c	(original)
+++ trunk/libavformat/ogg2.c	Sun Jun 25 14:46:01 2006
@@ -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);




More information about the ffmpeg-cvslog mailing list