diff options
author | jbrjake <[email protected]> | 2008-02-18 14:33:13 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-02-18 14:33:13 +0000 |
commit | 766b984206903a235a3c7956ce41016202cc6554 (patch) | |
tree | 288f48642d7e61c3cde5277271708161e0b22392 | |
parent | 08f1066cb5595b142a5d206ef862b5ef868359d0 (diff) |
Only store chapter markers separate from their buffers when doing VFR.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1285 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/render.c b/libhb/render.c index d42f14572..347fa59b1 100644 --- a/libhb/render.c +++ b/libhb/render.c @@ -239,7 +239,7 @@ int renderWork( hb_work_object_t * w, hb_buffer_t ** buf_in, } /* If there's a chapter mark remember it in case we delay or drop its frame */ - if( in->new_chap ) + if( in->new_chap && job->vfr ) { pv->chapter_time = in->start; pv->chapter_val = in->new_chap; |