summaryrefslogtreecommitdiff
path: root/libavformat/matroskaenc.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-06-04 22:40:58 +0000
committerDavid Conrad <lessen42@gmail.com>2010-06-04 22:40:58 +0000
commit4a6bef1f360c2fa9a030f811c01e76c2ca6b3c2d (patch)
tree91841a2a31c28e2acb7ec49174aa399d365d4208 /libavformat/matroskaenc.c
parent316d6c153caffaa9886968783e8d00aa9aca2640 (diff)
matroskaenc: Make put_ebml_binary take a void pointer
Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskaenc.c')
-rw-r--r--libavformat/matroskaenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 9e765448c9..f183cb276a 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -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);