forked from FFmpeg/FFmpeg
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue