Browse Source

matroskaenc: Make put_ebml_binary take a void pointer

Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
David Conrad 15 years ago
parent
commit
4a6bef1f36
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroskaenc.c

+ 1
- 1
libavformat/matroskaenc.c View File

@@ -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…
Cancel
Save