OSDN Git Service

matroskaenc: Make put_ebml_binary take a void pointer
authorDavid Conrad <lessen42@gmail.com>
Fri, 4 Jun 2010 22:40:58 +0000 (22:40 +0000)
committerDavid Conrad <lessen42@gmail.com>
Fri, 4 Jun 2010 22:40:58 +0000 (22:40 +0000)
Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/matroskaenc.c

index 9e76544..f183cb2 100644 (file)
@@ -182,7 +182,7 @@ static void put_ebml_float(ByteIOContext *pb, unsigned int elementid, double val
 }
 
 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);