summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-12-29 16:03:29 +0000
committerjbrjake <[email protected]>2007-12-29 16:03:29 +0000
commit68cb0b2457e5a474040b52fab2f3ec873d1b2399 (patch)
tree733e941e4bb4b34828c1ec7e38ae4b137e1f6678
parent6ed3b83428ae81b97b4fbd40d8ffddbf51164823 (diff)
Fixes a typo in MP4 chapter marker durations. Thanks, van!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1154 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--libhb/muxmp4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index 157ce2351..0e7cf123c 100644
--- a/libhb/muxmp4.c
+++ b/libhb/muxmp4.c
@@ -399,7 +399,7 @@ static int MP4Mux( hb_mux_object_t * m, hb_mux_data_t * mux_data,
}
free(sample);
m->current_chapter++;
- m->chapter_duration = duration;
+ m->chapter_duration += duration;
}
/* Video */