Commit 4a6bef1f authored by David Conrad's avatar David Conrad

matroskaenc: Make put_ebml_binary take a void pointer

Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 316d6c15
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment