From: Nathan Caldwell Date: Tue, 3 Feb 2009 03:43:40 +0000 (-0700) Subject: Increase reserved space for chapters to 4096 bytes. X-Git-Tag: 0.6.4~2 X-Git-Url: https://repo.or.cz/w/libmkv.git/commitdiff_plain/fba32b267ef64deb15ea3d49d396e03085804aa8 Increase reserved space for chapters to 4096 bytes. Gives a little more headroom for chapters. --- diff --git a/src/matroska.c b/src/matroska.c index 3b6c5ce..54cb84f 100644 --- a/src/matroska.c +++ b/src/matroska.c @@ -29,8 +29,8 @@ #define RESERVED_SEEKHEAD 0x100 /* 256 bytes should be enough room for our Seek entries. */ -#define RESERVED_CHAPTERS 0x800 -/* 2048 bytes, hopefully enough for Chapters. */ +#define RESERVED_CHAPTERS 0x1000 +/* 4096 bytes, hopefully enough for Chapters. */ int mk_seekFile(mk_Writer *w, uint64_t pos) {