[FFmpeg-cvslog] r23475 - trunk/libavformat/matroskaenc.c

conrad subversion
Sat Jun 5 00:40:59 CEST 2010


Author: conrad
Date: Sat Jun  5 00:40:58 2010
New Revision: 23475

Log:
matroskaenc: Make put_ebml_binary take a void pointer

Modified:
   trunk/libavformat/matroskaenc.c

Modified: trunk/libavformat/matroskaenc.c
==============================================================================
--- trunk/libavformat/matroskaenc.c	Sat Jun  5 00:40:54 2010	(r23474)
+++ trunk/libavformat/matroskaenc.c	Sat Jun  5 00:40:58 2010	(r23475)
@@ -182,7 +182,7 @@ static void put_ebml_float(ByteIOContext
 }
 
 static void put_ebml_binary(ByteIOContext *pb, unsigned int elementid,
-                            const uint8_t *buf, int size)
+                            const void *buf, int size)
 {
     put_ebml_id(pb, elementid);
     put_ebml_num(pb, size, 0);



More information about the ffmpeg-cvslog mailing list