diff options
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libhb/work.c b/libhb/work.c index e867a2bfe..a3507027e 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -840,8 +840,9 @@ static void work_loop( void * _w ) // 'buf_in' to NULL so that this code won't generate spurious duplicates.) if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start) { - hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start); - buf_out->new_chap = 1; + // restore log below to debug chapter mark propagation problems + //hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start); + buf_out->new_chap = buf_in->new_chap; } if( buf_in ) |