diff options
author | jstebbins <[email protected]> | 2009-06-13 18:13:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-13 18:13:53 +0000 |
commit | 287e7975364684cf7d3fdbb4c10fbdb94e03b751 (patch) | |
tree | 005015145baec721417e668e4b91c0401150d125 /libhb/dvdnav.c | |
parent | 4779df6821d2be09a9b02f28f6f4adedbc82560f (diff) |
dvdnav: oops. initialize d->chapter to 0 instead of first chapter
otherwise, we don't get the initial chapter marker event
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2528 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/dvdnav.c')
-rw-r--r-- | libhb/dvdnav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c index 2a161d4d0..063498c32 100644 --- a/libhb/dvdnav.c +++ b/libhb/dvdnav.c @@ -842,7 +842,7 @@ static int hb_dvdnav_start( hb_dvd_t * e, hb_title_t *title, int c ) } d->title = t; d->stopped = 0; - d->chapter = c; + d->chapter = 0; return 1; } |