From fba32b267ef64deb15ea3d49d396e03085804aa8 Mon Sep 17 00:00:00 2001 From: Nathan Caldwell Date: Mon, 2 Feb 2009 20:43:40 -0700 Subject: [PATCH] Increase reserved space for chapters to 4096 bytes. Gives a little more headroom for chapters. --- src/matroska.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.11.4.GIT