# HG changeset patch # User conrad # Date 1188951765 0 # Node ID 326e6fcf9f8568c3b58206dbdc7d2b1a41efe606 # Parent 54f89ce335541bff4385c1edccca233615afeeb8 Const correctness diff -r 54f89ce33554 -r 326e6fcf9f85 matroskaenc.c --- a/matroskaenc.c Wed Sep 05 00:22:43 2007 +0000 +++ b/matroskaenc.c Wed Sep 05 00:22:45 2007 +0000 @@ -68,14 +68,14 @@ //static void put_ebml_sint(ByteIOContext *pb, unsigned int elementid, int64_t val) static void put_ebml_binary(ByteIOContext *pb, unsigned int elementid, - uint8_t *buf, int size) + const uint8_t *buf, int size) { put_ebml_id(pb, elementid); put_ebml_size(pb, size, 0); put_buffer(pb, buf, size); } -static void put_ebml_string(ByteIOContext *pb, unsigned int elementid, char *str) +static void put_ebml_string(ByteIOContext *pb, unsigned int elementid, const char *str) { put_ebml_binary(pb, elementid, str, strlen(str)); }