Mercurial > libavformat.hg
changeset 6087:8d2040032231 libavformat
matroskaenc: Make put_ebml_binary take a void pointer
author | conrad |
---|---|
date | Fri, 04 Jun 2010 22:40:58 +0000 |
parents | ad41f9ce1fe9 |
children | 1299f202ffe9 |
files | matroskaenc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/matroskaenc.c Fri Jun 04 22:40:54 2010 +0000 +++ b/matroskaenc.c Fri Jun 04 22:40:58 2010 +0000 @@ -182,7 +182,7 @@ } 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);