diff options
author | David Conrad <lessen42@gmail.com> | 2010-06-04 22:40:58 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-06-04 22:40:58 +0000 |
commit | 4a6bef1f360c2fa9a030f811c01e76c2ca6b3c2d (patch) | |
tree | 91841a2a31c28e2acb7ec49174aa399d365d4208 /libavformat | |
parent | 316d6c153caffaa9886968783e8d00aa9aca2640 (diff) | |
download | ffmpeg-4a6bef1f360c2fa9a030f811c01e76c2ca6b3c2d.tar.gz |
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')
-rw-r--r-- | libavformat/matroskaenc.c | 2 |
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); |