mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
matroskaenc: Make put_ebml_binary take a void pointer
Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
316d6c153c
commit
4a6bef1f36
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user